diff --git a/OFL.txt b/OFL.txt index 81951a00..f4c87796 100644 --- a/OFL.txt +++ b/OFL.txt @@ -1,8 +1,8 @@ -Copyright 2023 Intel Corp. with Reserved Font Name 'Intel One Mono' +Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono), with Reserved Font Name 'Intel' 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 +This license is copied below, and is also available with a FAQ at: +https://scripts.sil.org/OFL ----------------------------------------------------------- diff --git a/README.md b/README.md index f758383b..2bfa8c27 100644 --- a/README.md +++ b/README.md @@ -29,43 +29,49 @@ We recommend using these fonts at 7 points and larger in print, 9 pixels and lar ### Available OpenType Features Outside of the default characters, there are a few extra features that are accessible in some applications, as well as via CSS: -- **Raised Colon:** there is an option for a raised colon, either applied contextually between numbers or activated generally. The contextual option is available via ss11 (Stylistic Set #11), or use ss12 (Stylistic Set #12) or salt (Stylistic Alternates) for the global switch. Also, the colon will automatically be raised in operators, to align with math symbols. -- **Language Support:** ccmp and locl features ensure correct display across a wide range of languages. These are usually activated by default. We recommend setting the language tag/setting in your software to the desired language for best results. -- **Superior/superscript and inferior/subscript figures** are included via their Unicode codepoints, or you can produce them from the default figures via the sups (Superscript), subs (Subscript), and si (Scientific Inferior) features. -- **Fraction numerals** are similarly available via the numr (Numerator) and dnom (Denominator) features. A set of premade fractions is also available in the fonts. +- **Programming Ligatures:** New in release 1.4, by popular demand. To use programming ligatures, activate the `ss01` feature (Stylistic Set #1). Additional refinements are available via `ss02` and `ss03`: Stylistic Set #2 switches the <= and >= combinations to arrow forms (math contractions being the default otherwise), and Stylistic Set #3 additionally activates a “www” ligature. +- **Raised Colon:** The colon is automatically raised in operators, to align with math symbols. For non-programming contexts, the raised colon can be applied contextually between numbers or activated generally. The contextual option is available via `ss11` (Stylistic Set #11); for the global switch use `ss12` (Stylistic Set #12) or `salt` (Stylistic Alternates). +- **Language Support:** `ccmp` and `locl` features ensure correct display across a wide range of languages. These are usually active by default. We recommend setting the language tag/setting in your software to the desired language for best results. +- **Superior/superscript and inferior/subscript figures** are included via their Unicode codepoints, or you can produce them from the default figures via the `sups` (Superscript) and `subs`/`sinf` (Subscript) features. +- **Fraction numerals** are similarly available via the `numr` (Numerator) and `dnom` (Denominator) features. A set of premade fractions is also available in the fonts. + +### Activating Programming Ligatures in Code Editors +Programming ligatures are not active by default. To use them, activate the stylistic sets of your preference in your code editor. For example: +- VSCode - In Settings, add `"editor.fontLigatures": "'ss01'"` +- Sublime Text - In Settings, add `"font_options": ["ss01"]` ## Viewing and Editing Sources ### UFO Source Files: Instances -You will find editable sources in the sources directory. The instances subfolder contains separate source files for each style of the typeface. Sources are provided in .ufo files, which contain complete artwork, OpenType features, as well as meta information like naming and vertical alignments for each style of the typeface. +You will find editable sources in the `sources` directory. The `instances` subfolder contains separate source files for each style of the typeface. Sources are provided in .ufo files, which contain complete artwork, links to OpenType features provided in separate .fea files, as well as meta information like naming and vertical alignments for each style of the typeface. These are not installable fonts, but rather the source files that produce them: UFO (Unified Font Object) is an open, human-readable font source file format; you can find the [file spec here](https://github.com/unified-font-object/ufo-spec). -These sources were created using [RoboFont](https://robofont.com/). Many other font editors will also be able to open .ufo files; we recommend using RoboFont version 3.4 or up for the closest approximation of the original design and development environment. +These sources were created using [RoboFont](https://robofont.com/). Many other font editors will also be able to open .ufo files; we recommend using RoboFont version 4.4. ### Outline Formats -For instances, you will find postscript and truetype subfolders; these contain separate source files for the .otf format and the .ttf/.woff/.woff2 files respectively. Since the format for the outline drawings differs between these sets of formats, for best results we recommend using the postscript sources to create .otf fonts, and the TrueType sources to create .ttf, .woff, or .woff2 fonts. +For instances, you will find `postscript` and `truetype` subfolders; these contain separate source files for the .otf format and the .ttf/.woff/.woff2 files respectively. Since the format for the outline drawings differs between these sets of formats, for best results we recommend using the postscript sources to create .otf fonts, and the TrueType sources to create .ttf, .woff, or .woff2 fonts. ### Generating Fonts After making your desired edits, you can generate installable fonts directly from the font editor using its “Generate Font” functionality. If you use RoboFont, any install options should default to the ideal settings, but here they are for reference: - For .otf builds, we recommend activating “Decompose” as well as “Autohint” options. -- For .ttf, .woff and .woff2 builds, we recommend activating the “Autohint” option only for more compact files (see note on hinting below). +- For .ttf, .woff and .woff2 builds, we recommend activating the “Autohint” option only (see note on hinting below). - In any case, we recommend using the “Release Mode” setting for best results. ### UFO Source Files: Masters If you would like to apply edits across multiple weights, a more advanced yet potentially efficient way is to edit the masters. These are special sources that describe the extreme points in the design space — the lightest and heaviest weights for both roman and italic designs. -After editing masters, you will need to rerun interpolation to generate individual weights and styles within that design space. This requires the .designspace files enclosed with the masters; the designspace format is an open, XML-based format that describes interpolation spaces ([format specification](https://github.com/fonttools/fonttools/tree/main/Doc/source/designspaceLib) for reference). For a RoboFont-based workflow we recommend [Skateboard](https://extensionstore.robofont.com/extensions/skateboard/) for interpolation; you can also use the free [DesignSpaceEditor](https://github.com/LettError/designSpaceRoboFontExtension) extension to view and edit these files. +After editing masters, you will need to rerun interpolation to generate individual weights and styles within that design space. This requires the .designspace files enclosed with the masters. The designspace format is an open, XML-based format that describes interpolation spaces ([format specification](https://github.com/fonttools/fonttools/tree/main/Doc/source/designspaceLib) for reference). For a RoboFont-based workflow we recommend [Skateboard](https://extensionstore.robofont.com/extensions/skateboard/) for interpolation; you can also use the free [DesignSpaceEditor](https://github.com/LettError/designSpaceRoboFontExtension) extension to view and edit these files. Note that masters are only available in postscript format, so they will be best for creating .otf fonts. If you need to make TrueType based builds from the masters, we recommend [QuadraticConverter](https://github.com/BlackFoundry/QuadraticConverter) for best quality conversion of the curves before generating .ttf, .woff, or .woff2 files; mind that the results will not match the provided instances precisely. -NB: The prepared instances contain some additional data that cannot be stored in the masters and maintained through interpolation. For best results, compare new interpolations to the existing instance sources and update them accordingly, specifically the information accessible through the Font Info panels. +NB: The prepared instances contain some additional data that cannot be maintained through interpolation. For best results, compare new interpolations to the existing instance sources and update them accordingly, specifically the information accessible through the Font Info panels. -### Other Files: Hinting Source +### Hinting Source For TrueType-based formats (.ttf, .woff, .woff2 files), the official releases are manually optimized for screen rendering. These “hinting” sources are stored separately from the .ufo files, which do not contain any TrueType hinting information. When rebuilding TrueType-based formats, we recommend using the “autohint” option to achieve reasonable, though not identical screen rendering. -If you would like to access and edit manual hinting instructions, you will find these in the separate set of source files under other files/truetype hinting source. These special TTF files will be viewable and editable using [Microsoft VTT](https://learn.microsoft.com/en-us/typography/tools/vtt/). +If you would like to access and edit manual hinting instructions, you will find these in the separate set of source files under `hinting/truetype hinting source`. These special TTF files will be viewable and editable using [Microsoft VTT](https://learn.microsoft.com/en-us/typography/tools/vtt/). ## Suggesting Edits diff --git a/fonts/Intel One Mono - Release Notes.txt b/fonts/Intel One Mono - Release Notes.txt index eb7b388e..7b1c4185 100644 --- a/fonts/Intel One Mono - Release Notes.txt +++ b/fonts/Intel One Mono - Release Notes.txt @@ -1,24 +1,21 @@ Release Notes / Intel One Mono -2023-08-18 +2024-07-26 -Family name +Font family Intel One Mono -Version number - 1.3 Updated font naming (“Intel One Mono”) - will require relinking - Improved linking of Regular and Bold weights - Improved alignment between hyphen, colon, and operators - Updated art for backtick/grave - Edited mark/ccmp features for language support - Edits to meta info and licensing text +Version + 1.4 Added optional programming ligatures + Added box-drawing glyphs + Small bugfixes and improvements Supported scripts Latin (full glyph complement supporting over 200 languages) Number of glyphs - 684 + 1043 Weights/Styles Light @@ -34,7 +31,7 @@ Usage Text Use at 7 pt and up in print, 9 px and up on screen. -File formats +Font file formats OTF (Desktop) TTF (Desktop/App) WOFF (Web) @@ -48,14 +45,18 @@ Embedding settings No embedding restrictions Available OpenType features - ss11 Raised Colon (Figures Only) - ss12 Raised Colon (Global) - salt Stylistic Alternates + ss01 Programming ligatures + ss02 Arrow forms for less/equal and greater/equal combinations + ss03 www ligature + ss11 Raised colon (contextual with figures) + ss12 Raised colon (global) + salt Raised colon (global) locl Localizations - ccmp Glyph Composition/Decomposition Rules + ccmp Glyph composition/decomposition rules mark Mark Attachment numr Numerator dnom Denominator sups Superscript subs Subscript - sinf Scientific Inferior + sinf Scientific inferior + aalt Access all alternates diff --git a/fonts/otf.zip b/fonts/otf.zip index f5619785..291ce601 100644 Binary files a/fonts/otf.zip and b/fonts/otf.zip differ diff --git a/fonts/otf/IntelOneMono-Bold.otf b/fonts/otf/IntelOneMono-Bold.otf index 28255b24..4b18a193 100644 Binary files a/fonts/otf/IntelOneMono-Bold.otf and b/fonts/otf/IntelOneMono-Bold.otf differ diff --git a/fonts/otf/IntelOneMono-BoldItalic.otf b/fonts/otf/IntelOneMono-BoldItalic.otf index 2a6b3faf..2f0358cc 100644 Binary files a/fonts/otf/IntelOneMono-BoldItalic.otf and b/fonts/otf/IntelOneMono-BoldItalic.otf differ diff --git a/fonts/otf/IntelOneMono-Italic.otf b/fonts/otf/IntelOneMono-Italic.otf index 3cfd0a78..ae80f5ba 100644 Binary files a/fonts/otf/IntelOneMono-Italic.otf and b/fonts/otf/IntelOneMono-Italic.otf differ diff --git a/fonts/otf/IntelOneMono-Light.otf b/fonts/otf/IntelOneMono-Light.otf index 1082f5c6..983db111 100644 Binary files a/fonts/otf/IntelOneMono-Light.otf and b/fonts/otf/IntelOneMono-Light.otf differ diff --git a/fonts/otf/IntelOneMono-LightItalic.otf b/fonts/otf/IntelOneMono-LightItalic.otf index 3e90d11a..b97fc7fa 100644 Binary files a/fonts/otf/IntelOneMono-LightItalic.otf and b/fonts/otf/IntelOneMono-LightItalic.otf differ diff --git a/fonts/otf/IntelOneMono-Medium.otf b/fonts/otf/IntelOneMono-Medium.otf index 3d2acc99..ba8a58f9 100644 Binary files a/fonts/otf/IntelOneMono-Medium.otf and b/fonts/otf/IntelOneMono-Medium.otf differ diff --git a/fonts/otf/IntelOneMono-MediumItalic.otf b/fonts/otf/IntelOneMono-MediumItalic.otf index 860b98f6..7bf2c76d 100644 Binary files a/fonts/otf/IntelOneMono-MediumItalic.otf and b/fonts/otf/IntelOneMono-MediumItalic.otf differ diff --git a/fonts/otf/IntelOneMono-Regular.otf b/fonts/otf/IntelOneMono-Regular.otf index 9bac3f7a..c06d7aef 100644 Binary files a/fonts/otf/IntelOneMono-Regular.otf and b/fonts/otf/IntelOneMono-Regular.otf differ diff --git a/fonts/otf/OFL.txt b/fonts/otf/OFL.txt index 81951a00..f4c87796 100644 --- a/fonts/otf/OFL.txt +++ b/fonts/otf/OFL.txt @@ -1,8 +1,8 @@ -Copyright 2023 Intel Corp. with Reserved Font Name 'Intel One Mono' +Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono), with Reserved Font Name 'Intel' 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 +This license is copied below, and is also available with a FAQ at: +https://scripts.sil.org/OFL ----------------------------------------------------------- diff --git a/fonts/ttf.zip b/fonts/ttf.zip index 89e586b3..f26691fe 100644 Binary files a/fonts/ttf.zip and b/fonts/ttf.zip differ diff --git a/fonts/ttf/IntelOneMono-Bold.ttf b/fonts/ttf/IntelOneMono-Bold.ttf index b0b38b4c..34c90238 100644 Binary files a/fonts/ttf/IntelOneMono-Bold.ttf and b/fonts/ttf/IntelOneMono-Bold.ttf differ diff --git a/fonts/ttf/IntelOneMono-BoldItalic.ttf b/fonts/ttf/IntelOneMono-BoldItalic.ttf index b7e230c9..67674801 100644 Binary files a/fonts/ttf/IntelOneMono-BoldItalic.ttf and b/fonts/ttf/IntelOneMono-BoldItalic.ttf differ diff --git a/fonts/ttf/IntelOneMono-Italic.ttf b/fonts/ttf/IntelOneMono-Italic.ttf index 5bf56f47..55c1f898 100644 Binary files a/fonts/ttf/IntelOneMono-Italic.ttf and b/fonts/ttf/IntelOneMono-Italic.ttf differ diff --git a/fonts/ttf/IntelOneMono-Light.ttf b/fonts/ttf/IntelOneMono-Light.ttf index 7c8319fa..925be310 100644 Binary files a/fonts/ttf/IntelOneMono-Light.ttf and b/fonts/ttf/IntelOneMono-Light.ttf differ diff --git a/fonts/ttf/IntelOneMono-LightItalic.ttf b/fonts/ttf/IntelOneMono-LightItalic.ttf index 8b93c29d..9c5b5b74 100644 Binary files a/fonts/ttf/IntelOneMono-LightItalic.ttf and b/fonts/ttf/IntelOneMono-LightItalic.ttf differ diff --git a/fonts/ttf/IntelOneMono-Medium.ttf b/fonts/ttf/IntelOneMono-Medium.ttf index 4edc9f76..7899377d 100644 Binary files a/fonts/ttf/IntelOneMono-Medium.ttf and b/fonts/ttf/IntelOneMono-Medium.ttf differ diff --git a/fonts/ttf/IntelOneMono-MediumItalic.ttf b/fonts/ttf/IntelOneMono-MediumItalic.ttf index f1a7d189..e67968bb 100644 Binary files a/fonts/ttf/IntelOneMono-MediumItalic.ttf and b/fonts/ttf/IntelOneMono-MediumItalic.ttf differ diff --git a/fonts/ttf/IntelOneMono-Regular.ttf b/fonts/ttf/IntelOneMono-Regular.ttf index 386b9acc..236c962d 100644 Binary files a/fonts/ttf/IntelOneMono-Regular.ttf and b/fonts/ttf/IntelOneMono-Regular.ttf differ diff --git a/fonts/ttf/OFL.txt b/fonts/ttf/OFL.txt index 81951a00..f4c87796 100644 --- a/fonts/ttf/OFL.txt +++ b/fonts/ttf/OFL.txt @@ -1,8 +1,8 @@ -Copyright 2023 Intel Corp. with Reserved Font Name 'Intel One Mono' +Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono), with Reserved Font Name 'Intel' 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 +This license is copied below, and is also available with a FAQ at: +https://scripts.sil.org/OFL ----------------------------------------------------------- diff --git a/fonts/woff.zip b/fonts/woff.zip index 3a394770..eee9c15b 100644 Binary files a/fonts/woff.zip and b/fonts/woff.zip differ diff --git a/fonts/woff/IntelOneMono-Bold.woff b/fonts/woff/IntelOneMono-Bold.woff index 0af54b8a..fd277386 100644 Binary files a/fonts/woff/IntelOneMono-Bold.woff and b/fonts/woff/IntelOneMono-Bold.woff differ diff --git a/fonts/woff/IntelOneMono-BoldItalic.woff b/fonts/woff/IntelOneMono-BoldItalic.woff index 43938662..c7cd12b3 100644 Binary files a/fonts/woff/IntelOneMono-BoldItalic.woff and b/fonts/woff/IntelOneMono-BoldItalic.woff differ diff --git a/fonts/woff/IntelOneMono-Italic.woff b/fonts/woff/IntelOneMono-Italic.woff index a6d7da8b..30ac8eec 100644 Binary files a/fonts/woff/IntelOneMono-Italic.woff and b/fonts/woff/IntelOneMono-Italic.woff differ diff --git a/fonts/woff/IntelOneMono-Light.woff b/fonts/woff/IntelOneMono-Light.woff index 14d96228..a673c4b2 100644 Binary files a/fonts/woff/IntelOneMono-Light.woff and b/fonts/woff/IntelOneMono-Light.woff differ diff --git a/fonts/woff/IntelOneMono-LightItalic.woff b/fonts/woff/IntelOneMono-LightItalic.woff index b4897f2a..e97153db 100644 Binary files a/fonts/woff/IntelOneMono-LightItalic.woff and b/fonts/woff/IntelOneMono-LightItalic.woff differ diff --git a/fonts/woff/IntelOneMono-Medium.woff b/fonts/woff/IntelOneMono-Medium.woff index 8a1cd922..8d57aa6c 100644 Binary files a/fonts/woff/IntelOneMono-Medium.woff and b/fonts/woff/IntelOneMono-Medium.woff differ diff --git a/fonts/woff/IntelOneMono-MediumItalic.woff b/fonts/woff/IntelOneMono-MediumItalic.woff index 05e30607..fc2bc5ef 100644 Binary files a/fonts/woff/IntelOneMono-MediumItalic.woff and b/fonts/woff/IntelOneMono-MediumItalic.woff differ diff --git a/fonts/woff/IntelOneMono-Regular.woff b/fonts/woff/IntelOneMono-Regular.woff index 6f25edbe..63d6ab24 100644 Binary files a/fonts/woff/IntelOneMono-Regular.woff and b/fonts/woff/IntelOneMono-Regular.woff differ diff --git a/fonts/woff/OFL.txt b/fonts/woff/OFL.txt index 81951a00..f4c87796 100644 --- a/fonts/woff/OFL.txt +++ b/fonts/woff/OFL.txt @@ -1,8 +1,8 @@ -Copyright 2023 Intel Corp. with Reserved Font Name 'Intel One Mono' +Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono), with Reserved Font Name 'Intel' 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 +This license is copied below, and is also available with a FAQ at: +https://scripts.sil.org/OFL ----------------------------------------------------------- diff --git a/fonts/woff2.zip b/fonts/woff2.zip index 48934125..4d4c3f6b 100644 Binary files a/fonts/woff2.zip and b/fonts/woff2.zip differ diff --git a/fonts/woff2/IntelOneMono-Bold.woff2 b/fonts/woff2/IntelOneMono-Bold.woff2 index ad52b0cb..ef8cd88f 100644 Binary files a/fonts/woff2/IntelOneMono-Bold.woff2 and b/fonts/woff2/IntelOneMono-Bold.woff2 differ diff --git a/fonts/woff2/IntelOneMono-BoldItalic.woff2 b/fonts/woff2/IntelOneMono-BoldItalic.woff2 index 2615c524..7b907064 100644 Binary files a/fonts/woff2/IntelOneMono-BoldItalic.woff2 and b/fonts/woff2/IntelOneMono-BoldItalic.woff2 differ diff --git a/fonts/woff2/IntelOneMono-Italic.woff2 b/fonts/woff2/IntelOneMono-Italic.woff2 index 13ae19c1..949523c8 100644 Binary files a/fonts/woff2/IntelOneMono-Italic.woff2 and b/fonts/woff2/IntelOneMono-Italic.woff2 differ diff --git a/fonts/woff2/IntelOneMono-Light.woff2 b/fonts/woff2/IntelOneMono-Light.woff2 index bc5053c4..3ef965d8 100644 Binary files a/fonts/woff2/IntelOneMono-Light.woff2 and b/fonts/woff2/IntelOneMono-Light.woff2 differ diff --git a/fonts/woff2/IntelOneMono-LightItalic.woff2 b/fonts/woff2/IntelOneMono-LightItalic.woff2 index eb568228..a4170322 100644 Binary files a/fonts/woff2/IntelOneMono-LightItalic.woff2 and b/fonts/woff2/IntelOneMono-LightItalic.woff2 differ diff --git a/fonts/woff2/IntelOneMono-Medium.woff2 b/fonts/woff2/IntelOneMono-Medium.woff2 index 745887a2..540798c4 100644 Binary files a/fonts/woff2/IntelOneMono-Medium.woff2 and b/fonts/woff2/IntelOneMono-Medium.woff2 differ diff --git a/fonts/woff2/IntelOneMono-MediumItalic.woff2 b/fonts/woff2/IntelOneMono-MediumItalic.woff2 index ad65b31b..74071c88 100644 Binary files a/fonts/woff2/IntelOneMono-MediumItalic.woff2 and b/fonts/woff2/IntelOneMono-MediumItalic.woff2 differ diff --git a/fonts/woff2/IntelOneMono-Regular.woff2 b/fonts/woff2/IntelOneMono-Regular.woff2 index dd0187ec..8b7531e1 100644 Binary files a/fonts/woff2/IntelOneMono-Regular.woff2 and b/fonts/woff2/IntelOneMono-Regular.woff2 differ diff --git a/fonts/woff2/OFL.txt b/fonts/woff2/OFL.txt index 81951a00..f4c87796 100644 --- a/fonts/woff2/OFL.txt +++ b/fonts/woff2/OFL.txt @@ -1,8 +1,8 @@ -Copyright 2023 Intel Corp. with Reserved Font Name 'Intel One Mono' +Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono), with Reserved Font Name 'Intel' 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 +This license is copied below, and is also available with a FAQ at: +https://scripts.sil.org/OFL ----------------------------------------------------------- diff --git a/sources/.ninja_log b/sources/.ninja_log new file mode 100644 index 00000000..6e1d36a1 --- /dev/null +++ b/sources/.ninja_log @@ -0,0 +1,17 @@ +# ninja log v5 +0 1181 1721251731258217000 instance_ttf/IntelOneMono-Bold.ufo 9e8cd7ed2bbce774 +2 1205 1721251731271727000 instance_ttf/IntelOneMono-Medium.ufo 112f20cbd87fb985 +2 1211 1721251731273130000 instance_ttf/IntelOneMono-Light.ufo 65fe9d19d10fa728 +1 1213 1721251731277536000 instance_ttf/IntelOneMono-BoldItalic.ufo 4af4d6bc7eeff546 +3 1218 1721251731280863000 instance_ttf/IntelOneMono-MediumItalic.ufo e6255691778d2b62 +1 1219 1721251731279373000 instance_ttf/IntelOneMono-Italic.ufo 8967b3b5dc4626ea +2 1220 1721251731281653000 instance_ttf/IntelOneMono-LightItalic.ufo f2a921845deb1807 +3 1223 1721251731284453000 instance_ttf/IntelOneMono-Regular.ufo 8771f5d34efcfc1b +2 1126 1721254468483781000 instance_ttf/IntelOneMono-Medium.ufo 112f20cbd87fb985 +2 1135 1721254468490023000 instance_ttf/IntelOneMono-Light.ufo 65fe9d19d10fa728 +1 1138 1721254468487726000 instance_ttf/IntelOneMono-Bold.ufo 9e8cd7ed2bbce774 +2 1141 1721254468491629000 instance_ttf/IntelOneMono-Italic.ufo 8967b3b5dc4626ea +1 1142 1721254468496825000 instance_ttf/IntelOneMono-BoldItalic.ufo 4af4d6bc7eeff546 +2 1145 1721254468492784000 instance_ttf/IntelOneMono-MediumItalic.ufo e6255691778d2b62 +3 1145 1721254468494845000 instance_ttf/IntelOneMono-Regular.ufo 8771f5d34efcfc1b +2 1146 1721254468496425000 instance_ttf/IntelOneMono-LightItalic.ufo f2a921845deb1807 diff --git a/sources/features/aalt.fea b/sources/features/aalt.fea new file mode 100644 index 00000000..d62f52e4 --- /dev/null +++ b/sources/features/aalt.fea @@ -0,0 +1,60 @@ +# -------------- +# All Alternates +# -------------- + +feature aalt { + sub germandbls from [germandbls uni1E9E]; + sub uni1E9E from [uni1E9E germandbls]; + sub colon from [colon colon.fig]; + sub colon.fig from [colon.fig colon]; + sub eight from [eight eight.den eight.sup eight.num eight.inf]; + sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; + sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; + sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; + sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; + sub five from [five five.inf five.num five.den five.sup]; + sub five.sup from [five.sup five five.inf five.num five.den]; + sub five.den from [five.den five.sup five five.inf five.num]; + sub five.num from [five.num five.den five.sup five five.inf]; + sub five.inf from [five.inf five.num five.den five.sup five]; + sub four from [four four.sup four.num four.den four.inf]; + sub four.inf from [four.inf four four.sup four.num four.den]; + sub four.den from [four.den four.inf four four.sup four.num]; + sub four.num from [four.num four.den four.inf four four.sup]; + sub four.sup from [four.sup four.num four.den four.inf four]; + sub nine from [nine nine.den nine.inf nine.num nine.sup]; + sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; + sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; + sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; + sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; + sub one from [one one.den one.num one.inf one.sup]; + sub one.sup from [one.sup one one.den one.num one.inf]; + sub one.inf from [one.inf one.sup one one.den one.num]; + sub one.num from [one.num one.inf one.sup one one.den]; + sub one.den from [one.den one.num one.inf one.sup one]; + sub seven from [seven seven.inf seven.num seven.sup seven.den]; + sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; + sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; + sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; + sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; + sub six from [six six.num six.sup six.den six.inf]; + sub six.inf from [six.inf six six.num six.sup six.den]; + sub six.den from [six.den six.inf six six.num six.sup]; + sub six.sup from [six.sup six.den six.inf six six.num]; + sub six.num from [six.num six.sup six.den six.inf six]; + sub three from [three three.inf three.den three.num three.sup]; + sub three.sup from [three.sup three three.inf three.den three.num]; + sub three.num from [three.num three.sup three three.inf three.den]; + sub three.den from [three.den three.num three.sup three three.inf]; + sub three.inf from [three.inf three.den three.num three.sup three]; + sub two from [two two.inf two.sup two.num two.den]; + sub two.den from [two.den two two.inf two.sup two.num]; + sub two.num from [two.num two.den two two.inf two.sup]; + sub two.sup from [two.sup two.num two.den two two.inf]; + sub two.inf from [two.inf two.sup two.num two.den two]; + sub zero from [zero zero.sup zero.num zero.den zero.inf]; + sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; + sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; + sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; + sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; +} aalt; diff --git a/sources/features/mark/IntelOneMono-Bold mark.fea b/sources/features/mark/IntelOneMono-Bold mark.fea new file mode 100644 index 00000000..125276fb --- /dev/null +++ b/sources/features/mark/IntelOneMono-Bold mark.fea @@ -0,0 +1,96 @@ +# --------------------------------------------------------------------- +# MARK | Generated: November 23, 2022 - 02:37:49 PM by 'markFeature.py' +# --------------------------------------------------------------------- + +markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; +markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; +markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; +markClass [cedillacmb] @mark_belowcedilla; +markClass [ogonekcmb] @mark_belowogonek; + +feature mark { + + lookup aboveLC{ + pos base [a] mark @mark_aboveLC; + pos base [c] mark @mark_aboveLC; + pos base [dotlessi] mark @mark_aboveLC; + pos base [dotlessj] mark @mark_aboveLC; + pos base [e] mark @mark_aboveLC; + pos base [eogonek] mark @mark_aboveLC; + pos base [g] mark @mark_aboveLC; + pos base [m] mark @mark_aboveLC; + pos base [n] mark @mark_aboveLC; + pos base [o] mark @mark_aboveLC; + pos base [p] mark @mark_aboveLC; + pos base [s] mark @mark_aboveLC; + pos base [u] mark @mark_aboveLC; + pos base [z] mark @mark_aboveLC; + } aboveLC; + + lookup aboveUC{ + pos base [A] mark @mark_aboveUC; + pos base [C] mark @mark_aboveUC; + pos base [E] mark @mark_aboveUC; + pos base [Eogonek] mark @mark_aboveUC; + pos base [G] mark @mark_aboveUC; + pos base [I] mark @mark_aboveUC; + pos base [J] mark @mark_aboveUC; + pos base [M] mark @mark_aboveUC; + pos base [N] mark @mark_aboveUC; + pos base [O] mark @mark_aboveUC; + pos base [P] mark @mark_aboveUC; + pos base [S] mark @mark_aboveUC; + pos base [U] mark @mark_aboveUC; + pos base [Z] mark @mark_aboveUC; + } aboveUC; + + lookup below{ + pos base [C] mark @mark_below; + pos base [Dcroat] mark @mark_below; + pos base [E] mark @mark_below; + pos base [H] mark @mark_below; + pos base [I] mark @mark_below; + pos base [O] mark @mark_below; + pos base [S] mark @mark_below; + pos base [U] mark @mark_below; + pos base [X] mark @mark_below; + pos base [Z] mark @mark_below; + pos base [c] mark @mark_below; + pos base [dcroat] mark @mark_below; + pos base [dotlessi] mark @mark_below; + pos base [e] mark @mark_below; + pos base [h] mark @mark_below; + pos base [o] mark @mark_below; + pos base [s] mark @mark_below; + pos base [u] mark @mark_below; + pos base [x] mark @mark_below; + pos base [z] mark @mark_below; + } below; + + lookup belowcedilla{ + pos base [Z] mark @mark_belowcedilla; + pos base [z] mark @mark_belowcedilla; + } belowcedilla; + + lookup belowogonek{ + pos base [A] mark @mark_belowogonek; + pos base [E] mark @mark_belowogonek; + pos base [I] mark @mark_belowogonek; + pos base [O] mark @mark_belowogonek; + pos base [U] mark @mark_belowogonek; + pos base [a] mark @mark_belowogonek; + pos base [dotlessi] mark @mark_belowogonek; + pos base [e] mark @mark_belowogonek; + pos base [o] mark @mark_belowogonek; + pos base [u] mark @mark_belowogonek; + } belowogonek; + +} mark; + +@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; +@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; + +table GDEF { + GlyphClassDef @BASES,,@MARKS,; +} GDEF; + diff --git a/sources/features/mark/IntelOneMono-BoldItalic mark.fea b/sources/features/mark/IntelOneMono-BoldItalic mark.fea new file mode 100644 index 00000000..038396c6 --- /dev/null +++ b/sources/features/mark/IntelOneMono-BoldItalic mark.fea @@ -0,0 +1,95 @@ +# --------------------------------------------------------------------- +# MARK | Generated: November 23, 2022 - 02:37:46 PM by 'markFeature.py' +# --------------------------------------------------------------------- + +markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; +markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; +markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; +markClass [cedillacmb] @mark_belowcedilla; +markClass [ogonekcmb] @mark_belowogonek; + +feature mark { + + lookup aboveLC{ + pos base [a] mark @mark_aboveLC; + pos base [c] mark @mark_aboveLC; + pos base [dotlessi] mark @mark_aboveLC; + pos base [dotlessj] mark @mark_aboveLC; + pos base [e] mark @mark_aboveLC; + pos base [eogonek] mark @mark_aboveLC; + pos base [g] mark @mark_aboveLC; + pos base [m] mark @mark_aboveLC; + pos base [n] mark @mark_aboveLC; + pos base [o] mark @mark_aboveLC; + pos base [p] mark @mark_aboveLC; + pos base [s] mark @mark_aboveLC; + pos base [u] mark @mark_aboveLC; + pos base [z] mark @mark_aboveLC; + } aboveLC; + + lookup aboveUC{ + pos base [A] mark @mark_aboveUC; + pos base [C] mark @mark_aboveUC; + pos base [E] mark @mark_aboveUC; + pos base [Eogonek] mark @mark_aboveUC; + pos base [G] mark @mark_aboveUC; + pos base [I] mark @mark_aboveUC; + pos base [J] mark @mark_aboveUC; + pos base [M] mark @mark_aboveUC; + pos base [N] mark @mark_aboveUC; + pos base [O] mark @mark_aboveUC; + pos base [P] mark @mark_aboveUC; + pos base [S] mark @mark_aboveUC; + pos base [U] mark @mark_aboveUC; + pos base [Z] mark @mark_aboveUC; + } aboveUC; + + lookup below{ + pos base [C] mark @mark_below; + pos base [Dcroat] mark @mark_below; + pos base [E] mark @mark_below; + pos base [H] mark @mark_below; + pos base [I] mark @mark_below; + pos base [O] mark @mark_below; + pos base [S] mark @mark_below; + pos base [U] mark @mark_below; + pos base [X] mark @mark_below; + pos base [Z] mark @mark_below; + pos base [c] mark @mark_below; + pos base [dcroat] mark @mark_below; + pos base [dotlessi] mark @mark_below; + pos base [e] mark @mark_below; + pos base [h] mark @mark_below; + pos base [o] mark @mark_below; + pos base [s] mark @mark_below; + pos base [u] mark @mark_below; + pos base [x] mark @mark_below; + pos base [z] mark @mark_below; + } below; + + lookup belowcedilla{ + pos base [Z] mark @mark_belowcedilla; + pos base [z] mark @mark_belowcedilla; + } belowcedilla; + + lookup belowogonek{ + pos base [A] mark @mark_belowogonek; + pos base [E] mark @mark_belowogonek; + pos base [I] mark @mark_belowogonek; + pos base [O] mark @mark_belowogonek; + pos base [U] mark @mark_belowogonek; + pos base [a] mark @mark_belowogonek; + pos base [dotlessi] mark @mark_belowogonek; + pos base [e] mark @mark_belowogonek; + pos base [o] mark @mark_belowogonek; + pos base [u] mark @mark_belowogonek; + } belowogonek; + +} mark; + +@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; +@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; + +table GDEF { + GlyphClassDef @BASES,,@MARKS,; +} GDEF; diff --git a/sources/features/mark/IntelOneMono-Italic mark.fea b/sources/features/mark/IntelOneMono-Italic mark.fea new file mode 100644 index 00000000..8719ae7d --- /dev/null +++ b/sources/features/mark/IntelOneMono-Italic mark.fea @@ -0,0 +1,96 @@ +# --------------------------------------------------------------------- +# MARK | Generated: November 23, 2022 - 02:37:51 PM by 'markFeature.py' +# --------------------------------------------------------------------- + +markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; +markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; +markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; +markClass [cedillacmb] @mark_belowcedilla; +markClass [ogonekcmb] @mark_belowogonek; + +feature mark { + + lookup aboveLC{ + pos base [a] mark @mark_aboveLC; + pos base [c] mark @mark_aboveLC; + pos base [dotlessi] mark @mark_aboveLC; + pos base [dotlessj] mark @mark_aboveLC; + pos base [e] mark @mark_aboveLC; + pos base [eogonek] mark @mark_aboveLC; + pos base [g] mark @mark_aboveLC; + pos base [m] mark @mark_aboveLC; + pos base [n] mark @mark_aboveLC; + pos base [o] mark @mark_aboveLC; + pos base [p] mark @mark_aboveLC; + pos base [s] mark @mark_aboveLC; + pos base [u] mark @mark_aboveLC; + pos base [z] mark @mark_aboveLC; + } aboveLC; + + lookup aboveUC{ + pos base [A] mark @mark_aboveUC; + pos base [C] mark @mark_aboveUC; + pos base [E] mark @mark_aboveUC; + pos base [Eogonek] mark @mark_aboveUC; + pos base [G] mark @mark_aboveUC; + pos base [I] mark @mark_aboveUC; + pos base [J] mark @mark_aboveUC; + pos base [M] mark @mark_aboveUC; + pos base [N] mark @mark_aboveUC; + pos base [O] mark @mark_aboveUC; + pos base [P] mark @mark_aboveUC; + pos base [S] mark @mark_aboveUC; + pos base [U] mark @mark_aboveUC; + pos base [Z] mark @mark_aboveUC; + } aboveUC; + + lookup below{ + pos base [C] mark @mark_below; + pos base [Dcroat] mark @mark_below; + pos base [E] mark @mark_below; + pos base [H] mark @mark_below; + pos base [I] mark @mark_below; + pos base [O] mark @mark_below; + pos base [S] mark @mark_below; + pos base [U] mark @mark_below; + pos base [X] mark @mark_below; + pos base [Z] mark @mark_below; + pos base [c] mark @mark_below; + pos base [dcroat] mark @mark_below; + pos base [dotlessi] mark @mark_below; + pos base [e] mark @mark_below; + pos base [h] mark @mark_below; + pos base [o] mark @mark_below; + pos base [s] mark @mark_below; + pos base [u] mark @mark_below; + pos base [x] mark @mark_below; + pos base [z] mark @mark_below; + } below; + + lookup belowcedilla{ + pos base [Z] mark @mark_belowcedilla; + pos base [z] mark @mark_belowcedilla; + } belowcedilla; + + lookup belowogonek{ + pos base [A] mark @mark_belowogonek; + pos base [E] mark @mark_belowogonek; + pos base [I] mark @mark_belowogonek; + pos base [O] mark @mark_belowogonek; + pos base [U] mark @mark_belowogonek; + pos base [a] mark @mark_belowogonek; + pos base [dotlessi] mark @mark_belowogonek; + pos base [e] mark @mark_belowogonek; + pos base [o] mark @mark_belowogonek; + pos base [u] mark @mark_belowogonek; + } belowogonek; + +} mark; + +@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; +@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; + +table GDEF { + GlyphClassDef @BASES,,@MARKS,; +} GDEF; + diff --git a/sources/features/mark/IntelOneMono-Light mark.fea b/sources/features/mark/IntelOneMono-Light mark.fea new file mode 100644 index 00000000..483b517b --- /dev/null +++ b/sources/features/mark/IntelOneMono-Light mark.fea @@ -0,0 +1,95 @@ +# --------------------------------------------------------------------- +# MARK | Generated: November 23, 2022 - 02:37:56 PM by 'markFeature.py' +# --------------------------------------------------------------------- + +markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; +markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; +markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; +markClass [cedillacmb] @mark_belowcedilla; +markClass [ogonekcmb] @mark_belowogonek; + +feature mark { + + lookup aboveLC{ + pos base [a] mark @mark_aboveLC; + pos base [c] mark @mark_aboveLC; + pos base [dotlessi] mark @mark_aboveLC; + pos base [dotlessj] mark @mark_aboveLC; + pos base [e] mark @mark_aboveLC; + pos base [eogonek] mark @mark_aboveLC; + pos base [g] mark @mark_aboveLC; + pos base [m] mark @mark_aboveLC; + pos base [n] mark @mark_aboveLC; + pos base [o] mark @mark_aboveLC; + pos base [p] mark @mark_aboveLC; + pos base [s] mark @mark_aboveLC; + pos base [u] mark @mark_aboveLC; + pos base [z] mark @mark_aboveLC; + } aboveLC; + + lookup aboveUC{ + pos base [A] mark @mark_aboveUC; + pos base [C] mark @mark_aboveUC; + pos base [E] mark @mark_aboveUC; + pos base [Eogonek] mark @mark_aboveUC; + pos base [G] mark @mark_aboveUC; + pos base [I] mark @mark_aboveUC; + pos base [J] mark @mark_aboveUC; + pos base [M] mark @mark_aboveUC; + pos base [N] mark @mark_aboveUC; + pos base [O] mark @mark_aboveUC; + pos base [P] mark @mark_aboveUC; + pos base [S] mark @mark_aboveUC; + pos base [U] mark @mark_aboveUC; + pos base [Z] mark @mark_aboveUC; + } aboveUC; + + lookup below{ + pos base [C] mark @mark_below; + pos base [Dcroat] mark @mark_below; + pos base [E] mark @mark_below; + pos base [H] mark @mark_below; + pos base [I] mark @mark_below; + pos base [O] mark @mark_below; + pos base [S] mark @mark_below; + pos base [U] mark @mark_below; + pos base [X] mark @mark_below; + pos base [Z] mark @mark_below; + pos base [c] mark @mark_below; + pos base [dcroat] mark @mark_below; + pos base [dotlessi] mark @mark_below; + pos base [e] mark @mark_below; + pos base [h] mark @mark_below; + pos base [o] mark @mark_below; + pos base [s] mark @mark_below; + pos base [u] mark @mark_below; + pos base [x] mark @mark_below; + pos base [z] mark @mark_below; + } below; + + lookup belowcedilla{ + pos base [Z] mark @mark_belowcedilla; + pos base [z] mark @mark_belowcedilla; + } belowcedilla; + + lookup belowogonek{ + pos base [A] mark @mark_belowogonek; + pos base [E] mark @mark_belowogonek; + pos base [I] mark @mark_belowogonek; + pos base [O] mark @mark_belowogonek; + pos base [U] mark @mark_belowogonek; + pos base [a] mark @mark_belowogonek; + pos base [dotlessi] mark @mark_belowogonek; + pos base [e] mark @mark_belowogonek; + pos base [o] mark @mark_belowogonek; + pos base [u] mark @mark_belowogonek; + } belowogonek; + +} mark; + +@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; +@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; + +table GDEF { + GlyphClassDef @BASES,,@MARKS,; +} GDEF; diff --git a/sources/features/mark/IntelOneMono-LightItalic mark.fea b/sources/features/mark/IntelOneMono-LightItalic mark.fea new file mode 100644 index 00000000..eaeab464 --- /dev/null +++ b/sources/features/mark/IntelOneMono-LightItalic mark.fea @@ -0,0 +1,95 @@ +# --------------------------------------------------------------------- +# MARK | Generated: November 23, 2022 - 02:37:54 PM by 'markFeature.py' +# --------------------------------------------------------------------- + +markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; +markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; +markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; +markClass [cedillacmb] @mark_belowcedilla; +markClass [ogonekcmb] @mark_belowogonek; + +feature mark { + + lookup aboveLC{ + pos base [a] mark @mark_aboveLC; + pos base [c] mark @mark_aboveLC; + pos base [dotlessi] mark @mark_aboveLC; + pos base [dotlessj] mark @mark_aboveLC; + pos base [e] mark @mark_aboveLC; + pos base [eogonek] mark @mark_aboveLC; + pos base [g] mark @mark_aboveLC; + pos base [m] mark @mark_aboveLC; + pos base [n] mark @mark_aboveLC; + pos base [o] mark @mark_aboveLC; + pos base [p] mark @mark_aboveLC; + pos base [s] mark @mark_aboveLC; + pos base [u] mark @mark_aboveLC; + pos base [z] mark @mark_aboveLC; + } aboveLC; + + lookup aboveUC{ + pos base [A] mark @mark_aboveUC; + pos base [C] mark @mark_aboveUC; + pos base [E] mark @mark_aboveUC; + pos base [Eogonek] mark @mark_aboveUC; + pos base [G] mark @mark_aboveUC; + pos base [I] mark @mark_aboveUC; + pos base [J] mark @mark_aboveUC; + pos base [M] mark @mark_aboveUC; + pos base [N] mark @mark_aboveUC; + pos base [O] mark @mark_aboveUC; + pos base [P] mark @mark_aboveUC; + pos base [S] mark @mark_aboveUC; + pos base [U] mark @mark_aboveUC; + pos base [Z] mark @mark_aboveUC; + } aboveUC; + + lookup below{ + pos base [C] mark @mark_below; + pos base [Dcroat] mark @mark_below; + pos base [E] mark @mark_below; + pos base [H] mark @mark_below; + pos base [I] mark @mark_below; + pos base [O] mark @mark_below; + pos base [S] mark @mark_below; + pos base [U] mark @mark_below; + pos base [X] mark @mark_below; + pos base [Z] mark @mark_below; + pos base [c] mark @mark_below; + pos base [dcroat] mark @mark_below; + pos base [dotlessi] mark @mark_below; + pos base [e] mark @mark_below; + pos base [h] mark @mark_below; + pos base [o] mark @mark_below; + pos base [s] mark @mark_below; + pos base [u] mark @mark_below; + pos base [x] mark @mark_below; + pos base [z] mark @mark_below; + } below; + + lookup belowcedilla{ + pos base [Z] mark @mark_belowcedilla; + pos base [z] mark @mark_belowcedilla; + } belowcedilla; + + lookup belowogonek{ + pos base [A] mark @mark_belowogonek; + pos base [E] mark @mark_belowogonek; + pos base [I] mark @mark_belowogonek; + pos base [O] mark @mark_belowogonek; + pos base [U] mark @mark_belowogonek; + pos base [a] mark @mark_belowogonek; + pos base [dotlessi] mark @mark_belowogonek; + pos base [e] mark @mark_belowogonek; + pos base [o] mark @mark_belowogonek; + pos base [u] mark @mark_belowogonek; + } belowogonek; + +} mark; + +@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; +@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; + +table GDEF { + GlyphClassDef @BASES,,@MARKS,; +} GDEF; diff --git a/sources/features/mark/IntelOneMono-Medium mark.fea b/sources/features/mark/IntelOneMono-Medium mark.fea new file mode 100644 index 00000000..a1128a20 --- /dev/null +++ b/sources/features/mark/IntelOneMono-Medium mark.fea @@ -0,0 +1,95 @@ +# --------------------------------------------------------------------- +# MARK | Generated: November 23, 2022 - 02:38:01 PM by 'markFeature.py' +# --------------------------------------------------------------------- + +markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; +markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; +markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; +markClass [cedillacmb] @mark_belowcedilla; +markClass [ogonekcmb] @mark_belowogonek; + +feature mark { + + lookup aboveLC{ + pos base [a] mark @mark_aboveLC; + pos base [c] mark @mark_aboveLC; + pos base [dotlessi] mark @mark_aboveLC; + pos base [dotlessj] mark @mark_aboveLC; + pos base [e] mark @mark_aboveLC; + pos base [eogonek] mark @mark_aboveLC; + pos base [g] mark @mark_aboveLC; + pos base [m] mark @mark_aboveLC; + pos base [n] mark @mark_aboveLC; + pos base [o] mark @mark_aboveLC; + pos base [p] mark @mark_aboveLC; + pos base [s] mark @mark_aboveLC; + pos base [u] mark @mark_aboveLC; + pos base [z] mark @mark_aboveLC; + } aboveLC; + + lookup aboveUC{ + pos base [A] mark @mark_aboveUC; + pos base [C] mark @mark_aboveUC; + pos base [E] mark @mark_aboveUC; + pos base [Eogonek] mark @mark_aboveUC; + pos base [G] mark @mark_aboveUC; + pos base [I] mark @mark_aboveUC; + pos base [J] mark @mark_aboveUC; + pos base [M] mark @mark_aboveUC; + pos base [N] mark @mark_aboveUC; + pos base [O] mark @mark_aboveUC; + pos base [P] mark @mark_aboveUC; + pos base [S] mark @mark_aboveUC; + pos base [U] mark @mark_aboveUC; + pos base [Z] mark @mark_aboveUC; + } aboveUC; + + lookup below{ + pos base [C] mark @mark_below; + pos base [Dcroat] mark @mark_below; + pos base [E] mark @mark_below; + pos base [H] mark @mark_below; + pos base [I] mark @mark_below; + pos base [O] mark @mark_below; + pos base [S] mark @mark_below; + pos base [U] mark @mark_below; + pos base [X] mark @mark_below; + pos base [Z] mark @mark_below; + pos base [c] mark @mark_below; + pos base [dcroat] mark @mark_below; + pos base [dotlessi] mark @mark_below; + pos base [e] mark @mark_below; + pos base [h] mark @mark_below; + pos base [o] mark @mark_below; + pos base [s] mark @mark_below; + pos base [u] mark @mark_below; + pos base [x] mark @mark_below; + pos base [z] mark @mark_below; + } below; + + lookup belowcedilla{ + pos base [Z] mark @mark_belowcedilla; + pos base [z] mark @mark_belowcedilla; + } belowcedilla; + + lookup belowogonek{ + pos base [A] mark @mark_belowogonek; + pos base [E] mark @mark_belowogonek; + pos base [I] mark @mark_belowogonek; + pos base [O] mark @mark_belowogonek; + pos base [U] mark @mark_belowogonek; + pos base [a] mark @mark_belowogonek; + pos base [dotlessi] mark @mark_belowogonek; + pos base [e] mark @mark_belowogonek; + pos base [o] mark @mark_belowogonek; + pos base [u] mark @mark_belowogonek; + } belowogonek; + +} mark; + +@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; +@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; + +table GDEF { + GlyphClassDef @BASES,,@MARKS,; +} GDEF; diff --git a/sources/features/mark/IntelOneMono-MediumItalic mark.fea b/sources/features/mark/IntelOneMono-MediumItalic mark.fea new file mode 100644 index 00000000..29f6e4f1 --- /dev/null +++ b/sources/features/mark/IntelOneMono-MediumItalic mark.fea @@ -0,0 +1,95 @@ +# --------------------------------------------------------------------- +# MARK | Generated: November 23, 2022 - 02:37:59 PM by 'markFeature.py' +# --------------------------------------------------------------------- + +markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; +markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; +markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; +markClass [cedillacmb] @mark_belowcedilla; +markClass [ogonekcmb] @mark_belowogonek; + +feature mark { + + lookup aboveLC{ + pos base [a] mark @mark_aboveLC; + pos base [c] mark @mark_aboveLC; + pos base [dotlessi] mark @mark_aboveLC; + pos base [dotlessj] mark @mark_aboveLC; + pos base [e] mark @mark_aboveLC; + pos base [eogonek] mark @mark_aboveLC; + pos base [g] mark @mark_aboveLC; + pos base [m] mark @mark_aboveLC; + pos base [n] mark @mark_aboveLC; + pos base [o] mark @mark_aboveLC; + pos base [p] mark @mark_aboveLC; + pos base [s] mark @mark_aboveLC; + pos base [u] mark @mark_aboveLC; + pos base [z] mark @mark_aboveLC; + } aboveLC; + + lookup aboveUC{ + pos base [A] mark @mark_aboveUC; + pos base [C] mark @mark_aboveUC; + pos base [E] mark @mark_aboveUC; + pos base [Eogonek] mark @mark_aboveUC; + pos base [G] mark @mark_aboveUC; + pos base [I] mark @mark_aboveUC; + pos base [J] mark @mark_aboveUC; + pos base [M] mark @mark_aboveUC; + pos base [N] mark @mark_aboveUC; + pos base [O] mark @mark_aboveUC; + pos base [P] mark @mark_aboveUC; + pos base [S] mark @mark_aboveUC; + pos base [U] mark @mark_aboveUC; + pos base [Z] mark @mark_aboveUC; + } aboveUC; + + lookup below{ + pos base [C] mark @mark_below; + pos base [Dcroat] mark @mark_below; + pos base [E] mark @mark_below; + pos base [H] mark @mark_below; + pos base [I] mark @mark_below; + pos base [O] mark @mark_below; + pos base [S] mark @mark_below; + pos base [U] mark @mark_below; + pos base [X] mark @mark_below; + pos base [Z] mark @mark_below; + pos base [c] mark @mark_below; + pos base [dcroat] mark @mark_below; + pos base [dotlessi] mark @mark_below; + pos base [e] mark @mark_below; + pos base [h] mark @mark_below; + pos base [o] mark @mark_below; + pos base [s] mark @mark_below; + pos base [u] mark @mark_below; + pos base [x] mark @mark_below; + pos base [z] mark @mark_below; + } below; + + lookup belowcedilla{ + pos base [Z] mark @mark_belowcedilla; + pos base [z] mark @mark_belowcedilla; + } belowcedilla; + + lookup belowogonek{ + pos base [A] mark @mark_belowogonek; + pos base [E] mark @mark_belowogonek; + pos base [I] mark @mark_belowogonek; + pos base [O] mark @mark_belowogonek; + pos base [U] mark @mark_belowogonek; + pos base [a] mark @mark_belowogonek; + pos base [dotlessi] mark @mark_belowogonek; + pos base [e] mark @mark_belowogonek; + pos base [o] mark @mark_belowogonek; + pos base [u] mark @mark_belowogonek; + } belowogonek; + +} mark; + +@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; +@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; + +table GDEF { + GlyphClassDef @BASES,,@MARKS,; +} GDEF; \ No newline at end of file diff --git a/sources/features/mark/IntelOneMono-Regular mark.fea b/sources/features/mark/IntelOneMono-Regular mark.fea new file mode 100644 index 00000000..d87aae70 --- /dev/null +++ b/sources/features/mark/IntelOneMono-Regular mark.fea @@ -0,0 +1,95 @@ +# --------------------------------------------------------------------- +# MARK | Generated: November 23, 2022 - 02:38:03 PM by 'markFeature.py' +# --------------------------------------------------------------------- + +markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; +markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; +markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; +markClass [cedillacmb] @mark_belowcedilla; +markClass [ogonekcmb] @mark_belowogonek; + +feature mark { + + lookup aboveLC{ + pos base [a] mark @mark_aboveLC; + pos base [c] mark @mark_aboveLC; + pos base [dotlessi] mark @mark_aboveLC; + pos base [dotlessj] mark @mark_aboveLC; + pos base [e] mark @mark_aboveLC; + pos base [eogonek] mark @mark_aboveLC; + pos base [g] mark @mark_aboveLC; + pos base [m] mark @mark_aboveLC; + pos base [n] mark @mark_aboveLC; + pos base [o] mark @mark_aboveLC; + pos base [p] mark @mark_aboveLC; + pos base [s] mark @mark_aboveLC; + pos base [u] mark @mark_aboveLC; + pos base [z] mark @mark_aboveLC; + } aboveLC; + + lookup aboveUC{ + pos base [A] mark @mark_aboveUC; + pos base [C] mark @mark_aboveUC; + pos base [E] mark @mark_aboveUC; + pos base [Eogonek] mark @mark_aboveUC; + pos base [G] mark @mark_aboveUC; + pos base [I] mark @mark_aboveUC; + pos base [J] mark @mark_aboveUC; + pos base [M] mark @mark_aboveUC; + pos base [N] mark @mark_aboveUC; + pos base [O] mark @mark_aboveUC; + pos base [P] mark @mark_aboveUC; + pos base [S] mark @mark_aboveUC; + pos base [U] mark @mark_aboveUC; + pos base [Z] mark @mark_aboveUC; + } aboveUC; + + lookup below{ + pos base [C] mark @mark_below; + pos base [Dcroat] mark @mark_below; + pos base [E] mark @mark_below; + pos base [H] mark @mark_below; + pos base [I] mark @mark_below; + pos base [O] mark @mark_below; + pos base [S] mark @mark_below; + pos base [U] mark @mark_below; + pos base [X] mark @mark_below; + pos base [Z] mark @mark_below; + pos base [c] mark @mark_below; + pos base [dcroat] mark @mark_below; + pos base [dotlessi] mark @mark_below; + pos base [e] mark @mark_below; + pos base [h] mark @mark_below; + pos base [o] mark @mark_below; + pos base [s] mark @mark_below; + pos base [u] mark @mark_below; + pos base [x] mark @mark_below; + pos base [z] mark @mark_below; + } below; + + lookup belowcedilla{ + pos base [Z] mark @mark_belowcedilla; + pos base [z] mark @mark_belowcedilla; + } belowcedilla; + + lookup belowogonek{ + pos base [A] mark @mark_belowogonek; + pos base [E] mark @mark_belowogonek; + pos base [I] mark @mark_belowogonek; + pos base [O] mark @mark_belowogonek; + pos base [U] mark @mark_belowogonek; + pos base [a] mark @mark_belowogonek; + pos base [dotlessi] mark @mark_belowogonek; + pos base [e] mark @mark_belowogonek; + pos base [o] mark @mark_belowogonek; + pos base [u] mark @mark_belowogonek; + } belowogonek; + +} mark; + +@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; +@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; + +table GDEF { + GlyphClassDef @BASES,,@MARKS,; +} GDEF; \ No newline at end of file diff --git a/sources/features/shared.fea b/sources/features/shared.fea new file mode 100644 index 00000000..568558c9 --- /dev/null +++ b/sources/features/shared.fea @@ -0,0 +1,1703 @@ +# ---------------------------- +# INTEL ONE MONO OPENTYPE CODE - v1.4 +# ---------------------------- + +# ---------------- +# Language Systems +# ---------------- + +languagesystem DFLT dflt; +languagesystem latn dflt; +languagesystem latn TRK; +languagesystem latn AZE; +languagesystem latn CRT; +languagesystem latn CAT; + + +# ------- +# Classes +# ------- + +# Base Letters +@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; +@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; + +# Figures +@fig = [zero one two three four five six seven eight nine]; +@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; +@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; +@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; +@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; + +# Marks Above +@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; +@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; + +# Marks Below +@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; + + +# --------------- +# Localized Forms +# --------------- + +feature locl { + script latn; + language TRK; + lookup iTurkish { + sub i by idotaccent; + } iTurkish; + language AZE; + lookup iTurkish; + language CRT; + lookup iTurkish; + language CAT; + sub l periodcentered' l by middotcat; + sub L periodcentered' L by middotcat.cap; + # try fusing them + sub L middotcat.cap by L.dot; + sub L middotcat by L.dot; + sub l middotcat by l.dot; +} locl; + + +# --------------------------------- +# Glyph Composition / Decomposition +# --------------------------------- + +feature ccmp { + + # Decompose unicode lowercase characters whose uppercase counterparts have no unicode + lookup Decomp { + sub hlinebelow by h macronlowmod; + sub jcaron by j caron; + } Decomp; + + # Replace double above accents by combined drawings + lookup DblMarks { + sub dieresiscmb acutecmb by dieresisacute; + sub dieresiscmb gravecmb by dieresisgrave; + sub dieresiscmb caroncmb by dieresiscaron; + sub dieresiscmb macroncmb by dieresismacron; + sub brevecmb acutecmb by breveacute; + sub brevecmb gravecmb by brevegrave; + sub brevecmb hookcmb by brevehook; + sub brevecmb tildecmb by brevetilde; + sub circumflexcmb acutecmb by circumflexacute; + sub circumflexcmb gravecmb by circumflexgrave; + sub circumflexcmb hookcmb by circumflexhook; + sub circumflexcmb tildecmb by circumflextilde; + # capital forms + sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; + sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; + sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; + sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; + sub brevecmb.cap acutecmb.cap by breveacute.cap; + sub brevecmb.cap gravecmb.cap by brevegrave.cap; + sub brevecmb.cap hookcmb.cap by brevehook.cap; + sub brevecmb.cap tildecmb.cap by brevetilde.cap; + sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; + sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; + sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; + sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; + } DblMarks; + + # Replace combining marks that follow a uppercase letter by their uppercase form + lookup CapitalMarks { + sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; + sub [@ltrUC] [@lcMarks]' by [@ucMarks]; + } CapitalMarks; + + # Replace letters with dotless counterparts when followed by a combining mark + lookup Dotless { + sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; + sub [i j]' [@lcMarks] by [dotlessi dotlessj]; + } Dotless; + + # Replace e ogonek with eogonek + lookup eogonek { + sub e ogonekcmb by eogonek; + } eogonek; + +} ccmp; + + +# ---------- +# Numerators +# ---------- + +feature numr { + sub @fig by @figNum; +} numr; + +# ------------ +# Denominators +# ------------ + +feature dnom { + sub @fig by @figDen; +} dnom; + +# ----------- +# Superscript +# ----------- + +feature sups { + sub @fig by @figSup; +} sups; + +# --------------------- +# Subscript & Inferiors +# --------------------- + +feature subs { + sub @fig by @figInf; +} subs; + +feature sinf { + sub @fig by @figInf; +} sinf; + + +# --------------------- +# Contextual Alternates +# --------------------- + +feature calt { + # shifts colon to align with math symbols when used together + + sub colon' [plus equal greater less hyphen] by colon.fig; + sub [plus equal less greater hyphen] colon' by colon.fig; + + sub colon' [colon colon.fig] by colon.fig; + sub colon.fig colon' by colon.fig; + +} calt; + + +# -------------- +# Stylistic Sets +# -------------- + +feature ss01 { + featureNames { + name "Programming ligatures"; # Windows English + name 1 0 0 "Programming ligatures"; # Mac English + }; + + # Classes + @hyphens = [hyphen hyphen.start hyphen.middle hyphen.end]; + @hyphenContextRaw = [hyphen bar less greater]; + @startHyphenContext = [hyphen hyphen.start less_hyphen.start greater_hyphen.start bar_hyphen.start less_less_hyphen.start greater_greater_hyphen.start bar_bar_hyphen.start]; + @middleHyphenContext1 = [hyphen hyphen.middle hyphen_bar_hyphen.middle hyphen_greater_hyphen.middle hyphen_less_hyphen.middle]; + @middleHyphenContext2 = [hyphen_greater_greater_hyphen.m hyphen_less_less_hyphen.middle hyphen_bar_bar_hyphen.middle]; + @endHyphenContext1 = [hyphen hyphen.end]; + @endHyphenContext2 = [hyphen_less.end hyphen_greater.end hyphen_bar.end]; + @endHyphenContext3 = [hyphen_less_less.end hyphen_greater_greater.end hyphen_bar_bar.end]; + @hyphenLeft = [@startHyphenContext @middleHyphenContext1 @middleHyphenContext2]; + @hyphenRight = [@middleHyphenContext1 @middleHyphenContext2 @endHyphenContext1 @endHyphenContext2 @endHyphenContext3]; + + # for overlapping ligatures in special cases + @hyphenLeftExtra = [less_hyphen.liga greater_hyphen.liga bar_hyphen.liga less_less_hyphen.liga greater_greater_hyphen.liga bar_bar_hyphen.liga]; + @hyphenRightExtra = [hyphen_less.liga hyphen_greater.liga hyphen_bar.liga hyphen_less_less.liga hyphen_greater_greater.liga hyphen_bar_bar.liga]; + + @colons = [colon colon.fig]; + + @equals = [equal equal.start equal.middle equal.end]; + @equalContextRawStart = [equal bar slash]; # less and greater only 'depending' + @equalContextRawEnd = [equal bar slash less]; + + @equalLeft = [equal equal.start equal.middle equal.end equal_equal.liga equal_equal_equal.liga less_equal.start greater_equal.start bar_equal.start slash_equal.start slash_slash_equal.start less_less_equal.start greater_greater_equal.start bar_bar_equal.start equal_bar_equal.middle equal_slash_slash_equal.middle equal_slash_equal.middle equal_bar_bar_equal.middle equal_greater_equal.middle equal_less_equal.middle equal_greater_greater_equal.m equal_less_less_equal.middle equal_colon_equal.middle equal_exclam_equal.middle]; + @equalRight = [equal equal.start equal.middle equal.end equal_equal.liga equal_equal_equal.liga equal_bar_equal.middle equal_slash_slash_equal.middle equal_slash_equal.middle equal_bar_bar_equal.middle equal_greater_equal.middle equal_less_equal.middle equal_greater_greater_equal.m equal_less_less_equal.middle equal_colon_equal.middle equal_exclam_equal.middle equal_less.end equal_greater.end equal_bar.end equal_slash.end equal_less_less.end equal_greater_greater.end equal_bar_bar.end equal_slash_slash.end]; + + @equalLeftExtra = [less_equal.liga greater_equal.liga bar_equal.liga slash_equal.liga less_less_equal.liga greater_greater_equal.liga bar_bar_equal.liga slash_slash_equal.liga ]; + @equalRightExtra = [equal_less.liga equal_greater.liga equal_bar.liga equal_slash.liga equal_less_less.liga equal_greater_greater.liga equal_bar_bar.liga equal_slash_slash.liga]; + + @numbersigns = [numbersign numbersign.start numbersign.middle numbersign.end]; + @underscores = [underscore underscore.start underscore.middle underscore.end]; + + ### Hyphen-arrow things + + # double-triple equals + lookup equal_equal_equal { + sub ligspacer ligspacer equal' by equal_equal_equal.liga; + ignore sub equal equal' equal equal; + ignore sub equal' equal equal equal; + ignore sub @equalContextRawStart equal' equal equal; + ignore sub equal' equal equal @equalContextRawEnd; + ignore sub [less greater] equal' equal equal; + ignore sub equal' equal equal [less greater]; + ignore sub equal' equal equal colon; + ignore sub equal' equal equal exclam; + ignore sub colon equal' equal equal; + ignore sub exclam equal' equal equal; + sub equal' equal equal by ligspacer; + sub ligspacer equal' equal by ligspacer; + } equal_equal_equal; + + lookup equal_equal { + sub ligspacer equal' by equal_equal.liga; + ignore sub @equalContextRawStart equal' equal; + ignore sub equal' equal @equalContextRawEnd; + ignore sub [less greater exclam colon] equal' equal; + ignore sub equal' equal [less greater exclam colon]; + ignore sub less less equal' equal; + ignore sub equal equal' equal; + ignore sub equal' equal equal; + sub equal' equal by ligspacer; + } equal_equal; + + # double-triple hyphens, with gaps + lookup hyphen_hyphen_hyphen { + sub ligspacer ligspacer hyphen' by hyphen_hyphen_hyphen.liga; + ignore sub hyphen' hyphen hyphen hyphen; + ignore sub hyphen hyphen' hyphen hyphen; + ignore sub hyphen' hyphen hyphen greater; + ignore sub hyphen' hyphen hyphen less; + ignore sub hyphen' hyphen hyphen bar; + ignore sub less hyphen' hyphen hyphen; + ignore sub @hyphenContextRaw hyphen' hyphen hyphen; + ignore sub hyphen' hyphen hyphen @hyphenContextRaw; + sub hyphen' hyphen hyphen by ligspacer; + sub ligspacer hyphen' hyphen by ligspacer; + } hyphen_hyphen_hyphen; + + lookup hyphen_hyphen { + sub ligspacer hyphen' by hyphen_hyphen.liga; + ignore sub hyphen' hyphen hyphen; + ignore sub hyphen hyphen' hyphen; + ignore sub hyphen' hyphen greater; + ignore sub hyphen' hyphen less; + ignore sub hyphen' hyphen bar; + ignore sub less hyphen' hyphen; + ignore sub less exclam hyphen' hyphen; + ignore sub greater hyphen' hyphen; + ignore sub bar hyphen' hyphen; + sub hyphen' hyphen by ligspacer; + } hyphen_hyphen; + + ### Arbitrarily concatenating parts + + # Dynamic numbersign pieces + lookup contextualHash { + sub @numbersigns @numbersigns' @numbersigns by numbersign.middle; + sub @numbersigns' @numbersigns by numbersign.start; + sub @numbersigns @numbersigns' by numbersign.end; + } contextualHash; + + # Dynamic underscore pieces + lookup underscore_bar_underscore { # -|- + sub @underscores bar' @underscores by underscore_bar_underscore.m; + } underscore_bar_underscore; + + lookup contextualUnderscore { + @underscoreContext = [@underscores underscore_bar_underscore.m]; + sub @underscoreContext @underscores' @underscoreContext by underscore.middle; + sub @underscores' @underscoreContext by underscore.start; + sub @underscoreContext @underscores' by underscore.end; + } contextualUnderscore; + + ### Single-line arrows + + + # Dynamic hyphen pieces + lookup contextualHyphens { + # middle hyphen + sub [@hyphenContextRaw @hyphens] @hyphens' [@hyphenContextRaw @hyphens] by hyphen.middle; + + # beginning hyphen + ignore sub @hyphenContextRaw @hyphens' @hyphenContextRaw; + ignore sub @hyphens @hyphens' @hyphenContextRaw; + sub @hyphens' @hyphenContextRaw by hyphen.start; + + # end hyphen + ignore sub @hyphenContextRaw @hyphens' @hyphenContextRaw; + ignore sub @hyphenContextRaw @hyphens' @hyphens; + sub [@hyphenContextRaw hyphen.start hyphen.middle] @hyphens' by hyphen.end; + } contextualHyphens; + + # Middle parts - contextual + lookup hyphen_bar_bar_hyphen { # -||- + sub @hyphenLeft ligspacer bar' @hyphenRight by hyphen_bar_bar_hyphen.middle; + sub @hyphenLeft bar' bar @hyphenRight by ligspacer; + } hyphen_bar_bar_hyphen; + + lookup hyphen_less_less_hyphen { # -<<- + sub @hyphenLeft ligspacer less' @hyphenRight by hyphen_less_less_hyphen.middle; + sub @hyphenLeft less' less @hyphenRight by ligspacer; + } hyphen_less_less_hyphen; + + lookup hyphen_greater_greater_hyphen { # ->>- + sub @hyphenLeft ligspacer greater' @hyphenRight by hyphen_greater_greater_hyphen.m; + sub @hyphenLeft greater' greater @hyphenRight by ligspacer; + } hyphen_greater_greater_hyphen; + + lookup hyphen_bar_hyphen { # -|- + sub @hyphenLeft bar' @hyphenRight by hyphen_bar_hyphen.middle; + } hyphen_bar_hyphen; + + lookup hyphen_less_hyphen { # -<- + sub @hyphenLeft less' @hyphenRight by hyphen_less_hyphen.middle; + } hyphen_less_hyphen; + + lookup hyphen_greater_hyphen { # ->- + sub @hyphenLeft greater' @hyphenRight by hyphen_greater_hyphen.middle; + } hyphen_greater_hyphen; + + # Standalone ligatures that COULD be part of longer arrows but aren't + lookup less_less_hyphen { # <<- + sub ligspacer ligspacer @hyphens' by less_less_hyphen.liga; + ignore sub less' less @hyphens @hyphenRight; + sub less' less @hyphens by ligspacer; + sub ligspacer less' @hyphens by ligspacer; + } less_less_hyphen; + + lookup less_hyphen { # <- + sub ligspacer @hyphens' by less_hyphen.liga; + ignore sub less' @hyphens @hyphenRight; + ignore sub hyphen less' hyphen; + sub less' @hyphens by ligspacer; + } less_hyphen; + + lookup greater_greater_hyphen { # >>- + sub ligspacer ligspacer @hyphens' by greater_greater_hyphen.liga; + ignore sub greater' greater @hyphens @hyphenRight; + ignore sub hyphen greater' greater hyphen; + sub greater' greater @hyphens by ligspacer; + sub ligspacer greater' @hyphens by ligspacer; + } greater_greater_hyphen; + + lookup greater_hyphen { # >- + sub ligspacer @hyphens' by greater_hyphen.liga; + ignore sub greater' @hyphens @hyphenRight; + ignore sub hyphen greater' hyphen; + sub greater' @hyphens by ligspacer; + } greater_hyphen; + + lookup bar_bar_hyphen { # ||- + sub ligspacer ligspacer @hyphens' by bar_bar_hyphen.liga; + ignore sub bar' bar @hyphens @hyphenRight; + ignore sub hyphen bar' bar hyphen; + sub bar' bar @hyphens by ligspacer; + sub ligspacer bar' @hyphens by ligspacer; + } bar_bar_hyphen; + + lookup bar_hyphen { # |- + sub ligspacer @hyphens' by bar_hyphen.liga; + ignore sub bar' @hyphens @hyphenRight; + ignore sub hyphen bar' hyphen; + sub bar' @hyphens by ligspacer; + } bar_hyphen; + + # Start sequences that do begin a longer sequence + lookup less_less_hyphen_connecting { # <<- + sub ligspacer ligspacer @hyphens' by less_less_hyphen.start; + sub less' less @hyphens by ligspacer; + sub ligspacer less' @hyphens by ligspacer; + } less_less_hyphen_connecting; + + lookup less_hyphen_connecting { # <- + sub ligspacer @hyphens' by less_hyphen.start; + ignore sub hyphen less' hyphen; + sub less' @hyphens by ligspacer; + } less_hyphen_connecting; + + lookup greater_greater_hyphen_connecting { # >>- + sub ligspacer ligspacer @hyphens' by greater_greater_hyphen.start; + ignore sub hyphen greater' greater hyphen; + sub greater' greater @hyphens by ligspacer; + sub ligspacer greater' @hyphens by ligspacer; + } greater_greater_hyphen_connecting; + + lookup greater_hyphen_connecting { # >- + sub ligspacer @hyphens' by greater_hyphen.start; + ignore sub hyphen greater' hyphen; + sub greater' @hyphens by ligspacer; + } greater_hyphen_connecting; + + lookup bar_bar_hyphen_connecting { # ||- + sub ligspacer ligspacer @hyphens' by bar_bar_hyphen.start; + ignore sub hyphen bar' bar hyphen; + sub bar' bar @hyphens by ligspacer; + sub ligspacer bar' @hyphens by ligspacer; + } bar_bar_hyphen_connecting; + + lookup bar_hyphen_connecting { # |- + sub ligspacer @hyphens' by bar_hyphen.start; + ignore sub hyphen bar' hyphen; + sub bar' @hyphens by ligspacer; + } bar_hyphen_connecting; + + # Precomposed bits - end - connecting + lookup hyphen_less_less_connecting { # -<< + sub @hyphenLeft ligspacer ligspacer less' by hyphen_less_less.end; + sub @hyphenLeft @hyphens' less less by ligspacer; + sub @hyphenLeft ligspacer less' less by ligspacer; + } hyphen_less_less_connecting; + + lookup hyphen_less_connecting { # -< + sub @hyphenLeft ligspacer less' by hyphen_less.end; + sub @hyphenLeft @hyphens' less by ligspacer; + } hyphen_less_connecting; + + lookup hyphen_bar_bar_connecting { # -|| + sub @hyphenLeft ligspacer ligspacer bar' by hyphen_bar_bar.end; + sub @hyphenLeft @hyphens' bar bar by ligspacer; + sub @hyphenLeft ligspacer bar' bar by ligspacer; + } hyphen_bar_bar_connecting; + + lookup hyphen_bar_connecting { # -| + sub @hyphenLeft ligspacer bar' by hyphen_bar.end; + ignore sub hyphen' bar hyphen; + sub @hyphenLeft @hyphens' bar by ligspacer; + } hyphen_bar_connecting; + + lookup hyphen_greater_greater_connecting { # ->> + sub @hyphenLeft ligspacer ligspacer greater' by hyphen_greater_greater.end; + sub @hyphenLeft @hyphens' greater greater by ligspacer; + sub @hyphenLeft ligspacer greater' greater by ligspacer; + } hyphen_greater_greater_connecting; + + lookup hyphen_greater_connecting { # -> + sub ligspacer greater' by hyphen_greater.end; + sub @hyphenLeft @hyphens' greater by ligspacer; + } hyphen_greater_connecting; + + # Bits that could be ends but really are just standalone ligatures + lookup hyphen_less_less { # -<< + sub ligspacer ligspacer less' by hyphen_less_less.liga; + ignore sub @hyphenLeft @hyphens' less less; + sub @hyphens' less less by ligspacer; + sub ligspacer less' less by ligspacer; + } hyphen_less_less; + + lookup hyphen_less { # -< + sub ligspacer less' by hyphen_less.liga; + ignore sub @hyphenLeft @hyphens' less; + sub @hyphens' less by ligspacer; + } hyphen_less; + + lookup hyphen_bar_bar { # -|| + sub ligspacer ligspacer bar' by hyphen_bar_bar.liga; + ignore sub @hyphenLeft @hyphens' bar bar; + sub @hyphens' bar bar by ligspacer; + sub ligspacer bar' bar by ligspacer; + } hyphen_bar_bar; + + lookup hyphen_bar { # -| + sub ligspacer bar' by hyphen_bar.liga; + ignore sub hyphen' bar hyphen; + ignore sub @hyphenLeft @hyphens' bar; + sub @hyphens' bar by ligspacer; + } hyphen_bar; + + lookup hyphen_greater_greater { # ->> + sub ligspacer ligspacer greater' by hyphen_greater_greater.liga; + ignore sub @hyphenLeft @hyphens' greater greater; + sub @hyphens' greater greater by ligspacer; + sub ligspacer greater' greater by ligspacer; + } hyphen_greater_greater; + + lookup hyphen_greater { # -> + sub ligspacer greater' by hyphen_greater.liga; + ignore sub @hyphenLeft @hyphens' greater; + sub @hyphens' greater by ligspacer; + } hyphen_greater; + + # Precomposed - Standalone + lookup less_hyphen_less { # <-< + sub ligspacer ligspacer less' by less_hyphen_less.liga; + sub less' hyphen less by ligspacer; + sub ligspacer hyphen' less by ligspacer; + } less_hyphen_less; + + lookup less_hyphen_less2 { # <-> + sub ligspacer less' by less_hyphen_less.liga; + sub less_hyphen.liga' less by ligspacer; + } less_hyphen_less2; + + lookup less_hyphen_greater { # <-> + sub ligspacer ligspacer greater' by less_hyphen_greater.liga; + sub less' hyphen greater by ligspacer; + sub ligspacer hyphen' greater by ligspacer; + } less_hyphen_greater; + + lookup less_hyphen_greater2 { # <-> + sub ligspacer greater' by less_hyphen_greater.liga; + sub less_hyphen.liga' greater by ligspacer; + } less_hyphen_greater2; + + lookup greater_hyphen_greater { # >-> + sub ligspacer ligspacer greater' by greater_hyphen_greater.liga; + sub greater' hyphen greater by ligspacer; + sub ligspacer hyphen' greater by ligspacer; + } greater_hyphen_greater; + + lookup greater_hyphen_greater2 { # <-> + sub ligspacer greater' by greater_hyphen_greater.liga; + sub greater_hyphen.liga' greater by ligspacer; + } greater_hyphen_greater2; + + # loose ends - overlapping + # for 3-glyph start/hyphen/end combos that don't have a standalone ligature + lookup less_less_hyphenend { + ignore sub [@hyphenLeft @hyphenLeftExtra] less' less @hyphenRight; + sub [@hyphenLeft @hyphenLeftExtra] less' less by ligspacer; + sub [@hyphenLeft @hyphenLeftExtra] ligspacer less' by hyphen_less_less.liga; + } less_less_hyphenend; + + lookup less_hyphenend { + ignore sub [@hyphenLeft @hyphenLeftExtra] less' @hyphenRight; + sub [@hyphenLeft @hyphenLeftExtra] less' by hyphen_less.liga; + } less_hyphenend; + + lookup bar_bar_hyphenend { + ignore sub [@hyphenLeft @hyphenLeftExtra] bar' bar @hyphenRight; + sub [@hyphenLeft @hyphenLeftExtra]bar' bar by ligspacer; + sub [@hyphenLeft @hyphenLeftExtra] ligspacer bar' by hyphen_bar_bar.liga; + } bar_bar_hyphenend; + + lookup bar_hyphenend { + ignore sub [@hyphenLeft @hyphenLeftExtra] bar' @hyphenRight; + sub [@hyphenLeft @hyphenLeftExtra] bar' by hyphen_bar.liga; + } bar_hyphenend; + + lookup greater_greater_hyphenend { + ignore sub [@hyphenLeft @hyphenLeftExtra] greater' greater @hyphenRight; + sub [@hyphenLeft @hyphenLeftExtra] greater' greater by ligspacer; + sub [@hyphenLeft @hyphenLeftExtra] ligspacer greater' by hyphen_greater_greater.liga; + } greater_greater_hyphenend; + + lookup greater_hyphenend { + ignore sub [@hyphenLeft @hyphenLeftExtra] greater' @hyphenRight; + sub [@hyphenLeft @hyphenLeftExtra] greater' by hyphen_greater.liga; + } greater_hyphenend; + + + ### Double arrows + + # things that are not arrow end sequences, and get substituted first + lookup bar_bar_bar_greater { + sub ligspacer ligspacer ligspacer greater' by bar_bar_bar_greater.liga; + ignore sub bar' greater greater; + ignore sub bar bar' bar bar greater; + sub bar' bar bar greater by ligspacer; + sub ligspacer bar' bar greater by ligspacer; + sub ligspacer ligspacer bar' greater by ligspacer; + } bar_bar_bar_greater; + + lookup bar_bar_bar { + sub ligspacer ligspacer bar' by bar_bar_bar.liga; + ignore sub bar bar' bar bar; + ignore sub bar' bar bar bar; + ignore sub less bar' bar bar; + sub bar' bar bar by ligspacer; + sub ligspacer bar' bar by ligspacer; + } bar_bar_bar; + + lookup bar_bar_greater { + sub ligspacer ligspacer greater' by bar_bar_greater.liga; + ignore sub bar' greater greater; + ignore sub bar bar' bar greater; + sub bar' bar greater by ligspacer; + sub ligspacer bar' greater by ligspacer; + } bar_bar_greater; + + lookup bar_braceright { + sub ligspacer braceright' by bar_braceright.liga; + ignore sub bar bar' braceright; + ignore sub bar' braceright braceright; + sub bar' braceright by ligspacer; + } bar_braceright; + + lookup bar_bracketright { + sub ligspacer bracketright' by bar_bracketright.liga; + ignore sub bar bar' bracketright; + ignore sub bar' bracketright bracketright; + sub bar' bracketright by ligspacer; + } bar_bracketright; + + lookup bar_greater { + sub ligspacer greater' by bar_greater.liga; + ignore sub bar' greater greater; + ignore sub bar bar' greater; + ignore sub less bar' greater; + sub bar' greater by ligspacer; + } bar_greater; + + # Precomposed bits that could start a sequence but don't + lookup less_less_equal { # <<= + sub ligspacer ligspacer @equals' by less_less_equal.liga; + ignore sub less' less @equals [@equals @equalRight]; + ignore sub @equals less' less @equals; + sub less' less @equals by ligspacer; + sub ligspacer less' @equals by ligspacer; + } less_less_equal; + + # less_equal is a math symbol if it's standalone + + lookup greater_greater_equal { # >>= + sub ligspacer ligspacer @equals' by greater_greater_equal.liga; + ignore sub equal greater' greater equal; + ignore sub greater' greater @equals [@equals @equalRight]; + sub greater' greater @equals by ligspacer; + sub ligspacer greater' @equals by ligspacer; + } greater_greater_equal; + + # greater_equal math + + lookup bar_bar_equal { # ||= + sub ligspacer ligspacer @equals' by bar_bar_equal.liga; + ignore sub equal bar' bar equal; + ignore sub bar' bar @equals [@equals @equalRight]; + sub bar' bar @equals by ligspacer; + sub ligspacer bar' @equals by ligspacer; + } bar_bar_equal; + + lookup bar_equal { # |= + sub ligspacer @equals' by bar_equal.liga; + ignore sub equal bar' equal; + ignore sub bar bar' @equals; + ignore sub bar' @equals [@equals @equalRight]; + sub bar' @equals by ligspacer; + } bar_equal; + + lookup slash_slash_equal { # //= + sub ligspacer ligspacer @equals' by slash_slash_equal.liga; + ignore sub equal slash' slash equal; + ignore sub slash' slash @equals [@equals @equalRight]; + sub slash' slash @equals by ligspacer; + sub ligspacer slash' @equals by ligspacer; + } slash_slash_equal; + + lookup slash_equal { # /= + sub ligspacer @equals' by slash_equal.liga; + ignore sub @equals slash' @equals; + ignore sub slash slash' @equals; + ignore sub slash' @equals [@equals @equalRight]; + sub slash' @equals by ligspacer; + } slash_equal; + + + # Dynamic equal pieces + lookup contextualEquals { + # middle equal + sub [@equalContextRawStart @equals] @equals' [@equalContextRawEnd exclam colon colon.fig @equals] by equal.middle; + sub [@equalContextRawStart @equals] @equals' @equals [less greater exclam colon colon.fig] by equal.middle; + sub [@equalContextRawStart @equals] @equals' [less greater exclam colon] by equal.middle; + sub [less greater exclam colon colon.fig] @equals @equals' [@equalContextRawEnd @equals exclam colon colon.fig] by equal.middle; + sub [less greater exclam colon colon.fig] @equals' [@equalContextRawEnd @equals exclam colon colon.fig] by equal.middle; + + # beginning equal + ignore sub @equalContextRawStart @equals' @equalContextRawEnd; + ignore sub [less greater exclam colon colon.fig] @equals' @equalContextRawEnd; + ignore sub @equals @equals' @equalContextRawEnd; + sub @equals' @equalContextRawEnd by equal.start; + sub @equals' @equals [less greater exclam colon colon.fig] by equal.start; + sub @equals' [less greater exclam colon colon.fig] by equal.start; + + # end equal + ignore sub @equalContextRawStart @equals' @equalContextRawEnd; + ignore sub @equalContextRawStart @equals' @equals; + ignore sub [less greater exclam colon colon.fig] @equals' @equals; + sub @equals [less greater] @equals' by equal.end; + sub @equals [less greater] [less greater] @equals' by equal.end; + sub [@equalContextRawStart exclam colon colon.fig equal.start equal.middle] @equals' by equal.end; + + + } contextualEquals; + + + # Middle parts - contextual + lookup equal_bar_bar_equal { # =||= + sub @equalLeft ligspacer bar' @equalRight by equal_bar_bar_equal.middle; + sub @equalLeft bar' bar @equalRight by ligspacer; + } equal_bar_bar_equal; + + lookup equal_slash_slash_equal { # =//= + sub @equalLeft ligspacer slash' @equalRight by equal_slash_slash_equal.middle; + sub @equalLeft slash' slash @equalRight by ligspacer; + } equal_slash_slash_equal; + + lookup equal_less_less_equal { # =<<= + sub @equalLeft ligspacer less' @equalRight by equal_less_less_equal.middle; + sub @equalLeft less' less @equalRight by ligspacer; + } equal_less_less_equal; + + lookup equal_greater_greater_equal { # =>>= + sub @equalLeft ligspacer greater' @equalRight by equal_greater_greater_equal.m; + sub @equalLeft greater' greater @equalRight by ligspacer; + } equal_greater_greater_equal; + + lookup equal_bar_equal { # =|= + sub @equalLeft bar' @equalRight by equal_bar_equal.middle; + } equal_bar_equal; + + lookup equal_slash_equal { # =/= + sub @equalLeft slash' @equalRight by equal_slash_equal.middle; + } equal_slash_equal; + + lookup equal_less_equal { # =<= + sub @equalLeft less' @equalRight by equal_less_equal.middle; + } equal_less_equal; + + lookup equal_greater_equal { # =>= + sub @equalLeft greater' @equalRight by equal_greater_equal.middle; + } equal_greater_equal; + + lookup equal_colon_equal { # =:= + sub @equalLeft @colons' @equalRight by equal_colon_equal.middle; + } equal_colon_equal; + + lookup equal_exclam_equal { # =!= + sub @equalLeft exclam' @equalRight by equal_exclam_equal.middle; + } equal_exclam_equal; + + # Precomposed bits - Start + lookup less_less_equal_connecting { # <<= + sub ligspacer ligspacer @equals' [@equals @equalRight] by less_less_equal.start; + sub less' less @equals [@equals @equalRight] by ligspacer; + sub ligspacer less' @equals [@equals @equalRight] by ligspacer; + } less_less_equal_connecting; + + lookup less_equal_connecting { # <= + sub ligspacer @equals' [@equals @equalRight] by less_equal.start; + sub less' @equals [@equals @equalRight] by ligspacer; # 2+ equals after + } less_equal_connecting; + + lookup less_equal2_connecting { # <= # for overlapping ends + sub ligspacer @equals' [less greater bar] by less_equal.start; + sub less' @equals [less greater bar] by ligspacer; # special case + } less_equal2_connecting; + + lookup less_equal3_connecting { # <= + @doublecontext = [equal_less_less_equal.middle equal_greater_greater_equal.m equal_bar_bar_equal.middle equal_slash_slash_equal.middle]; + sub ligspacer @equals' ligspacer @doublecontext by less_equal.start; + sub less' @equals ligspacer @doublecontext by ligspacer; # special case + } less_equal3_connecting; + + lookup greater_greater_equal_connecting { # >>= + sub ligspacer ligspacer @equals' [@equals @equalRight] by greater_greater_equal.start; + ignore sub equal greater' greater equal; + sub greater' greater @equals [@equals @equalRight] by ligspacer; + sub ligspacer greater' @equals [@equals @equalRight] by ligspacer; + } greater_greater_equal_connecting; + + lookup greater_equal_connecting { # >= + sub ligspacer @equals' [@equals @equalRight] by greater_equal.start; + ignore sub @equalLeft greater' @equals [@equals @equalRight]; + sub greater' @equals [@equals @equalRight] by ligspacer; # 2+ equals after + } greater_equal_connecting; + + lookup greater_equal2_connecting { + sub ligspacer @equals' [greater less bar] by greater_equal.start; + sub greater' @equals [greater less bar] by ligspacer; # special case + } greater_equal2_connecting; + + lookup greater_equal3_connecting { + @doublecontext = [equal_less_less_equal.middle equal_greater_greater_equal.m equal_bar_bar_equal.middle equal_slash_slash_equal.middle]; + sub ligspacer @equals' ligspacer @doublecontext by greater_equal.start; + sub greater' @equals ligspacer @doublecontext by ligspacer; # special case + } greater_equal3_connecting; + + lookup bar_bar_equal_connecting { # ||= + sub ligspacer ligspacer @equals' [@equals @equalRight] by bar_bar_equal.start; + ignore sub @equals bar' bar @equals; + sub bar' bar @equals [@equals @equalRight] by ligspacer; + sub ligspacer bar' @equals [@equals @equalRight] by ligspacer; + } bar_bar_equal_connecting; + + lookup bar_equal_connecting { # |= + sub ligspacer @equals' [@equals @equalRight] by bar_equal.start; + ignore sub @equals bar' @equals [@equals @equalRight]; + sub bar' @equals [@equals @equalRight] by ligspacer; + } bar_equal_connecting; + + lookup slash_slash_equal_connecting { # //= + sub ligspacer ligspacer @equals' [@equals @equalRight] by slash_slash_equal.start; + ignore sub @equals slash' slash @equals; + sub slash' slash @equals [@equals @equalRight] by ligspacer; + sub ligspacer slash' @equals [@equals @equalRight] by ligspacer; + } slash_slash_equal_connecting; + + lookup slash_equal_connecting { # /= + sub ligspacer @equals' [@equals @equalRight] by slash_equal.start; + ignore sub @equals slash' @equals [@equals @equalRight]; + sub slash' @equals [@equals @equalRight] by ligspacer; + } slash_equal_connecting; + + # Precomposed bits - end - connecting + lookup equal_less_less_connecting { # =<< + sub @equalLeft ligspacer ligspacer less' by equal_less_less.end; + sub @equalLeft @equals' less less by ligspacer; + sub @equalLeft ligspacer less' less by ligspacer; + } equal_less_less_connecting; + + lookup equal_less_connecting { # =< + sub @equalLeft ligspacer less' by equal_less.end; + ignore sub @equalLeft equal' less equal; + sub @equalLeft @equals' less by ligspacer; + } equal_less_connecting; + + lookup equal_bar_bar_connecting { # =|| + sub @equalLeft ligspacer ligspacer bar' by equal_bar_bar.end; + sub @equalLeft @equals' bar bar by ligspacer; + sub @equalLeft ligspacer bar' bar by ligspacer; + } equal_bar_bar_connecting; + + lookup equal_bar_connecting { # =| + sub @equalLeft ligspacer bar' by equal_bar.end; + ignore sub @equalLeft @equals' bar @equals; + sub @equalLeft @equals' bar by ligspacer; + } equal_bar_connecting; + + lookup equal_slash_slash_connecting { # =// + sub @equalLeft ligspacer ligspacer slash' by equal_slash_slash.end; + sub @equalLeft @equals' slash slash by ligspacer; + sub @equalLeft ligspacer slash' slash by ligspacer; + } equal_slash_slash_connecting; + + lookup equal_slash_connecting { # =/ + sub @equalLeft ligspacer slash' by equal_slash.end; + ignore sub @equalLeft @equals' slash @equals; + sub @equalLeft @equals' slash by ligspacer; + } equal_slash_connecting; + + lookup equal_greater_greater_connecting { # =>> + sub @equalLeft ligspacer ligspacer greater' by equal_greater_greater.end; + sub @equalLeft @equals' greater greater by ligspacer; + sub @equalLeft ligspacer greater' greater by ligspacer; + } equal_greater_greater_connecting; + + lookup equal_greater_connecting { # => + sub @equalLeft ligspacer greater' by equal_greater.end; + sub @equalLeft @equals' greater by ligspacer; + } equal_greater_connecting; + + # loose ends - overlapping + # for 3-glyph start/equal/end combos that don't have a standalone ligature + lookup less_less_equalend { + ignore sub [@equalLeft @equalLeftExtra] less' less @equalRight; + sub [@equalLeft @equalLeftExtra] less' less by ligspacer; + sub [@equalLeft @equalLeftExtra] ligspacer less' by equal_less_less.liga; + } less_less_equalend; + + lookup less_equalend { + ignore sub [@equalLeft @equalLeftExtra] less' @equalRight; + sub [@equalLeft @equalLeftExtra] less' by equal_less.liga; + } less_equalend; + + lookup bar_bar_equalend { + ignore sub [@equalLeft @equalLeftExtra] bar' bar @equalRight; + sub [@equalLeft @equalLeftExtra]bar' bar by ligspacer; + sub [@equalLeft @equalLeftExtra] ligspacer bar' by equal_bar_bar.liga; + } bar_bar_equalend; + + lookup bar_equalend { + ignore sub [@equalLeft @equalLeftExtra] bar' @equalRight; + sub [@equalLeft @equalLeftExtra] bar' by equal_bar.liga; + } bar_equalend; + + lookup slash_slash_equalend { + ignore sub [@equalLeft @equalLeftExtra] slash' slash @equalRight; + sub [@equalLeft @equalLeftExtra]slash' slash by ligspacer; + sub [@equalLeft @equalLeftExtra] ligspacer slash' by equal_slash_slash.liga; + } slash_slash_equalend; + + lookup slash_equalend { + ignore sub [@equalLeft @equalLeftExtra] slash' @equalRight; + sub [@equalLeft @equalLeftExtra] slash' by equal_slash.liga; + } slash_equalend; + + lookup greater_greater_equalend { + ignore sub [@equalLeft @equalLeftExtra] greater' greater @equalRight; + sub [@equalLeft @equalLeftExtra] greater' greater by ligspacer; + sub [@equalLeft @equalLeftExtra] ligspacer greater' by equal_greater_greater.liga; + } greater_greater_equalend; + + lookup greater_equalend { + ignore sub [@equalLeft @equalLeftExtra] greater' @equalRight; + sub [@equalLeft @equalLeftExtra] greater' by equal_greater.liga; + } greater_equalend; + + # Precomposed bits - standalone ends + lookup equal_less_less { # =<< + sub ligspacer ligspacer less' by equal_less_less.liga; + sub @equals' less less by ligspacer; + sub ligspacer less' less by ligspacer; + } equal_less_less; + + lookup equal_less { # =< + sub ligspacer less' by equal_less.liga; + ignore sub equal' less equal; + sub @equals' less by ligspacer; + } equal_less; + + lookup equal_bar_bar { # =|| + sub ligspacer ligspacer bar' by equal_bar_bar.liga; + sub @equals' bar bar by ligspacer; + sub ligspacer bar' bar by ligspacer; + } equal_bar_bar; + + lookup equal_bar { # =| + sub ligspacer bar' by equal_bar.liga; + ignore sub @equals' bar @equals; + sub @equals' bar by ligspacer; + } equal_bar; + + lookup equal_slash_slash { # =// + sub ligspacer ligspacer slash' by equal_slash_slash.liga; + sub @equals' slash slash by ligspacer; + sub ligspacer slash' slash by ligspacer; + } equal_slash_slash; + + lookup equal_slash { # =/ + sub ligspacer slash' by equal_slash.liga; + ignore sub @equals' slash @equals; + sub @equals' slash by ligspacer; + } equal_slash; + + lookup equal_greater_greater { # =>> + sub ligspacer ligspacer greater' by equal_greater_greater.liga; + sub @equals' greater greater by ligspacer; + sub ligspacer greater' greater by ligspacer; + } equal_greater_greater; + + lookup equal_greater { # => + sub ligspacer greater' by equal_greater.liga; + sub @equals' greater by ligspacer; + } equal_greater; + + # Precomposed - Standalone + lookup less_equal_less { # <=< + sub ligspacer ligspacer less' by less_equal_less.liga; + sub less' @equals less by ligspacer; + sub ligspacer @equals' less by ligspacer; + } less_equal_less; + + lookup less_equal_greater { # <=> + sub ligspacer ligspacer greater' by less_equal_greater.liga; + sub less' @equals greater by ligspacer; + sub ligspacer @equals' greater by ligspacer; + } less_equal_greater; + + lookup greater_equal_greater { # >=> + sub ligspacer ligspacer greater' by greater_equal_greater.liga; + sub greater' @equals greater by ligspacer; + sub ligspacer @equals' greater by ligspacer; + } greater_equal_greater; + + + ### Ligature substitutions hereafter + + ### Less + lookup less_less_less { + sub ligspacer ligspacer less' by less_less_less.liga; + ignore sub less' less less less; + ignore sub less less' less less; + sub less' less less by ligspacer; + sub ligspacer less' less by ligspacer; + } less_less_less; + + lookup less_less { + sub ligspacer less' by less_less.liga; + ignore sub less' less less; + ignore sub less less' less; + sub less' less by ligspacer; + } less_less; + + lookup less_asciitilde_greater { + sub ligspacer ligspacer greater' by less_asciitilde_greater.liga; + sub less' asciitilde greater by ligspacer; + sub ligspacer asciitilde' greater by ligspacer; + } less_asciitilde_greater; + + lookup less_asciitilde_asciitilde { + sub ligspacer ligspacer asciitilde' by less_asciitilde_asciitilde.liga; + ignore sub less less' asciitilde asciitilde; + ignore sub less' asciitilde asciitilde asciitilde; + sub less' asciitilde asciitilde by ligspacer; + sub ligspacer asciitilde' asciitilde by ligspacer; + } less_asciitilde_asciitilde; + + lookup less_asciitilde { + sub ligspacer asciitilde' by less_asciitilde.liga; + ignore sub less less' asciitilde; + ignore sub less' asciitilde asciitilde; + sub less' asciitilde by ligspacer; + } less_asciitilde; + + lookup less_asterisk_greater { + sub ligspacer ligspacer greater' by less_asterisk_greater.liga; + sub less' asterisk greater by ligspacer; + sub ligspacer asterisk' greater by ligspacer; + } less_asterisk_greater; + + lookup less_asterisk { + sub ligspacer asterisk' by less_asterisk.liga; + ignore sub less less' asterisk; + ignore sub less' asterisk asterisk; + sub less' asterisk by ligspacer; + } less_asterisk; + + lookup less_bar_bar_bar { + sub ligspacer ligspacer ligspacer bar' by less_bar_bar_bar.liga; + ignore sub less less' bar; + ignore sub less' bar bar bar bar; + sub less' bar bar bar by ligspacer; + sub ligspacer bar' bar bar by ligspacer; + sub ligspacer ligspacer bar' bar by ligspacer; + } less_bar_bar_bar; + + lookup less_bar_bar { + sub ligspacer ligspacer bar' by less_bar_bar.liga; + ignore sub less less' bar; + ignore sub less' bar bar bar bar; + sub less' bar bar by ligspacer; + sub ligspacer bar' bar by ligspacer; + } less_bar_bar; + + lookup less_bar_greater { + sub ligspacer ligspacer greater' by less_bar_greater.liga; + ignore sub less less' bar; + ignore sub less' bar bar bar bar; + ignore sub less' bar greater greater; + sub less' bar greater by ligspacer; + sub ligspacer bar' greater by ligspacer; + } less_bar_greater; + + lookup less_bar { + sub ligspacer bar' by less_bar.liga; + ignore sub less less' bar; + ignore sub less' bar bar bar bar; + sub less' bar by ligspacer; + } less_bar; + + lookup less_colon { + sub ligspacer @colons' by less_colon.liga; + ignore sub less less' @colons; + ignore sub less' @colons @colons; + sub less' @colons by ligspacer; + } less_colon; + + lookup less_dollar_greater { + sub ligspacer ligspacer greater' by less_dollar_greater.liga; + ignore sub less less' dollar; + ignore sub less' dollar dollar; + ignore sub dollar' greater greater; + ignore sub dollar dollar' greater; + sub less' dollar greater by ligspacer; + sub ligspacer dollar' greater by ligspacer; + } less_dollar_greater; + + lookup less_dollar { + sub ligspacer dollar' by less_dollar.liga; + ignore sub less less' dollar; + ignore sub less' dollar dollar; + sub less' dollar by ligspacer; + } less_dollar; + + lookup less_equal_math { + sub ligspacer equal' by less_equal; # this is the math glyph + ignore sub less' @equals @equalRight; + ignore sub @equalLeft less' @equals; + sub less' @equals by ligspacer; + } less_equal_math; + + lookup less_exclam_hyphen_hyphen { + sub ligspacer ligspacer ligspacer @hyphens' by less_exclam_hyphen_hyphen.liga; + sub less' exclam @hyphens @hyphens by ligspacer; + sub ligspacer exclam' @hyphens @hyphens by ligspacer; + sub ligspacer ligspacer @hyphens' @hyphens by ligspacer; + } less_exclam_hyphen_hyphen; + + lookup less_greater { + sub ligspacer greater' by less_greater.liga; + ignore sub less' greater greater; + ignore sub less less' greater; + sub less' greater by ligspacer; + } less_greater; + + lookup less_plus_greater { + sub ligspacer ligspacer greater' by less_plus_greater.liga; + ignore sub less less' plus; + ignore sub less' plus plus; + ignore sub plus' greater greater; + ignore sub plus plus' greater; + sub less' plus greater by ligspacer; + sub ligspacer plus' greater by ligspacer; + } less_plus_greater; + + lookup less_plus { + sub ligspacer plus' by less_plus.liga; + ignore sub less less' plus; + ignore sub less' plus plus; + sub less' plus by ligspacer; + } less_plus; + + lookup less_slash_greater { + sub ligspacer ligspacer greater' by less_slash_greater.liga; + ignore sub less less' slash; + ignore sub less' slash slash; + ignore sub slash' greater greater; + ignore sub slash slash' greater; + sub less' slash greater by ligspacer; + sub ligspacer slash' greater by ligspacer; + } less_slash_greater; + + lookup less_slash { + sub ligspacer slash' by less_slash.liga; + ignore sub less less' slash; + ignore sub less' slash slash; + sub less' slash by ligspacer; + } less_slash; + + ### Ampersand + lookup ampersand_ampersand { + sub ligspacer ampersand' by ampersand_ampersand.liga; + ignore sub ampersand' ampersand ampersand; + ignore sub ampersand ampersand' ampersand; + sub ampersand' ampersand by ligspacer; + } ampersand_ampersand; + + ### Asciicircum + lookup asciicircum_equal { #### check this #### + sub ligspacer equal' by asciicircum_equal.liga; + ignore sub asciicircum' equal equal; + ignore sub asciicircum asciicircum' equal; + sub asciicircum' equal by ligspacer; + } asciicircum_equal; + + ### Asciitilde + lookup asciitilde_asciitilde_greater { + sub ligspacer ligspacer greater' by asciitilde_asciitilde_greater; + ignore sub asciitilde' asciitilde greater greater; + ignore sub asciitilde asciitilde' asciitilde greater; + sub asciitilde' asciitilde greater by ligspacer; + sub ligspacer asciitilde' greater by ligspacer; + } asciitilde_asciitilde_greater; + + lookup asciitilde_asciitilde { + sub ligspacer asciitilde' by asciitilde_asciitilde.liga; + ignore sub asciitilde' asciitilde asciitilde; + ignore sub asciitilde asciitilde' asciitilde; + sub asciitilde' asciitilde by ligspacer; + } asciitilde_asciitilde; + + lookup asciitilde_greater { + sub ligspacer greater' by asciitilde_greater.liga; + ignore sub asciitilde' greater greater; + ignore sub asciitilde asciitilde' greater; + sub asciitilde' greater by ligspacer; + } asciitilde_greater; + + lookup asciitilde_hyphen { + sub ligspacer hyphen' by asciitilde_hyphen.liga; + ignore sub asciitilde' hyphen hyphen; + ignore sub asciitilde asciitilde' hyphen; + sub asciitilde' hyphen by ligspacer; + } asciitilde_hyphen; + + lookup asciitilde_at { + sub ligspacer at' by asciitilde_at.liga; + ignore sub asciitilde' at at; + ignore sub asciitilde asciitilde' at; + sub asciitilde' at by ligspacer; + } asciitilde_at; + + ### Asterisk + lookup asterisk_asterisk_asterisk { + sub ligspacer ligspacer asterisk' by asterisk_asterisk_asterisk.liga; + ignore sub asterisk' asterisk asterisk asterisk; + ignore sub asterisk asterisk' asterisk asterisk; + sub asterisk' asterisk asterisk by ligspacer; + sub ligspacer asterisk' asterisk by ligspacer; + } asterisk_asterisk_asterisk; + + lookup asterisk_asterisk { + sub ligspacer asterisk' by asterisk_asterisk.liga; + ignore sub asterisk' asterisk asterisk; + ignore sub asterisk asterisk' asterisk; + sub asterisk' asterisk by ligspacer; + } asterisk_asterisk; + + lookup asterisk_greater { + sub ligspacer greater' by asterisk_greater.liga; + ignore sub asterisk' greater greater; + ignore sub asterisk asterisk' greater; + sub asterisk' greater by ligspacer; + } asterisk_greater; + + lookup asterisk_slash { + sub ligspacer slash' by asterisk_slash.liga; + ignore sub asterisk' slash slash; + sub asterisk' slash by ligspacer; + } asterisk_slash; + + ### Backslash + lookup backslash_slash { + sub ligspacer slash' by backslash_slash.liga; + ignore sub backslash backslash' slash; + ignore sub backslash' slash slash; + sub backslash' slash by ligspacer; + } backslash_slash; + + ### Bar + # see above + lookup bar_bar { + sub ligspacer bar' by bar_bar.liga; + ignore sub bar' bar bar; + ignore sub bar bar' bar; + sub bar' bar by ligspacer; + } bar_bar; + + ### Brace + lookup braceleft_bar { + sub ligspacer bar' by braceleft_bar.liga; + ignore sub braceleft braceleft' bar; + ignore sub braceleft' bar bar; + sub braceleft' bar by ligspacer; + } braceleft_bar; + + ### Bracket + lookup bracketleft_bar { + sub ligspacer bar' by bracketleft_bar.liga; + ignore sub bracketleft bracketleft' bar; + ignore sub bracketleft' bar bar; + sub bracketleft' bar by ligspacer; + } bracketleft_bar; + + lookup bracketright_numbersign { + sub ligspacer numbersign' by bracketright_numbersign.liga; + ignore sub bracketright bracketright' numbersign; + ignore sub bracketright' numbersign numbersign; + sub bracketright' numbersign by ligspacer; + } bracketright_numbersign; + + ### Colon + lookup colon_colon_colon { + sub ligspacer ligspacer @colons' by colon_colon_colon.liga; + ignore sub @colons @colons' @colons @colons; + ignore sub @colons' @colons @colons @colons; + sub @colons' @colons @colons by ligspacer; + sub ligspacer @colons' @colons by ligspacer; + } colon_colon_colon; + + lookup colon_colon_equal { + sub ligspacer ligspacer equal' by colon_colon_equal.liga; + ignore sub @colons @colons' @colons equal; + ignore sub @colons' @colons equal equal; + sub @colons' @colons equal by ligspacer; + sub ligspacer @colons' equal by ligspacer; + } colon_colon_equal; + + lookup colon_colon { + sub ligspacer @colons' by colon_colon.liga; + ignore sub @colons @colons' @colons; + ignore sub @colons' @colons @colons; + sub @colons' @colons by ligspacer; + } colon_colon; + + lookup colon_equal { + sub ligspacer @equals' by colon_equal.liga; + ignore sub @colons @colons' equal; + ignore sub @colons' equal equal; + ignore sub parenleft question @colons' equal; + ignore sub equal @colons' equal; + sub @colons' @equals by ligspacer; + } colon_equal; + + lookup colon_greater { + sub ligspacer greater' by colon_greater.liga; + ignore sub @colons @colons' greater; + ignore sub @colons' greater greater; + sub @colons' greater by ligspacer; + } colon_greater; + + lookup colon_less { + sub ligspacer less' by colon_less.liga; + ignore sub @colons @colons' less; + ignore sub @colons' less less; + sub @colons' less by ligspacer; + } colon_less; + + ### Dollar + lookup dollar_greater { + sub ligspacer greater' by dollar_greater.liga; + ignore sub dollar' greater greater; + ignore sub dollar dollar' greater; + sub dollar' greater by ligspacer; + } dollar_greater; + + ### Equal see below + + ### Exclam + lookup exclam_exclam_period { + sub ligspacer ligspacer period' by exclam_exclam_period.liga; + ignore sub exclam exclam' exclam period; + ignore sub exclam' exclam period period; + ignore sub period exclam' exclam period; + sub exclam' exclam period by ligspacer; + sub ligspacer exclam' period by ligspacer; + } exclam_exclam_period; + + lookup exclam_exclam { + sub ligspacer exclam' by exclam_exclam.liga; + ignore sub exclam' exclam exclam; + ignore sub exclam exclam' exclam; + sub exclam' exclam by ligspacer; + } exclam_exclam; + + lookup exclam_equal_equal { + sub ligspacer ligspacer @equals' by exclam_equal_equal.liga; + ignore sub exclam' @equals @equals @equals; + ignore sub @equals exclam' @equals @equals; + ignore sub @equalLeft exclam' @equals @equals; + sub exclam' @equals @equals by ligspacer; + sub ligspacer @equals' @equals by ligspacer; + } exclam_equal_equal; + + lookup exclam_equal { + sub ligspacer @equals' by exclam_equal.liga; + ignore sub exclam exclam' @equals; + ignore sub exclam' @equals @equals; + ignore sub parenleft question exclam' @equals; + ignore sub parenleft question less exclam' @equals; + ignore sub @equals exclam' @equals; + ignore sub @equalLeft exclam' @equals; + sub exclam' @equals by ligspacer; + } exclam_equal; + + ### Equal + + lookup equal_asciitilde { + sub ligspacer asciitilde' by equal_asciitilde.liga; + sub equal' asciitilde by ligspacer; + } equal_asciitilde; + + lookup exclam_asciitilde { + sub ligspacer asciitilde' by exclam_asciitilde.liga; + sub exclam' asciitilde by ligspacer; + } exclam_asciitilde; + + ### Greater + lookup greater_greater_greater { + sub ligspacer ligspacer greater' by greater_greater_greater.liga; + ignore sub greater' greater greater greater; + ignore sub greater greater' greater greater; + sub greater' greater greater by ligspacer; + sub ligspacer greater' greater by ligspacer; + } greater_greater_greater; + + lookup greater_greater { + sub ligspacer greater' by greater_greater.liga; + ignore sub greater' greater greater; + ignore sub greater greater' greater; + sub greater' greater by ligspacer; + } greater_greater; + + lookup greater_colon { + sub ligspacer @colons' by greater_colon.liga; + ignore sub greater greater' @colons; + ignore sub greater' @colons @colons; + sub greater' @colons by ligspacer; + } greater_colon; + + lookup greater_equal_math { # the math symbol. arrow opener see below + sub ligspacer @equals' by greater_equal; + ignore sub greater' @equals equal; + ignore sub greater greater' @equals; + ignore sub greater' @equals greater; + sub greater' @equals by ligspacer; + } greater_equal_math; + + ### Hyphen + # double and triple hyphens are with the arrows / combining hyphens + lookup hyphen_asciitilde { + sub ligspacer asciitilde' by hyphen_asciitilde.liga; + ignore sub hyphen' asciitilde asciitilde; + ignore sub hyphen hyphen' asciitilde; + sub hyphen' asciitilde by ligspacer; + } hyphen_asciitilde; + + # Less is up top + + ### Numbersign + lookup numbersign_braceleft { + sub ligspacer braceleft' by numbersign_braceleft.liga; + ignore sub numbersign numbersign' braceleft; + ignore sub numbersign' braceleft braceleft; + sub numbersign' braceleft by ligspacer; + } numbersign_braceleft; + + lookup numbersign_bracketleft { + sub ligspacer bracketleft' by numbersign_bracketleft.liga; + ignore sub numbersign numbersign' bracketleft; + ignore sub numbersign' bracketleft bracketleft; + sub numbersign' bracketleft by ligspacer; + } numbersign_bracketleft; + + lookup numbersign_parenleft { + sub ligspacer parenleft' by numbersign_parenleft.liga; + ignore sub numbersign numbersign' parenleft; + ignore sub numbersign' parenleft parenleft; + sub numbersign' parenleft by ligspacer; + } numbersign_parenleft; + + lookup numbersign_underscore_parenleft { + sub ligspacer ligspacer parenleft' by numbersign_underscore_parenleft; + ignore sub numbersign numbersign' underscore parenleft; + sub numbersign' underscore parenleft by ligspacer; + sub ligspacer underscore' parenleft by ligspacer; + } numbersign_underscore_parenleft; + + lookup numbersign_underscore { + sub ligspacer underscore' by numbersign_underscore.liga; + ignore sub numbersign numbersign' underscore; + ignore sub numbersign' underscore underscore; + sub numbersign' underscore by ligspacer; + } numbersign_underscore; + + lookup numbersign_colon { + sub ligspacer @colons' by numbersign_colon.liga; + ignore sub numbersign numbersign' @colons; + ignore sub numbersign' @colons @colons; + sub numbersign' @colons by ligspacer; + } numbersign_colon; + + lookup numbersign_equal { + sub ligspacer @equals' by numbersign_equal.liga; + ignore sub numbersign numbersign' @equals; + ignore sub numbersign' equal @equals; + sub numbersign' @equals by ligspacer; + } numbersign_equal; + + lookup numbersign_exclam { + sub ligspacer exclam' by numbersign_exclam.liga; + ignore sub numbersign numbersign' exclam; + ignore sub numbersign' exclam exclam; + sub numbersign' exclam by ligspacer; + } numbersign_exclam; + + lookup numbersign_question { + sub ligspacer question' by numbersign_question.liga; + ignore sub numbersign numbersign' question; + ignore sub numbersign' question question; + sub numbersign' question by ligspacer; + } numbersign_question; + + ### Percent + lookup percent_percent { + sub ligspacer percent' by percent_percent.liga; + ignore sub percent' percent percent; + ignore sub percent percent' percent; + sub percent' percent by ligspacer; + } percent_percent; + + ### Period + lookup period_period_period { + sub ligspacer ligspacer period' by period_period_period.liga; + ignore sub period period' period period; + ignore sub period' period period period; + sub period' period period by ligspacer; + sub ligspacer period' period by ligspacer; + } period_period_period; + + lookup period_period_equal { + sub ligspacer ligspacer equal' by period_period_equal.liga; + ignore sub period period' period equal; + ignore sub period' period equal equal; + sub period' period equal by ligspacer; + sub ligspacer period' equal by ligspacer; + } period_period_equal; + + lookup period_period_less { + sub ligspacer ligspacer less' by period_period_less.liga; + ignore sub period period' period less; + ignore sub period' period less less; + sub period' period less by ligspacer; + sub ligspacer period' less by ligspacer; + } period_period_less; + + lookup period_period { + sub ligspacer period' by period_period.liga; + ignore sub period period' period; + ignore sub period' period period; + sub period' period by ligspacer; + } period_period; + + lookup period_equal { + sub ligspacer equal' by period_equal.liga; + ignore sub period period' equal; + ignore sub period' equal equal; + sub period' equal by ligspacer; + } period_equal; + + lookup period_hyphen { + sub ligspacer hyphen' by period_hyphen.liga; + ignore sub period period' hyphen; + ignore sub period' hyphen hyphen; + sub period' hyphen by ligspacer; + } period_hyphen; + + lookup period_question { + sub ligspacer question' by period_question.liga; + ignore sub period period' question; + ignore sub period' question question; + sub period' question by ligspacer; + } period_question; + + ### Plus + lookup plus_plus_plus { + sub ligspacer ligspacer plus' by plus_plus_plus.liga; + ignore sub plus' plus plus plus; + ignore sub plus plus' plus plus; + sub plus' plus plus by ligspacer; + sub ligspacer plus' plus by ligspacer; + } plus_plus_plus; + + lookup plus_plus { + sub ligspacer plus' by plus_plus.liga; + ignore sub plus' plus plus; + ignore sub plus plus' plus; + sub plus' plus by ligspacer; + } plus_plus; + + lookup plus_greater { + sub ligspacer greater' by plus_greater.liga; + ignore sub plus' greater greater; + ignore sub plus plus' greater; + sub plus' greater by ligspacer; + } plus_greater; + + ### Question + lookup question_question { + sub ligspacer question' by question_question.liga; + ignore sub question' question question; + ignore sub question question' question; + sub question' question by ligspacer; + } question_question; + + lookup question_period { + sub ligspacer period' by question_period.liga; + ignore sub question' period period; + ignore sub question question' period; + sub question' period by ligspacer; + } question_period; + + lookup question_colon { + sub ligspacer @colons' by question_colon.liga; + ignore sub question' @colons @colons; + ignore sub question question' @colons; + sub question' @colons by ligspacer; + } question_colon; + + lookup question_equal { + sub ligspacer equal' by question_equal.liga; + ignore sub question' equal equal; + ignore sub question question' equal; + sub question' equal by ligspacer; + } question_equal; + + ### Semicolon + lookup semicolon_semicolon { + sub ligspacer semicolon' by semicolon_semicolon.liga; + ignore sub semicolon' semicolon semicolon; + ignore sub semicolon semicolon' semicolon; + sub semicolon' semicolon by ligspacer; + } semicolon_semicolon; + + ### Slash + lookup slash_slash_slash { + sub ligspacer ligspacer slash' by slash_slash_slash.liga; + ignore sub slash' slash slash slash; + ignore sub slash slash' slash slash; + sub slash' slash slash by ligspacer; + sub ligspacer slash' slash by ligspacer; + } slash_slash_slash; + + lookup slash_slash { + sub ligspacer slash' by slash_slash.liga; + ignore sub slash' slash slash; + ignore sub slash slash' slash; + ignore sub [@equals @equalLeft] slash' slash; + sub slash' slash by ligspacer; + } slash_slash; + + lookup slash_asterisk { + sub ligspacer asterisk' by slash_asterisk.liga; + sub slash' asterisk by ligspacer; + } slash_asterisk; + + lookup slash_backslash { + sub ligspacer backslash' by slash_backslash.liga; + ignore sub slash' backslash backslash; + ignore sub slash slash' backslash; + sub slash' backslash by ligspacer; + } slash_backslash; + + lookup slash_greater { + sub ligspacer greater' by slash_greater.liga; + ignore sub slash' greater greater; + ignore sub slash slash' greater; + sub slash' greater by ligspacer; + } slash_greater; + +} ss01; + + +feature ss02 { + featureNames { + name "Arrow forms for less-equal and greater-equal"; # Windows English + name 1 0 0 "Arrow forms for less-equal and greater-equal"; # Mac English + }; + lookup moreArrows { + sub less_equal by less_equal.liga; + sub greater_equal by greater_equal.liga; + } moreArrows; +} ss02; + + +feature ss03 { + featureNames { + name "www ligature"; # Windows English + name 1 0 0 "www ligature"; # Mac English + }; + lookup w_w_w { + sub ligspacer ligspacer w' by w_w_w.liga; + ignore sub w' w w w; + ignore sub w w' w w; + sub w' w w by ligspacer; + sub ligspacer w' w by ligspacer; + } w_w_w; +} ss03; + + +feature ss11 { + featureNames { + name "Raised Colon (Figures Only)"; # Windows English + name 1 0 0 "Raised Colon (Figures Only)"; # Mac English + }; + lookup FigureColonContextual { + sub @fig colon' @fig by colon.fig; + } FigureColonContextual; +} ss11; + +feature ss12 { + featureNames { + name "Raised Colon (Global)"; # Windows English + name 1 0 0 "Raised Colon (Global)"; # Mac English + }; + lookup FigureColon { + sub colon by colon.fig; + } FigureColon; +} ss12; + + +# -------------------- +# Stylistic Alternates +# -------------------- + +feature salt { + lookup FigureColon; # SS12 +} salt; diff --git a/sources/hinting/truetype hinting source/IntelOneMono-Bold-vtt.ttf b/sources/hinting/truetype hinting source/IntelOneMono-Bold-vtt.ttf new file mode 100644 index 00000000..a73f0f8f Binary files /dev/null and b/sources/hinting/truetype hinting source/IntelOneMono-Bold-vtt.ttf differ diff --git a/sources/hinting/truetype hinting source/IntelOneMono-BoldItalic-vtt.ttf b/sources/hinting/truetype hinting source/IntelOneMono-BoldItalic-vtt.ttf new file mode 100644 index 00000000..c44bdf35 Binary files /dev/null and b/sources/hinting/truetype hinting source/IntelOneMono-BoldItalic-vtt.ttf differ diff --git a/sources/hinting/truetype hinting source/IntelOneMono-Italic-vtt.ttf b/sources/hinting/truetype hinting source/IntelOneMono-Italic-vtt.ttf new file mode 100644 index 00000000..b8d164a1 Binary files /dev/null and b/sources/hinting/truetype hinting source/IntelOneMono-Italic-vtt.ttf differ diff --git a/sources/hinting/truetype hinting source/IntelOneMono-Light-vtt.ttf b/sources/hinting/truetype hinting source/IntelOneMono-Light-vtt.ttf new file mode 100644 index 00000000..48425d7d Binary files /dev/null and b/sources/hinting/truetype hinting source/IntelOneMono-Light-vtt.ttf differ diff --git a/sources/hinting/truetype hinting source/IntelOneMono-LightItalic-vtt.ttf b/sources/hinting/truetype hinting source/IntelOneMono-LightItalic-vtt.ttf new file mode 100644 index 00000000..f2d1089a Binary files /dev/null and b/sources/hinting/truetype hinting source/IntelOneMono-LightItalic-vtt.ttf differ diff --git a/sources/hinting/truetype hinting source/IntelOneMono-Medium-vtt.ttf b/sources/hinting/truetype hinting source/IntelOneMono-Medium-vtt.ttf new file mode 100644 index 00000000..96242616 Binary files /dev/null and b/sources/hinting/truetype hinting source/IntelOneMono-Medium-vtt.ttf differ diff --git a/sources/hinting/truetype hinting source/IntelOneMono-MediumItalic-vtt.ttf b/sources/hinting/truetype hinting source/IntelOneMono-MediumItalic-vtt.ttf new file mode 100644 index 00000000..df96b186 Binary files /dev/null and b/sources/hinting/truetype hinting source/IntelOneMono-MediumItalic-vtt.ttf differ diff --git a/sources/hinting/truetype hinting source/IntelOneMono-Regular-vtt.ttf b/sources/hinting/truetype hinting source/IntelOneMono-Regular-vtt.ttf new file mode 100644 index 00000000..1c451343 Binary files /dev/null and b/sources/hinting/truetype hinting source/IntelOneMono-Regular-vtt.ttf differ diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/features.fea b/sources/instances/postscript/IntelOneMono-Bold.ufo/features.fea index 6197aed6..6c520a9c 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/features.fea +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/features.fea @@ -1,368 +1,6 @@ -# ---------------------------- -# INTEL ONE MONO OPENTYPE CODE -# ---------------------------- -# ---------------- -# Language Systems -# ---------------- +include(../../features/shared.fea); -languagesystem DFLT dflt; -languagesystem latn dflt; -languagesystem latn TRK; -languagesystem latn AZE; -languagesystem latn CRT; -languagesystem latn CAT; +include(../../features/mark/IntelOneMono-Italic mark.fea); - -# ------- -# Classes -# ------- - -# Base Letters -@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; -@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; - -# Figures -@fig = [zero one two three four five six seven eight nine]; -@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; -@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; -@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; -@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; - -# Marks Above -@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; -@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; - -# Marks Below -@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; - - -# --------------- -# Localized Forms -# --------------- - -feature locl { - script latn; - language TRK; - lookup iTurkish { - sub i by idotaccent; - } iTurkish; - language AZE; - lookup iTurkish; - language CRT; - lookup iTurkish; - language CAT; - sub l periodcentered' l by middotcat; - sub L periodcentered' L by middotcat.cap; - # try fusing them - sub L middotcat.cap by L.dot; - sub L middotcat by L.dot; - sub l middotcat by l.dot; -} locl; - - -# --------------------------------- -# Glyph Composition / Decomposition -# --------------------------------- - -feature ccmp { - - # Decompose unicode lowercase characters whose uppercase counterparts have no unicode. - lookup Decomp { - sub hlinebelow by h macronlowmod; - sub jcaron by j caron; - } Decomp; - - # Replace double above accents by combined drawings. - lookup DblMarks { - sub dieresiscmb acutecmb by dieresisacute; - sub dieresiscmb gravecmb by dieresisgrave; - sub dieresiscmb caroncmb by dieresiscaron; - sub dieresiscmb macroncmb by dieresismacron; - sub brevecmb acutecmb by breveacute; - sub brevecmb gravecmb by brevegrave; - sub brevecmb hookcmb by brevehook; - sub brevecmb tildecmb by brevetilde; - sub circumflexcmb acutecmb by circumflexacute; - sub circumflexcmb gravecmb by circumflexgrave; - sub circumflexcmb hookcmb by circumflexhook; - sub circumflexcmb tildecmb by circumflextilde; - # capital forms - sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; - sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; - sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; - sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; - sub brevecmb.cap acutecmb.cap by breveacute.cap; - sub brevecmb.cap gravecmb.cap by brevegrave.cap; - sub brevecmb.cap hookcmb.cap by brevehook.cap; - sub brevecmb.cap tildecmb.cap by brevetilde.cap; - sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; - sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; - sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; - sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; - } DblMarks; - - # Replace combining marks that follow a uppercase letter by their uppercase form - lookup CapitalMarks { - sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; - sub [@ltrUC] [@lcMarks]' by [@ucMarks]; - } CapitalMarks; - - # Replace letters with dotless counterparts when followed by a combining mark - lookup Dotless { - sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; - sub [i j]' [@lcMarks] by [dotlessi dotlessj]; - } Dotless; - - # Replace e ogonek with pre-drawn eogonek - lookup eogonek { - sub e ogonekcmb by eogonek; - } eogonek; - -} ccmp; - - -# ---------- -# Numerators -# ---------- - -feature numr { - sub @fig by @figNum; -} numr; - -# ------------ -# Denominators -# ------------ - -feature dnom { - sub @fig by @figDen; -} dnom; - -# ----------- -# Superscript -# ----------- - -feature sups { - sub @fig by @figSup; -} sups; - -# --------------------- -# Subscript & Inferiors -# --------------------- - -feature subs { - sub @fig by @figInf; -} subs; - -feature sinf { - sub @fig by @figInf; -} sinf; - - -# --------------------- -# Contextual Alternates -# --------------------- - -feature calt { - # shifts colon to align with math symbols when used together - - sub colon' [plus equal greater less hyphen] by colon.fig; - sub [plus equal less greater hyphen] colon' by colon.fig; - - sub colon' [colon colon.fig] by colon.fig; - sub colon.fig colon' by colon.fig; - -} calt; - - -# -------------- -# Stylistic Sets -# -------------- - -feature ss11 { - featureNames { - name "Raised Colon (Figures Only)"; # Windows English - name 1 0 0 "Raised Colon (Figures Only)"; # Mac English - }; - lookup FigureColonContextual { - sub @fig colon' @fig by colon.fig; - } FigureColonContextual; -} ss11; - -feature ss12 { - featureNames { - name "Raised Colon (Global)"; # Windows English - name 1 0 0 "Raised Colon (Global)"; # Mac English - }; - lookup FigureColon { - sub colon by colon.fig; - } FigureColon; -} ss12; - - -# -------------------- -# Stylistic Alternates -# -------------------- - -feature salt { - lookup FigureColon; # SS12 -} salt; - - -# --------------------------------------------------------------------- -# MARK | Generated: November 23, 2022 - 02:37:49 PM by 'markFeature.py' -# --------------------------------------------------------------------- - -markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; -markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; -markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; -markClass [cedillacmb] @mark_belowcedilla; -markClass [ogonekcmb] @mark_belowogonek; - -feature mark { - - lookup aboveLC{ - pos base [a] mark @mark_aboveLC; - pos base [c] mark @mark_aboveLC; - pos base [dotlessi] mark @mark_aboveLC; - pos base [dotlessj] mark @mark_aboveLC; - pos base [e] mark @mark_aboveLC; - pos base [eogonek] mark @mark_aboveLC; - pos base [g] mark @mark_aboveLC; - pos base [m] mark @mark_aboveLC; - pos base [n] mark @mark_aboveLC; - pos base [o] mark @mark_aboveLC; - pos base [p] mark @mark_aboveLC; - pos base [s] mark @mark_aboveLC; - pos base [u] mark @mark_aboveLC; - pos base [z] mark @mark_aboveLC; - } aboveLC; - - lookup aboveUC{ - pos base [A] mark @mark_aboveUC; - pos base [C] mark @mark_aboveUC; - pos base [E] mark @mark_aboveUC; - pos base [Eogonek] mark @mark_aboveUC; - pos base [G] mark @mark_aboveUC; - pos base [I] mark @mark_aboveUC; - pos base [J] mark @mark_aboveUC; - pos base [M] mark @mark_aboveUC; - pos base [N] mark @mark_aboveUC; - pos base [O] mark @mark_aboveUC; - pos base [P] mark @mark_aboveUC; - pos base [S] mark @mark_aboveUC; - pos base [U] mark @mark_aboveUC; - pos base [Z] mark @mark_aboveUC; - } aboveUC; - - lookup below{ - pos base [C] mark @mark_below; - pos base [Dcroat] mark @mark_below; - pos base [E] mark @mark_below; - pos base [H] mark @mark_below; - pos base [I] mark @mark_below; - pos base [O] mark @mark_below; - pos base [S] mark @mark_below; - pos base [U] mark @mark_below; - pos base [X] mark @mark_below; - pos base [Z] mark @mark_below; - pos base [c] mark @mark_below; - pos base [dcroat] mark @mark_below; - pos base [dotlessi] mark @mark_below; - pos base [e] mark @mark_below; - pos base [h] mark @mark_below; - pos base [o] mark @mark_below; - pos base [s] mark @mark_below; - pos base [u] mark @mark_below; - pos base [x] mark @mark_below; - pos base [z] mark @mark_below; - } below; - - lookup belowcedilla{ - pos base [Z] mark @mark_belowcedilla; - pos base [z] mark @mark_belowcedilla; - } belowcedilla; - - lookup belowogonek{ - pos base [A] mark @mark_belowogonek; - pos base [E] mark @mark_belowogonek; - pos base [I] mark @mark_belowogonek; - pos base [O] mark @mark_belowogonek; - pos base [U] mark @mark_belowogonek; - pos base [a] mark @mark_belowogonek; - pos base [dotlessi] mark @mark_belowogonek; - pos base [e] mark @mark_belowogonek; - pos base [o] mark @mark_belowogonek; - pos base [u] mark @mark_belowogonek; - } belowogonek; - -} mark; - -@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; -@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; - -table GDEF { - GlyphClassDef @BASES,,@MARKS,; -} GDEF; - - -# -------------- -# All Alternates -# -------------- - -feature aalt { - sub germandbls from [germandbls uni1E9E]; - sub uni1E9E from [uni1E9E germandbls]; - sub colon from [colon colon.fig]; - sub colon.fig from [colon.fig colon]; - sub eight from [eight eight.den eight.sup eight.num eight.inf]; - sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; - sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; - sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; - sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; - sub five from [five five.inf five.num five.den five.sup]; - sub five.sup from [five.sup five five.inf five.num five.den]; - sub five.den from [five.den five.sup five five.inf five.num]; - sub five.num from [five.num five.den five.sup five five.inf]; - sub five.inf from [five.inf five.num five.den five.sup five]; - sub four from [four four.sup four.num four.den four.inf]; - sub four.inf from [four.inf four four.sup four.num four.den]; - sub four.den from [four.den four.inf four four.sup four.num]; - sub four.num from [four.num four.den four.inf four four.sup]; - sub four.sup from [four.sup four.num four.den four.inf four]; - sub nine from [nine nine.den nine.inf nine.num nine.sup]; - sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; - sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; - sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; - sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; - sub one from [one one.den one.num one.inf one.sup]; - sub one.sup from [one.sup one one.den one.num one.inf]; - sub one.inf from [one.inf one.sup one one.den one.num]; - sub one.num from [one.num one.inf one.sup one one.den]; - sub one.den from [one.den one.num one.inf one.sup one]; - sub seven from [seven seven.inf seven.num seven.sup seven.den]; - sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; - sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; - sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; - sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; - sub six from [six six.num six.sup six.den six.inf]; - sub six.inf from [six.inf six six.num six.sup six.den]; - sub six.den from [six.den six.inf six six.num six.sup]; - sub six.sup from [six.sup six.den six.inf six six.num]; - sub six.num from [six.num six.sup six.den six.inf six]; - sub three from [three three.inf three.den three.num three.sup]; - sub three.sup from [three.sup three three.inf three.den three.num]; - sub three.num from [three.num three.sup three three.inf three.den]; - sub three.den from [three.den three.num three.sup three three.inf]; - sub three.inf from [three.inf three.den three.num three.sup three]; - sub two from [two two.inf two.sup two.num two.den]; - sub two.den from [two.den two two.inf two.sup two.num]; - sub two.num from [two.num two.den two two.inf two.sup]; - sub two.sup from [two.sup two.num two.den two two.inf]; - sub two.inf from [two.inf two.sup two.num two.den two]; - sub zero from [zero zero.sup zero.num zero.den zero.inf]; - sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; - sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; - sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; - sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; -} aalt; +include(../../features/aalt.fea); diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/fontinfo.plist b/sources/instances/postscript/IntelOneMono-Bold.ufo/fontinfo.plist index 0fb7a224..4001e3dc 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/fontinfo.plist +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/fontinfo.plist @@ -7,7 +7,7 @@ capHeight 655 copyright - Copyright 2023 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) descender -260 familyName @@ -57,7 +57,7 @@ platformID 1 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -69,7 +69,7 @@ platformID 3 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -263,30 +263,6 @@ string http://frerejones.com - - encodingID - 1 - languageID - 1033 - nameID - 16 - platformID - 3 - string - Intel One Mono - - - encodingID - 1 - languageID - 1033 - nameID - 17 - platformID - 3 - string - Bold - openTypeOS2CodePageRanges @@ -403,7 +379,7 @@ versionMajor 1 versionMinor - 3 + 4 xHeight 477 diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/L_.dot.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/L_.dot.glif index e3ec776c..d418821a 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/L_.dot.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/L_.dot.glif @@ -8,7 +8,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_breve.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_breve.glif index 118170d7..c8b88195 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_breve.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_breve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_caron.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_caron.glif index 4605a99e..3f9c088e 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflex.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflex.glif index e24a18a6..445c0bf5 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflexacute.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflexacute.glif index 27202445..6f1b42ac 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflexdotbelow.glif index 90c77200..d8c070d8 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflexgrave.glif index 59365244..9ba2cfd8 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflexhookabove.glif index 0ab4b361..3e0f0bb0 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflextilde.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflextilde.glif index 9710e454..dc7a6ef6 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_circumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_dieresis.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_dieresis.glif index 67f9b9d3..e74012fb 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_dotaccent.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_dotaccent.glif index 138320e7..b65fcfa0 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_dotbelow.glif index 58a11ae9..c2bb1c9e 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_hookabove.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_hookabove.glif index 340fbdec..b8b62caa 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_horn.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_horn.glif index b2dca93d..bf6e66e2 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_horn.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_horn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_hornacute.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_hornacute.glif index c39e3365..cbc45aed 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_hornacute.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_hornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_horndotbelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_horndotbelow.glif index 75cbad51..a2a765a4 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_horndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_horndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_horngrave.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_horngrave.glif index 37f34338..0d879e97 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_horngrave.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_horngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_hornhookabove.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_hornhookabove.glif index cf3d7800..b2dd63d4 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_hornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_hornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_horntilde.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_horntilde.glif index 8202ed85..29e74e1c 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_horntilde.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_horntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_macron.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_macron.glif index ad580ae9..4f5184c0 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_macron.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_tilde.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_tilde.glif index 98b73df1..f9122105 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/O_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_acute.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_acute.glif index 3d4b0a55..252953de 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_caron.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_caron.glif index 3b836ed7..48209b59 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_commaaccent.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_commaaccent.glif index f9f5b789..03cd713a 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_dotaccent.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_dotaccent.glif index 59b3880b..31eeb0e1 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_dotbelow.glif index 25d80735..80d523ed 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_linebelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_linebelow.glif index 63962fbf..bd0305ba 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_macrondotbelow.glif index 7b36ca7c..46f52ef0 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_macrondotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/R_macrondotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/S_acute.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/S_acute.glif index 60f62fd0..c0a45dc1 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/S_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/S_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/S_caron.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/S_caron.glif index 2316cd02..007a94c3 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/S_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/S_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/S_circumflex.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/S_circumflex.glif index da006ce6..8bdf98cb 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/S_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/S_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/S_commaaccent.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/S_commaaccent.glif index c34d7849..9631155b 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/S_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/S_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/S_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/S_dotbelow.glif index 81da5be7..b34e3d0b 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/S_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/S_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/T_caron.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/T_caron.glif index 8601d63e..23d20008 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/T_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/T_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/T_circumflexbelow.glif index 8408b0fc..04e62723 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/T_circumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/T_circumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/T_commaaccent.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/T_commaaccent.glif index f6a0d2b9..8efd5833 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/T_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/T_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/T_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/T_dotbelow.glif index eb1d86db..3d102e5d 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/T_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/T_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/T_linebelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/T_linebelow.glif index ec706e83..7c07de34 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/T_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/T_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_acute.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_acute.glif index 699b86c5..b0b6e168 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_breve.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_breve.glif index 84b2f57e..9eba3d7f 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_breve.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_breve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_caron.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_caron.glif index 5262e314..be0f3c37 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_circumflex.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_circumflex.glif index ca6250bc..56808f64 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dieresis.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dieresis.glif index 90fdbd07..c558bf10 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dieresisacute.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dieresisacute.glif index f02c4dd4..e5cbbe3c 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dieresisacute.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dieresisacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dieresiscaron.glif index dd6e65f6..dc2ff1ac 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dieresiscaron.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dieresiscaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dieresisgrave.glif index 8923d6b3..b227a449 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dieresisgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dieresisgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dieresismacron.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dieresismacron.glif index 402a3184..3d8c49b3 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dieresismacron.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dieresismacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dotbelow.glif index 52acf8a9..d2f0ef86 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_grave.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_grave.glif index 94988506..debff763 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_grave.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_hookabove.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_hookabove.glif index 3ad554df..fccb10eb 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_horn.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_horn.glif index b1d6362c..564daf22 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_horn.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_horn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_hornacute.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_hornacute.glif index 2790a00b..7e948009 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_hornacute.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_hornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_horndotbelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_horndotbelow.glif index 01d51edb..eb199a1c 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_horndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_horndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_horngrave.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_horngrave.glif index ba862ad5..e2fae54b 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_horngrave.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_horngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_hornhookabove.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_hornhookabove.glif index 9f80ac8b..fd1cf394 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_hornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_hornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_horntilde.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_horntilde.glif index b8cfe8f7..a348994a 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_horntilde.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_horntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_hungarumlaut.glif index 8e6b258f..f97071b4 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_hungarumlaut.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_hungarumlaut.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_macron.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_macron.glif index 44534a2b..f40fd627 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_macron.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_ring.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_ring.glif index 46254435..f5aa731d 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_ring.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_ring.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_tilde.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_tilde.glif index 756b63b8..7a348d5c 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/U_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/V_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/V_dotbelow.glif index 076ccd14..5d1df2c8 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/V_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/V_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/W_acute.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/W_acute.glif index 3844aaff..e279689d 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/W_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/W_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/W_circumflex.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/W_circumflex.glif index ccd6c067..0593fed6 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/W_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/W_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/W_dieresis.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/W_dieresis.glif index 3c58443f..a513fa2d 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/W_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/W_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/W_grave.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/W_grave.glif index aa72974e..b7532bf3 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/W_grave.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/W_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/X_dieresis.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/X_dieresis.glif index f7bf42f5..58ed5e6a 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/X_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/X_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_acute.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_acute.glif index 38a3f289..74e61a54 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_circumflex.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_circumflex.glif index 313bb9ce..ecf45d8f 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_dieresis.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_dieresis.glif index 5efaa8a9..0b114b1a 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_dotaccent.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_dotaccent.glif index 7e4cf939..8f57c05a 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_dotbelow.glif index a8509f2e..f4686c7e 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_grave.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_grave.glif index 4068aa90..87c0c47b 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_grave.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_hookabove.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_hookabove.glif index b2392c55..3f2fa69c 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_macron.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_macron.glif index 148341cb..7f35ee7e 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_macron.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_tilde.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_tilde.glif index 52c46716..c6cae026 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Y_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_acute.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_acute.glif index f416b598..e3464c24 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_caron.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_caron.glif index 7d4fe0b7..c9a20969 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_circumflex.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_circumflex.glif index 62380acb..4c083cad 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_dotaccent.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_dotaccent.glif index 52ce099f..d0ded8cb 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_dotbelow.glif index fb938b44..7cbeea3c 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_linebelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_linebelow.glif index 2dba5060..015a9488 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/Z_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/aacute.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/aacute.glif index f6573df5..57a3ebdd 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/aacute.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/aacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abreve.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abreve.glif index 02e53ea4..ab366a79 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abreve.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abreveacute.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abreveacute.glif index b2b2c7cc..87a5d745 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abreveacute.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abreveacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abrevedotbelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abrevedotbelow.glif index 31feffa1..73c6c281 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abrevedotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abrevedotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abrevegrave.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abrevegrave.glif index 0b516cd3..8d80d07c 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abrevegrave.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abrevegrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abrevehookabove.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abrevehookabove.glif index e0819de4..e7c47816 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abrevehookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abrevehookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abrevetilde.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abrevetilde.glif index 6fd97766..41d76812 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abrevetilde.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/abrevetilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acaron.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acaron.glif index 31b53f55..30a6de80 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acaron.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflex.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflex.glif index de66a27e..d5c74b4d 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflexacute.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflexacute.glif index fd6f25d4..79112c13 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflexdotbelow.glif index 7bfb1ee3..742f65b6 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflexgrave.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflexgrave.glif index 75102a1d..f7a4c3fb 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflexhookabove.glif index 7ae6aed3..da81cb05 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflextilde.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflextilde.glif index bdbc65e1..eb124666 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/acircumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/adieresis.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/adieresis.glif index dfe7404b..bed7e43b 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/adieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/adieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/adotaccent.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/adotaccent.glif index 6f446d25..06094c3a 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/adotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/adotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/adotbelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/adotbelow.glif index db3c3593..b2231476 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/adotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/adotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/agrave.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/agrave.glif index 85189c35..2ac33570 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/agrave.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/agrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ahookabove.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ahookabove.glif index f7d4c265..a5d10857 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ahookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ahookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/amacron.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/amacron.glif index c7158ed7..bd3b5c7b 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/amacron.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/amacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ampersand_ampersand.liga.glif new file mode 100644 index 00000000..e6425e97 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ampersand_ampersand.liga.glif @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/aring.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/aring.glif index c12007b6..9f992e9e 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/aring.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/aring.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asciicircum_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asciicircum_equal.liga.glif new file mode 100644 index 00000000..a2a163fb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asciicircum_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..940ba462 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asciitilde_asciitilde.liga.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asciitilde_asciitilde_greater.glif new file mode 100644 index 00000000..a9d71415 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asciitilde_asciitilde_greater.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asciitilde_at.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asciitilde_at.liga.glif new file mode 100644 index 00000000..6094c74b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asciitilde_at.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asciitilde_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asciitilde_greater.liga.glif new file mode 100644 index 00000000..79075736 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asciitilde_greater.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asciitilde_hyphen.liga.glif new file mode 100644 index 00000000..7f966b04 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asciitilde_hyphen.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asterisk_asterisk.liga.glif new file mode 100644 index 00000000..81c64581 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asterisk_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif new file mode 100644 index 00000000..eb2d054c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asterisk_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asterisk_greater.liga.glif new file mode 100644 index 00000000..bf9e6a9c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asterisk_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asterisk_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asterisk_slash.liga.glif new file mode 100644 index 00000000..1536beb0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/asterisk_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/atilde.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/atilde.glif index ef4c8ca0..08043abb 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/atilde.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/atilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/backslash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/backslash_slash.liga.glif new file mode 100644 index 00000000..e5f01532 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/backslash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar.liga.glif new file mode 100644 index 00000000..6e09a289 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_bar.liga.glif new file mode 100644 index 00000000..dc1b5564 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_bar.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_bar_greater.liga.glif new file mode 100644 index 00000000..32c873b9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_bar_greater.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_equal.liga.glif new file mode 100644 index 00000000..f1b68bf3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_equal.start.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_equal.start.glif new file mode 100644 index 00000000..47b41248 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_greater.liga.glif new file mode 100644 index 00000000..1a461b34 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_greater.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_hyphen.liga.glif new file mode 100644 index 00000000..9263884f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_hyphen.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_hyphen.start.glif new file mode 100644 index 00000000..208a0a07 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bar_hyphen.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_braceright.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_braceright.liga.glif new file mode 100644 index 00000000..550f909d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_braceright.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bracketright.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bracketright.liga.glif new file mode 100644 index 00000000..d3b9df35 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_bracketright.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_equal.liga.glif new file mode 100644 index 00000000..0a98e61c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_equal.start.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_equal.start.glif new file mode 100644 index 00000000..be4d4663 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_greater.liga.glif new file mode 100644 index 00000000..9b2663c5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_hyphen.liga.glif new file mode 100644 index 00000000..7b6589a9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_hyphen.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_hyphen.start.glif new file mode 100644 index 00000000..982a83e2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bar_hyphen.start.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/blinebelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/blinebelow.glif index 772e7ebb..9d46e0c7 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/blinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/blinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/braceleft_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/braceleft_bar.liga.glif new file mode 100644 index 00000000..27632ba9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/braceleft_bar.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bracketleft_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bracketleft_bar.liga.glif new file mode 100644 index 00000000..85544ed2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bracketleft_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bracketright_numbersign.liga.glif new file mode 100644 index 00000000..13987689 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/bracketright_numbersign.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/breveacute.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/breveacute.glif index 9bbef790..27d21cb1 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/breveacute.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/breveacute.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/brevegrave.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/brevegrave.glif index 1b893449..c6f56731 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/brevegrave.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/brevegrave.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/brevehook.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/brevehook.glif index 39034639..be3e6e28 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/brevehook.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/brevehook.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/brevetilde.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/brevetilde.glif index dd16b801..2d808992 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/brevetilde.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/brevetilde.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/cacute.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/cacute.glif index 0c311e97..7ecfedec 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/cacute.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/cacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ccaron.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ccaron.glif index ca2f9dd4..fd65d4b8 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ccaron.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ccaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ccircumflex.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ccircumflex.glif index 38b7f65e..03f4ceb2 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ccircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ccircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/cdotaccent.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/cdotaccent.glif index 579f4c36..3c72ca25 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/cdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/cdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/circumflexacute.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/circumflexacute.glif index 778e8e6a..7d63ab6d 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/circumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/circumflexacute.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/circumflexgrave.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/circumflexgrave.glif index 64d876b8..ac5ec7d3 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/circumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/circumflexgrave.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/circumflexhook.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/circumflexhook.glif index 8fda4005..a9616f2e 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/circumflexhook.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/circumflexhook.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/circumflextilde.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/circumflextilde.glif index 8a50a3cc..bc5df520 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/circumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/circumflextilde.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/colon_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/colon_colon.liga.glif new file mode 100644 index 00000000..ace4265b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/colon_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/colon_colon_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/colon_colon_colon.liga.glif new file mode 100644 index 00000000..d9d24432 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/colon_colon_colon.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/colon_colon_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/colon_colon_equal.liga.glif new file mode 100644 index 00000000..9847b3fc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/colon_colon_equal.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/colon_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/colon_equal.liga.glif new file mode 100644 index 00000000..5ed522cd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/colon_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/colon_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/colon_greater.liga.glif new file mode 100644 index 00000000..7acd91be --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/colon_greater.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/colon_less.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/colon_less.liga.glif new file mode 100644 index 00000000..94ec3c8d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/colon_less.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/commaturnedabovecmb.glif index e48cad73..d6998f6e 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/commaturnedabovecmb.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/commaturnedabovecmb.glif @@ -1,6 +1,5 @@ - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/contents.plist b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/contents.plist index 9b3fa25c..10a2ded8 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/contents.plist +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/contents.plist @@ -498,6 +498,8 @@ amacron.glif ampersand ampersand.glif + ampersand_ampersand.liga + ampersand_ampersand.liga.glif aogonek aogonek.glif apostrophemod @@ -508,10 +510,30 @@ aring.glif asciicircum asciicircum.glif + asciicircum_equal.liga + asciicircum_equal.liga.glif asciitilde asciitilde.glif + asciitilde_asciitilde.liga + asciitilde_asciitilde.liga.glif + asciitilde_asciitilde_greater + asciitilde_asciitilde_greater.glif + asciitilde_at.liga + asciitilde_at.liga.glif + asciitilde_greater.liga + asciitilde_greater.liga.glif + asciitilde_hyphen.liga + asciitilde_hyphen.liga.glif asterisk asterisk.glif + asterisk_asterisk.liga + asterisk_asterisk.liga.glif + asterisk_asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga.glif + asterisk_greater.liga + asterisk_greater.liga.glif + asterisk_slash.liga + asterisk_slash.liga.glif at at.glif atilde @@ -520,20 +542,58 @@ b.glif backslash backslash.glif + backslash_slash.liga + backslash_slash.liga.glif bahtthai bahtthai.glif bar bar.glif + bar_bar.liga + bar_bar.liga.glif + bar_bar_bar.liga + bar_bar_bar.liga.glif + bar_bar_bar_greater.liga + bar_bar_bar_greater.liga.glif + bar_bar_equal.liga + bar_bar_equal.liga.glif + bar_bar_equal.start + bar_bar_equal.start.glif + bar_bar_greater.liga + bar_bar_greater.liga.glif + bar_bar_hyphen.liga + bar_bar_hyphen.liga.glif + bar_bar_hyphen.start + bar_bar_hyphen.start.glif + bar_braceright.liga + bar_braceright.liga.glif + bar_bracketright.liga + bar_bracketright.liga.glif + bar_equal.liga + bar_equal.liga.glif + bar_equal.start + bar_equal.start.glif + bar_greater.liga + bar_greater.liga.glif + bar_hyphen.liga + bar_hyphen.liga.glif + bar_hyphen.start + bar_hyphen.start.glif blinebelow blinebelow.glif braceleft braceleft.glif + braceleft_bar.liga + braceleft_bar.liga.glif braceright braceright.glif bracketleft bracketleft.glif + bracketleft_bar.liga + bracketleft_bar.liga.glif bracketright bracketright.glif + bracketright_numbersign.liga + bracketright_numbersign.liga.glif breve breve.glif breveacute @@ -612,6 +672,18 @@ colon.glif colon.fig colon.fig.glif + colon_colon.liga + colon_colon.liga.glif + colon_colon_colon.liga + colon_colon_colon.liga.glif + colon_colon_equal.liga + colon_colon_equal.liga.glif + colon_equal.liga + colon_equal.liga.glif + colon_greater.liga + colon_greater.liga.glif + colon_less.liga + colon_less.liga.glif comma comma.glif commaaboverightcmb @@ -628,8 +700,32 @@ dagger.glif daggerdbl daggerdbl.glif + darkshade + darkshade.glif + dbldnhorzbxd + dbldnhorzbxd.glif + dbldnleftbxd + dbldnleftbxd.glif + dbldnrightbxd + dbldnrightbxd.glif + dblhorzbxd + dblhorzbxd.glif dblprimemod dblprimemod.glif + dbluphorzbxd + dbluphorzbxd.glif + dblupleftbxd + dblupleftbxd.glif + dbluprightbxd + dbluprightbxd.glif + dblvertbxd + dblvertbxd.glif + dblverthorzbxd + dblverthorzbxd.glif + dblvertleftbxd + dblvertleftbxd.glif + dblvertrightbxd + dblvertrightbxd.glif dcaron dcaron.glif dcircumflexbelow @@ -668,8 +764,64 @@ divide.glif dlinebelow dlinebelow.glif + dndblhorzsngbxd + dndblhorzsngbxd.glif + dndblleftsngbxd + dndblleftsngbxd.glif + dndblrightsngbxd + dndblrightsngbxd.glif + dneighthblock + dneighthblock.glif + dnfiveeighthsblock + dnfiveeighthsblock.glif + dnhalfblock + dnhalfblock.glif + dnheavyhorzlightbxd + dnheavyhorzlightbxd.glif + dnheavyleftlightbxd + dnheavyleftlightbxd.glif + dnheavyleftuplightbxd + dnheavyleftuplightbxd.glif + dnheavyrightlightbxd + dnheavyrightlightbxd.glif + dnheavyrightuplightbxd + dnheavyrightuplightbxd.glif + dnheavyuphorzlightbxd + dnheavyuphorzlightbxd.glif + dnleftquadrant + dnleftquadrant.glif + dnlighthorzheavybxd + dnlighthorzheavybxd.glif + dnlightleftheavybxd + dnlightleftheavybxd.glif + dnlightleftupheavybxd + dnlightleftupheavybxd.glif + dnlightrightheavybxd + dnlightrightheavybxd.glif + dnlightrightupheavybxd + dnlightrightupheavybxd.glif + dnlightuphorzheavybxd + dnlightuphorzheavybxd.glif + dnquarterblock + dnquarterblock.glif + dnrightquadrant + dnrightquadrant.glif + dnseveneighthsblock + dnseveneighthsblock.glif + dnsnghorzdblbxd + dnsnghorzdblbxd.glif + dnsngleftdblbxd + dnsngleftdblbxd.glif + dnsngrightdblbxd + dnsngrightdblbxd.glif + dnthreeeighthsblock + dnthreeeighthsblock.glif + dnthreequartersblock + dnthreequartersblock.glif dollar dollar.glif + dollar_greater.liga + dollar_greater.liga.glif dong dong.glif dotaccent @@ -738,12 +890,86 @@ eogonek.glif equal equal.glif + equal.end + equal.end.glif + equal.middle + equal.middle.glif + equal.start + equal.start.glif + equal_asciitilde.liga + equal_asciitilde.liga.glif + equal_bar.end + equal_bar.end.glif + equal_bar.liga + equal_bar.liga.glif + equal_bar_bar.end + equal_bar_bar.end.glif + equal_bar_bar.liga + equal_bar_bar.liga.glif + equal_bar_bar_equal.middle + equal_bar_bar_equal.middle.glif + equal_bar_equal.middle + equal_bar_equal.middle.glif + equal_colon_equal.middle + equal_colon_equal.middle.glif + equal_equal.liga + equal_equal.liga.glif + equal_equal_equal.liga + equal_equal_equal.liga.glif + equal_exclam_equal.middle + equal_exclam_equal.middle.glif + equal_greater.end + equal_greater.end.glif + equal_greater.liga + equal_greater.liga.glif + equal_greater_equal.middle + equal_greater_equal.middle.glif + equal_greater_greater.end + equal_greater_greater.end.glif + equal_greater_greater.liga + equal_greater_greater.liga.glif + equal_greater_greater_equal.m + equal_greater_greater_equal.m.glif + equal_less.end + equal_less.end.glif + equal_less.liga + equal_less.liga.glif + equal_less_equal.middle + equal_less_equal.middle.glif + equal_less_less.end + equal_less_less.end.glif + equal_less_less.liga + equal_less_less.liga.glif + equal_less_less_equal.middle + equal_less_less_equal.middle.glif + equal_slash.end + equal_slash.end.glif + equal_slash.liga + equal_slash.liga.glif + equal_slash_equal.middle + equal_slash_equal.middle.glif + equal_slash_slash.end + equal_slash_slash.end.glif + equal_slash_slash.liga + equal_slash_slash.liga.glif + equal_slash_slash_equal.middle + equal_slash_slash_equal.middle.glif eth eth.glif etilde etilde.glif exclam exclam.glif + exclam_asciitilde.liga + exclam_asciitilde.liga.glif + exclam_equal.liga + exclam_equal.liga.glif + exclam_equal_equal.liga + exclam_equal_equal.liga.glif + exclam_exclam.liga + exclam_exclam.liga.glif + exclam_exclam_period.liga + exclam_exclam_period.liga.glif exclamdown exclamdown.glif f @@ -778,6 +1004,8 @@ fracbar.glif fraction fraction.glif + fullblock + fullblock.glif g g.glif gbreve @@ -802,6 +1030,34 @@ gravecmb.cap.glif greater greater.glif + greater_colon.liga + greater_colon.liga.glif + greater_equal + greater_equal.glif + greater_equal.liga + greater_equal.liga.glif + greater_equal.start + greater_equal.start.glif + greater_equal_greater.liga + greater_equal_greater.liga.glif + greater_greater.liga + greater_greater.liga.glif + greater_greater_equal.liga + greater_greater_equal.liga.glif + greater_greater_equal.start + greater_greater_equal.start.glif + greater_greater_greater.liga + greater_greater_greater.liga.glif + greater_greater_hyphen.liga + greater_greater_hyphen.liga.glif + greater_greater_hyphen.start + greater_greater_hyphen.start.glif + greater_hyphen.liga + greater_hyphen.liga.glif + greater_hyphen.start + greater_hyphen.start.glif + greater_hyphen_greater.liga + greater_hyphen_greater.liga.glif greaterequal greaterequal.glif guillemetleft @@ -824,6 +1080,52 @@ hcircumflex.glif hdotbelow hdotbelow.glif + heavydbldashhorzbxd + heavydbldashhorzbxd.glif + heavydbldashvertbxd + heavydbldashvertbxd.glif + heavydnbxd + heavydnbxd.glif + heavydnhorzbxd + heavydnhorzbxd.glif + heavydnleftbxd + heavydnleftbxd.glif + heavydnrightbxd + heavydnrightbxd.glif + heavyhorzbxd + heavyhorzbxd.glif + heavyleftbxd + heavyleftbxd.glif + heavyleftlightrightbxd + heavyleftlightrightbxd.glif + heavyquaddashhorzbxd + heavyquaddashhorzbxd.glif + heavyquaddashvertbxd + heavyquaddashvertbxd.glif + heavyrightbxd + heavyrightbxd.glif + heavytrpldashhorzbxd + heavytrpldashhorzbxd.glif + heavytrpldashvertbxd + heavytrpldashvertbxd.glif + heavyupbxd + heavyupbxd.glif + heavyuphorzbxd + heavyuphorzbxd.glif + heavyupleftbxd + heavyupleftbxd.glif + heavyuplightdnbxd + heavyuplightdnbxd.glif + heavyuprightbxd + heavyuprightbxd.glif + heavyvertbxd + heavyvertbxd.glif + heavyverthorzbxd + heavyverthorzbxd.glif + heavyvertleftbxd + heavyvertleftbxd.glif + heavyvertrightbxd + heavyvertrightbxd.glif hlinebelow hlinebelow.glif hookcmb @@ -840,6 +1142,54 @@ hungarumlautcmb.cap.glif hyphen hyphen.glif + hyphen.end + hyphen.end.glif + hyphen.middle + hyphen.middle.glif + hyphen.start + hyphen.start.glif + hyphen_asciitilde.liga + hyphen_asciitilde.liga.glif + hyphen_bar.end + hyphen_bar.end.glif + hyphen_bar.liga + hyphen_bar.liga.glif + hyphen_bar_bar.end + hyphen_bar_bar.end.glif + hyphen_bar_bar.liga + hyphen_bar_bar.liga.glif + hyphen_bar_bar_hyphen.middle + hyphen_bar_bar_hyphen.middle.glif + hyphen_bar_hyphen.middle + hyphen_bar_hyphen.middle.glif + hyphen_greater.end + hyphen_greater.end.glif + hyphen_greater.liga + hyphen_greater.liga.glif + hyphen_greater_greater.end + hyphen_greater_greater.end.glif + hyphen_greater_greater.liga + hyphen_greater_greater.liga.glif + hyphen_greater_greater_hyphen.m + hyphen_greater_greater_hyphen.m.glif + hyphen_greater_hyphen.middle + hyphen_greater_hyphen.middle.glif + hyphen_hyphen.liga + hyphen_hyphen.liga.glif + hyphen_hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga.glif + hyphen_less.end + hyphen_less.end.glif + hyphen_less.liga + hyphen_less.liga.glif + hyphen_less_hyphen.middle + hyphen_less_hyphen.middle.glif + hyphen_less_less.end + hyphen_less_less.end.glif + hyphen_less_less.liga + hyphen_less_less.liga.glif + hyphen_less_less_hyphen.middle + hyphen_less_less_hyphen.middle.glif i i.glif iacute @@ -894,10 +1244,170 @@ lcommaaccent.glif ldotbelow ldotbelow.glif + leftdnheavyrightuplightbxd + leftdnheavyrightuplightbxd.glif + lefteighthblock + lefteighthblock.glif + leftfiveeighthsblock + leftfiveeighthsblock.glif + lefthalfblock + lefthalfblock.glif + leftheavyrightdnlightbxd + leftheavyrightdnlightbxd.glif + leftheavyrightuplightbxd + leftheavyrightuplightbxd.glif + leftheavyrightvertlightbxd + leftheavyrightvertlightbxd.glif + leftlightrightdnheavybxd + leftlightrightdnheavybxd.glif + leftlightrightupheavybxd + leftlightrightupheavybxd.glif + leftlightrightvertheavybxd + leftlightrightvertheavybxd.glif + leftquarterblock + leftquarterblock.glif + leftseveneighthsblock + leftseveneighthsblock.glif + leftthreeeighthsblock + leftthreeeighthsblock.glif + leftthreequartersblock + leftthreequartersblock.glif + leftupheavyrightdnlightbxd + leftupheavyrightdnlightbxd.glif less less.glif + less_asciitilde.liga + less_asciitilde.liga.glif + less_asciitilde_asciitilde.liga + less_asciitilde_asciitilde.liga.glif + less_asciitilde_greater.liga + less_asciitilde_greater.liga.glif + less_asterisk.liga + less_asterisk.liga.glif + less_asterisk_greater.liga + less_asterisk_greater.liga.glif + less_bar.liga + less_bar.liga.glif + less_bar_bar.liga + less_bar_bar.liga.glif + less_bar_bar_bar.liga + less_bar_bar_bar.liga.glif + less_bar_greater.liga + less_bar_greater.liga.glif + less_colon.liga + less_colon.liga.glif + less_dollar.liga + less_dollar.liga.glif + less_dollar_greater.liga + less_dollar_greater.liga.glif + less_equal + less_equal.glif + less_equal.liga + less_equal.liga.glif + less_equal.start + less_equal.start.glif + less_equal_greater.liga + less_equal_greater.liga.glif + less_equal_less.liga + less_equal_less.liga.glif + less_exclam_hyphen_hyphen.liga + less_exclam_hyphen_hyphen.liga.glif + less_greater.liga + less_greater.liga.glif + less_hyphen.liga + less_hyphen.liga.glif + less_hyphen.start + less_hyphen.start.glif + less_hyphen_greater.liga + less_hyphen_greater.liga.glif + less_hyphen_less.liga + less_hyphen_less.liga.glif + less_less.liga + less_less.liga.glif + less_less_equal.liga + less_less_equal.liga.glif + less_less_equal.start + less_less_equal.start.glif + less_less_hyphen.liga + less_less_hyphen.liga.glif + less_less_hyphen.start + less_less_hyphen.start.glif + less_less_less.liga + less_less_less.liga.glif + less_plus.liga + less_plus.liga.glif + less_plus_greater.liga + less_plus_greater.liga.glif + less_slash.liga + less_slash.liga.glif + less_slash_greater.liga + less_slash_greater.liga.glif lessequal lessequal.glif + lightarcdnleftbxd + lightarcdnleftbxd.glif + lightarcdnrightbxd + lightarcdnrightbxd.glif + lightarcupleftbxd + lightarcupleftbxd.glif + lightarcuprightbxd + lightarcuprightbxd.glif + lightdbldashhorzbxd + lightdbldashhorzbxd.glif + lightdbldashvertbxd + lightdbldashvertbxd.glif + lightdiagcrossbxd + lightdiagcrossbxd.glif + lightdiagupleftdnrightbxd + lightdiagupleftdnrightbxd.glif + lightdiaguprightdnleftbxd + lightdiaguprightdnleftbxd.glif + lightdnbxd + lightdnbxd.glif + lightdnhorzbxd + lightdnhorzbxd.glif + lightdnleftbxd + lightdnleftbxd.glif + lightdnrightbxd + lightdnrightbxd.glif + lighthorzbxd + lighthorzbxd.glif + lightleftbxd + lightleftbxd.glif + lightleftheavyrightbxd + lightleftheavyrightbxd.glif + lightquaddashhorzbxd + lightquaddashhorzbxd.glif + lightquaddashvertbxd + lightquaddashvertbxd.glif + lightrightbxd + lightrightbxd.glif + lightshade + lightshade.glif + lighttrpldashhorzbxd + lighttrpldashhorzbxd.glif + lighttrpldashvertbxd + lighttrpldashvertbxd.glif + lightupbxd + lightupbxd.glif + lightupheavydnbxd + lightupheavydnbxd.glif + lightuphorzbxd + lightuphorzbxd.glif + lightupleftbxd + lightupleftbxd.glif + lightuprightbxd + lightuprightbxd.glif + lightvertbxd + lightvertbxd.glif + lightverthorzbxd + lightverthorzbxd.glif + lightvertleftbxd + lightvertleftbxd.glif + lightvertrightbxd + lightvertrightbxd.glif + ligspacer + ligspacer.glif llinebelow llinebelow.glif lmacrondotbelow @@ -922,6 +1432,8 @@ mdotaccent.glif mdotbelow mdotbelow.glif + mediumshade + mediumshade.glif middotcat middotcat.glif middotcat.cap @@ -968,6 +1480,30 @@ ntilde.glif numbersign numbersign.glif + numbersign.end + numbersign.end.glif + numbersign.middle + numbersign.middle.glif + numbersign.start + numbersign.start.glif + numbersign_braceleft.liga + numbersign_braceleft.liga.glif + numbersign_bracketleft.liga + numbersign_bracketleft.liga.glif + numbersign_colon.liga + numbersign_colon.liga.glif + numbersign_equal.liga + numbersign_equal.liga.glif + numbersign_exclam.liga + numbersign_exclam.liga.glif + numbersign_parenleft.liga + numbersign_parenleft.liga.glif + numbersign_question.liga + numbersign_question.liga.glif + numbersign_underscore.liga + numbersign_underscore.liga.glif + numbersign_underscore_parenleft + numbersign_underscore_parenleft.glif o o.glif oacute @@ -1062,14 +1598,36 @@ parenright.glif percent percent.glif + percent_percent.liga + percent_percent.liga.glif period period.glif + period_equal.liga + period_equal.liga.glif + period_hyphen.liga + period_hyphen.liga.glif + period_period.liga + period_period.liga.glif + period_period_equal.liga + period_period_equal.liga.glif + period_period_less.liga + period_period_less.liga.glif + period_period_period.liga + period_period_period.liga.glif + period_question.liga + period_question.liga.glif periodcentered periodcentered.glif peso peso.glif plus plus.glif + plus_greater.liga + plus_greater.liga.glif + plus_plus.liga + plus_plus.liga.glif + plus_plus_plus.liga + plus_plus_plus.liga.glif plusminus plusminus.glif primemod @@ -1080,6 +1638,14 @@ q.glif question question.glif + question_colon.liga + question_colon.liga.glif + question_equal.liga + question_equal.liga.glif + question_period.liga + question_period.liga.glif + question_question.liga + question_question.liga.glif questiondown questiondown.glif quotedbl @@ -1112,6 +1678,26 @@ rdotbelow.glif registered registered.glif + rightdnheavyleftuplightbxd + rightdnheavyleftuplightbxd.glif + righteighthblock + righteighthblock.glif + righthalfblock + righthalfblock.glif + rightheavyleftdnlightbxd + rightheavyleftdnlightbxd.glif + rightheavyleftuplightbxd + rightheavyleftuplightbxd.glif + rightheavyleftvertlightbxd + rightheavyleftvertlightbxd.glif + rightlightleftdnheavybxd + rightlightleftdnheavybxd.glif + rightlightleftupheavybxd + rightlightleftupheavybxd.glif + rightlightleftvertheavybxd + rightlightleftvertheavybxd.glif + rightupheavyleftdnlightbxd + rightupheavyleftdnlightbxd.glif ring ring.glif ringcmb @@ -1146,6 +1732,8 @@ section.glif semicolon semicolon.glif + semicolon_semicolon.liga + semicolon_semicolon.liga.glif servicemark servicemark.glif seven @@ -1172,6 +1760,24 @@ six.sup.glif slash slash.glif + slash_asterisk.liga + slash_asterisk.liga.glif + slash_backslash.liga + slash_backslash.liga.glif + slash_equal.liga + slash_equal.liga.glif + slash_equal.start + slash_equal.start.glif + slash_greater.liga + slash_greater.liga.glif + slash_slash.liga + slash_slash.liga.glif + slash_slash_equal.liga + slash_slash_equal.liga.glif + slash_slash_equal.start + slash_slash_equal.start.glif + slash_slash_slash.liga + slash_slash_slash.liga.glif space space.glif sterling @@ -1278,6 +1884,14 @@ umacron.glif underscore underscore.glif + underscore.end + underscore.end.glif + underscore.middle + underscore.middle.glif + underscore.start + underscore.start.glif + underscore_bar_underscore.m + underscore_bar_underscore.m.glif uni00A0 uni00A_0.glif uni0326 @@ -1292,10 +1906,88 @@ uni20B_A_.glif uni20BD uni20B_D_.glif + uni2610 + uni2610.glif + uni2611 + uni2611.glif + uni2612 + uni2612.glif + uni2713 + uni2713.glif uniA788 uniA_788.glif + uniE0A0 + uniE_0A_0.glif + uniE0A1 + uniE_0A_1.glif + uniE0A2 + uniE_0A_2.glif + uniE0B0 + uniE_0B_0.glif + uniE0B1 + uniE_0B_1.glif + uniE0B2 + uniE_0B_2.glif + uniE0B3 + uniE_0B_3.glif uogonek uogonek.glif + updblhorzsngbxd + updblhorzsngbxd.glif + updblleftsngbxd + updblleftsngbxd.glif + updblrightsngbxd + updblrightsngbxd.glif + upeighthblock + upeighthblock.glif + uphalfblock + uphalfblock.glif + upheavydnhorzlightbxd + upheavydnhorzlightbxd.glif + upheavyhorzlightbxd + upheavyhorzlightbxd.glif + upheavyleftdnlightbxd + upheavyleftdnlightbxd.glif + upheavyleftlightbxd + upheavyleftlightbxd.glif + upheavyrightdnlightbxd + upheavyrightdnlightbxd.glif + upheavyrightlightbxd + upheavyrightlightbxd.glif + upleftdnleftdnrightquadrant + upleftdnleftdnrightquadrant.glif + upleftdnrightquadrant + upleftdnrightquadrant.glif + upleftquadrant + upleftquadrant.glif + upleftuprightdnleftquadrant + upleftuprightdnleftquadrant.glif + upleftuprightdnrightquadrant + upleftuprightdnrightquadrant.glif + uplightdnhorzheavybxd + uplightdnhorzheavybxd.glif + uplighthorzheavybxd + uplighthorzheavybxd.glif + uplightleftdnheavybxd + uplightleftdnheavybxd.glif + uplightleftheavybxd + uplightleftheavybxd.glif + uplightrightdnheavybxd + uplightrightdnheavybxd.glif + uplightrightheavybxd + uplightrightheavybxd.glif + uprightdnleftdnrightquadrant + uprightdnleftdnrightquadrant.glif + uprightdnleftquadrant + uprightdnleftquadrant.glif + uprightquadrant + uprightquadrant.glif + upsnghorzdblbxd + upsnghorzdblbxd.glif + upsngleftdblbxd + upsngleftdblbxd.glif + upsngrightdblbxd + upsngrightdblbxd.glif uring uring.glif utilde @@ -1304,12 +1996,38 @@ v.glif vdotbelow vdotbelow.glif + vertdblhorzsngbxd + vertdblhorzsngbxd.glif + vertdblleftsngbxd + vertdblleftsngbxd.glif + vertdblrightsngbxd + vertdblrightsngbxd.glif + vertheavyhorzlightbxd + vertheavyhorzlightbxd.glif + vertheavyleftlightbxd + vertheavyleftlightbxd.glif + vertheavyrightlightbxd + vertheavyrightlightbxd.glif verticallinelowmod verticallinelowmod.glif verticallinemod verticallinemod.glif + vertlighthorzheavybxd + vertlighthorzheavybxd.glif + vertlightleftheavybxd + vertlightleftheavybxd.glif + vertlightrightheavybxd + vertlightrightheavybxd.glif + vertsnghorzdblbxd + vertsnghorzdblbxd.glif + vertsngleftdblbxd + vertsngleftdblbxd.glif + vertsngrightdblbxd + vertsngrightdblbxd.glif w w.glif + w_w_w.liga + w_w_w.liga.glif wacute wacute.glif wcircumflex diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/darkshade.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/darkshade.glif new file mode 100644 index 00000000..fd2eb1c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/darkshade.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dbldnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dbldnhorzbxd.glif new file mode 100644 index 00000000..f392a523 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dbldnhorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dbldnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dbldnleftbxd.glif new file mode 100644 index 00000000..cc38a9f8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dbldnleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dbldnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dbldnrightbxd.glif new file mode 100644 index 00000000..ed0943dc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dbldnrightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dblhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dblhorzbxd.glif new file mode 100644 index 00000000..7c8a7467 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dblhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dbluphorzbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dbluphorzbxd.glif new file mode 100644 index 00000000..9ddbe8a4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dbluphorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dblupleftbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dblupleftbxd.glif new file mode 100644 index 00000000..05e6856a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dblupleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dbluprightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dbluprightbxd.glif new file mode 100644 index 00000000..851e7180 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dbluprightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dblvertbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dblvertbxd.glif new file mode 100644 index 00000000..234700a0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dblvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dblverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dblverthorzbxd.glif new file mode 100644 index 00000000..291d92b3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dblverthorzbxd.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dblvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dblvertleftbxd.glif new file mode 100644 index 00000000..6e1c7540 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dblvertleftbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dblvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dblvertrightbxd.glif new file mode 100644 index 00000000..a285c627 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dblvertrightbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dcaron.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dcaron.glif index 9c174841..c55e5970 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dcircumflexbelow.glif index 7d2548e6..477cfcd7 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dcircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dcircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dcroat.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dcroat.glif index bb3d9d72..1dcbfd67 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dcroat.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dcroat.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ddotbelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ddotbelow.glif index b7d2f1c7..1f468297 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ddotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ddotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dieresisacute.cap.glif index 3dca717d..5fc2de0a 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dieresisacute.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dieresisacute.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dieresisbelowcmb.glif index c24f7629..a1dc414c 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dieresisbelowcmb.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dieresisbelowcmb.glif @@ -1,6 +1,5 @@ - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dieresiscaron.cap.glif index c77618c0..158037fb 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dieresiscaron.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dieresiscaron.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dieresisgrave.cap.glif index 47633131..9782d8f2 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dieresisgrave.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dieresisgrave.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dieresismacron.cap.glif index 4e10b885..0f56be71 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dieresismacron.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dieresismacron.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dlinebelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dlinebelow.glif index 295afde8..9f87d786 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dndblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dndblhorzsngbxd.glif new file mode 100644 index 00000000..dada8723 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dndblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dndblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dndblleftsngbxd.glif new file mode 100644 index 00000000..d0f7e013 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dndblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dndblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dndblrightsngbxd.glif new file mode 100644 index 00000000..eb75f406 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dndblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dneighthblock.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dneighthblock.glif new file mode 100644 index 00000000..ff791c74 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dneighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnfiveeighthsblock.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnfiveeighthsblock.glif new file mode 100644 index 00000000..99bd1498 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnhalfblock.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnhalfblock.glif new file mode 100644 index 00000000..001cf3fb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnhalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnheavyhorzlightbxd.glif new file mode 100644 index 00000000..5f76f358 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnheavyleftlightbxd.glif new file mode 100644 index 00000000..a3d9cb06 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnheavyleftuplightbxd.glif new file mode 100644 index 00000000..6c7093bd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnheavyrightlightbxd.glif new file mode 100644 index 00000000..27febfa0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnheavyrightuplightbxd.glif new file mode 100644 index 00000000..4eb2d1c5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnheavyuphorzlightbxd.glif new file mode 100644 index 00000000..9daf514c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnheavyuphorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnleftquadrant.glif new file mode 100644 index 00000000..42729338 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnlighthorzheavybxd.glif new file mode 100644 index 00000000..bc286b79 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnlighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnlightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnlightleftheavybxd.glif new file mode 100644 index 00000000..9bcc664a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnlightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnlightleftupheavybxd.glif new file mode 100644 index 00000000..fd8c2750 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnlightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnlightrightheavybxd.glif new file mode 100644 index 00000000..c00032e4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnlightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnlightrightupheavybxd.glif new file mode 100644 index 00000000..f526ec48 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnlightuphorzheavybxd.glif new file mode 100644 index 00000000..235ae3ed --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnlightuphorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnquarterblock.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnquarterblock.glif new file mode 100644 index 00000000..c2180b50 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnrightquadrant.glif new file mode 100644 index 00000000..9858382e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnrightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnseveneighthsblock.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnseveneighthsblock.glif new file mode 100644 index 00000000..ecdac3da --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnsnghorzdblbxd.glif new file mode 100644 index 00000000..44c02275 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnsngleftdblbxd.glif new file mode 100644 index 00000000..302a7c79 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnsngrightdblbxd.glif new file mode 100644 index 00000000..52aa043f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnthreeeighthsblock.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnthreeeighthsblock.glif new file mode 100644 index 00000000..7febe2aa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnthreequartersblock.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnthreequartersblock.glif new file mode 100644 index 00000000..a79dae14 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dnthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dollar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dollar_greater.liga.glif new file mode 100644 index 00000000..257a2ae1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/dollar_greater.liga.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/eacute.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/eacute.glif index 05052d4f..399df89f 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/eacute.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/eacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ebreve.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ebreve.glif index 401a167c..18c2ad77 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ebreve.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ebreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecaron.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecaron.glif index 146346b7..26eb285c 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecaron.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflex.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflex.glif index 4c4ebd44..0723a990 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflexacute.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflexacute.glif index c73308e9..51382999 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflexdotbelow.glif index 135ab1f2..fda6ff4c 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflexgrave.glif index 3acd09a9..742c551f 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflexhookabove.glif index a879a9eb..a91e0851 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflextilde.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflextilde.glif index 33e7d3d7..f2e14026 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ecircumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/edieresis.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/edieresis.glif index 7f72c7e6..48a77fa0 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/edieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/edieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/edotaccent.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/edotaccent.glif index bd7c0915..9f5a28c1 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/edotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/edotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/edotbelow.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/edotbelow.glif index f4689bda..a7a015f8 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/edotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/edotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/egrave.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/egrave.glif index 325d1a80..d1f3f1ca 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/egrave.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/egrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ehookabove.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ehookabove.glif index 09b25c91..5bd60e3f 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ehookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ehookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/emacron.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/emacron.glif index 4349a61b..85931f32 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/emacron.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/emacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/eogonek.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/eogonek.glif index 3a7d4e91..fe4437fa 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/eogonek.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/eogonek.glif @@ -2,8 +2,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal.end.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal.end.glif new file mode 100644 index 00000000..b06f53e9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal.middle.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal.middle.glif new file mode 100644 index 00000000..62a0fb30 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal.start.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal.start.glif new file mode 100644 index 00000000..013b768a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_asciitilde.liga.glif new file mode 100644 index 00000000..b018a652 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_asciitilde.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_bar.end.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_bar.end.glif new file mode 100644 index 00000000..e128774c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_bar.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_bar.liga.glif new file mode 100644 index 00000000..1c2173bf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_bar.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_bar_bar.end.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_bar_bar.end.glif new file mode 100644 index 00000000..1f49208f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_bar_bar.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_bar_bar.liga.glif new file mode 100644 index 00000000..5d69fcb2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_bar_bar.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_bar_bar_equal.middle.glif new file mode 100644 index 00000000..77ba60f5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_bar_bar_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_bar_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_bar_equal.middle.glif new file mode 100644 index 00000000..f2ded138 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_bar_equal.middle.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_colon_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_colon_equal.middle.glif new file mode 100644 index 00000000..ad4d396b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_colon_equal.middle.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_equal.liga.glif new file mode 100644 index 00000000..aba8974a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_equal.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_equal_equal.liga.glif new file mode 100644 index 00000000..1990858f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_equal_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_exclam_equal.middle.glif new file mode 100644 index 00000000..471d6a12 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_exclam_equal.middle.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_greater.end.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_greater.end.glif new file mode 100644 index 00000000..6008e591 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_greater.end.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_greater.liga.glif new file mode 100644 index 00000000..51cc1091 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_greater_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_greater_equal.middle.glif new file mode 100644 index 00000000..615bffea --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_greater_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_greater_greater.end.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_greater_greater.end.glif new file mode 100644 index 00000000..f32bc162 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_greater_greater.end.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_greater_greater.liga.glif new file mode 100644 index 00000000..0d33a52d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_greater_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_greater_greater_equal.m.glif new file mode 100644 index 00000000..324e80e6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_greater_greater_equal.m.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_less.end.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_less.end.glif new file mode 100644 index 00000000..70078504 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_less.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_less.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_less.liga.glif new file mode 100644 index 00000000..faf7c538 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_less.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_less_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_less_equal.middle.glif new file mode 100644 index 00000000..f6f63ab3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_less_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_less_less.end.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_less_less.end.glif new file mode 100644 index 00000000..37aad14a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_less_less.end.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_less_less.liga.glif new file mode 100644 index 00000000..6107df91 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_less_less.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_less_less_equal.middle.glif new file mode 100644 index 00000000..a425b3ec --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_less_less_equal.middle.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_slash.end.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_slash.end.glif new file mode 100644 index 00000000..feec5573 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_slash.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_slash.liga.glif new file mode 100644 index 00000000..2834137e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_slash.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_slash_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_slash_equal.middle.glif new file mode 100644 index 00000000..22910723 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_slash_equal.middle.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_slash_slash.end.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_slash_slash.end.glif new file mode 100644 index 00000000..cfc64cdd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_slash_slash.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_slash_slash.liga.glif new file mode 100644 index 00000000..70b2f92f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_slash_slash.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_slash_slash_equal.middle.glif new file mode 100644 index 00000000..3e2e1a5a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/equal_slash_slash_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/etilde.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/etilde.glif index 7eced16d..4270e672 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/etilde.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/etilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/exclam_asciitilde.liga.glif new file mode 100644 index 00000000..77842138 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/exclam_asciitilde.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/exclam_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/exclam_equal.liga.glif new file mode 100644 index 00000000..0f83ceb0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/exclam_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/exclam_equal_equal.liga.glif new file mode 100644 index 00000000..ee197eb9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/exclam_equal_equal.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/exclam_exclam.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/exclam_exclam.liga.glif new file mode 100644 index 00000000..92766d8a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/exclam_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/exclam_exclam_period.liga.glif new file mode 100644 index 00000000..782589da --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/exclam_exclam_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/fullblock.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/fullblock.glif new file mode 100644 index 00000000..2c547d1b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/fullblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gbreve.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gbreve.glif index f821610a..41cde11a 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gbreve.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gbreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gcaron.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gcaron.glif index d8f6e442..e1edadb9 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gcircumflex.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gcircumflex.glif index ce73169c..a57f065c 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gdotaccent.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gdotaccent.glif index c58243ae..430b6744 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gmacron.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gmacron.glif index 513e309b..a4322924 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gmacron.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gmacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gravecmb.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gravecmb.glif index e5289f02..3092653a 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gravecmb.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/gravecmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_colon.liga.glif new file mode 100644 index 00000000..1adf6fab --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_equal.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_equal.glif new file mode 100644 index 00000000..dadd5b8e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_equal.liga.glif new file mode 100644 index 00000000..39ed5c08 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_equal.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_equal.start.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_equal.start.glif new file mode 100644 index 00000000..c1b1ebf2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_equal.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_equal_greater.liga.glif new file mode 100644 index 00000000..b659c099 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_equal_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_greater.liga.glif new file mode 100644 index 00000000..c56c9ec0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_greater_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_greater_equal.liga.glif new file mode 100644 index 00000000..8f3a5ff2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_greater_equal.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_greater_equal.start.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_greater_equal.start.glif new file mode 100644 index 00000000..74dcc66c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_greater_equal.start.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_greater_greater.liga.glif new file mode 100644 index 00000000..4584a768 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_greater_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_greater_hyphen.liga.glif new file mode 100644 index 00000000..8ecf84d6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_greater_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_greater_hyphen.start.glif new file mode 100644 index 00000000..8d2934ad --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_greater_hyphen.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_hyphen.liga.glif new file mode 100644 index 00000000..498b1e67 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_hyphen.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_hyphen.start.glif new file mode 100644 index 00000000..49388ddd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_hyphen.start.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_hyphen_greater.liga.glif new file mode 100644 index 00000000..f720d26f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/greater_hyphen_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavydbldashhorzbxd.glif new file mode 100644 index 00000000..b28bd1b7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavydbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavydbldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavydbldashvertbxd.glif new file mode 100644 index 00000000..8b7ac4c8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavydbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavydnbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavydnbxd.glif new file mode 100644 index 00000000..dd069ef3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavydnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavydnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavydnhorzbxd.glif new file mode 100644 index 00000000..418b24f4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavydnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavydnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavydnleftbxd.glif new file mode 100644 index 00000000..25677143 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavydnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavydnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavydnrightbxd.glif new file mode 100644 index 00000000..a2a6c724 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavydnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyhorzbxd.glif new file mode 100644 index 00000000..eb7ed0e5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyhorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyleftbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyleftbxd.glif new file mode 100644 index 00000000..739d1d83 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyleftlightrightbxd.glif new file mode 100644 index 00000000..48b1cb1d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyleftlightrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyquaddashhorzbxd.glif new file mode 100644 index 00000000..6c22b67f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyquaddashvertbxd.glif new file mode 100644 index 00000000..331ba56b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyrightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyrightbxd.glif new file mode 100644 index 00000000..b7130c91 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavytrpldashhorzbxd.glif new file mode 100644 index 00000000..747cbde7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavytrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavytrpldashvertbxd.glif new file mode 100644 index 00000000..c6fca1c8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavytrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyupbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyupbxd.glif new file mode 100644 index 00000000..9b36718c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyuphorzbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyuphorzbxd.glif new file mode 100644 index 00000000..6e3464aa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyupleftbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyupleftbxd.glif new file mode 100644 index 00000000..4225ae29 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyuplightdnbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyuplightdnbxd.glif new file mode 100644 index 00000000..3eef537d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyuplightdnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyuprightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyuprightbxd.glif new file mode 100644 index 00000000..99f59eb1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyvertbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyvertbxd.glif new file mode 100644 index 00000000..dc66b40b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyverthorzbxd.glif new file mode 100644 index 00000000..6f8939b4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyvertleftbxd.glif new file mode 100644 index 00000000..f3a2fbc2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyvertrightbxd.glif new file mode 100644 index 00000000..cb87aa5d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/heavyvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hookcmb.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hookcmb.glif index c0e240b0..4538a530 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hookcmb.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hookcmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen.end.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen.end.glif new file mode 100644 index 00000000..b048dbfc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen.middle.glif new file mode 100644 index 00000000..51fdff35 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen.start.glif new file mode 100644 index 00000000..2fb33c1f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_asciitilde.liga.glif new file mode 100644 index 00000000..7dedd02b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_asciitilde.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_bar.end.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_bar.end.glif new file mode 100644 index 00000000..4925809c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_bar.end.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_bar.liga.glif new file mode 100644 index 00000000..8297eda8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_bar.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_bar.end.glif new file mode 100644 index 00000000..6425eeae --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_bar.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_bar.liga.glif new file mode 100644 index 00000000..4a2d3b31 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif new file mode 100644 index 00000000..965306ba --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_hyphen.middle.glif new file mode 100644 index 00000000..ff531178 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_greater.end.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_greater.end.glif new file mode 100644 index 00000000..08fd14a7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_greater.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_greater.liga.glif new file mode 100644 index 00000000..228ebadf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_greater.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_greater.end.glif new file mode 100644 index 00000000..0e363149 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_greater.end.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_greater.liga.glif new file mode 100644 index 00000000..33dea20b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif new file mode 100644 index 00000000..cfa6f334 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_hyphen.middle.glif new file mode 100644 index 00000000..171a9be9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_hyphen.liga.glif new file mode 100644 index 00000000..4c49ab56 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_hyphen.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..52fb755c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_less.end.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_less.end.glif new file mode 100644 index 00000000..0026defd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_less.end.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_less.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_less.liga.glif new file mode 100644 index 00000000..dd5b9226 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_less.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_less_hyphen.middle.glif new file mode 100644 index 00000000..8069b70a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_less_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_less_less.end.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_less_less.end.glif new file mode 100644 index 00000000..4b2467ab --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_less_less.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_less_less.liga.glif new file mode 100644 index 00000000..bde23465 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_less_less.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_less_less_hyphen.middle.glif new file mode 100644 index 00000000..4641d734 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/hyphen_less_less_hyphen.middle.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftdnheavyrightuplightbxd.glif new file mode 100644 index 00000000..a8f8305a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftdnheavyrightuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lefteighthblock.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lefteighthblock.glif new file mode 100644 index 00000000..8d44dad4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lefteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftfiveeighthsblock.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftfiveeighthsblock.glif new file mode 100644 index 00000000..0eb9ccfc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lefthalfblock.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lefthalfblock.glif new file mode 100644 index 00000000..325c05f6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lefthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftheavyrightdnlightbxd.glif new file mode 100644 index 00000000..86dcef33 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftheavyrightuplightbxd.glif new file mode 100644 index 00000000..e0b44888 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftheavyrightvertlightbxd.glif new file mode 100644 index 00000000..430b42ee --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftheavyrightvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftlightrightdnheavybxd.glif new file mode 100644 index 00000000..d9ea942f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftlightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftlightrightupheavybxd.glif new file mode 100644 index 00000000..166314ac --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftlightrightvertheavybxd.glif new file mode 100644 index 00000000..d46de732 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftlightrightvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftquarterblock.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftquarterblock.glif new file mode 100644 index 00000000..036dad83 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftseveneighthsblock.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftseveneighthsblock.glif new file mode 100644 index 00000000..74b69747 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftthreeeighthsblock.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftthreeeighthsblock.glif new file mode 100644 index 00000000..e5c4283a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftthreequartersblock.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftthreequartersblock.glif new file mode 100644 index 00000000..5ae5b2e3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftupheavyrightdnlightbxd.glif new file mode 100644 index 00000000..73a76f66 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/leftupheavyrightdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_asciitilde.liga.glif new file mode 100644 index 00000000..e7a5a6de --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_asciitilde.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..eab24300 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_asciitilde_asciitilde.liga.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_asciitilde_greater.liga.glif new file mode 100644 index 00000000..c2558919 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_asciitilde_greater.liga.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_asterisk.liga.glif new file mode 100644 index 00000000..44fa2796 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_asterisk_greater.liga.glif new file mode 100644 index 00000000..1699358e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_asterisk_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_bar.liga.glif new file mode 100644 index 00000000..e988c3d4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_bar.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_bar_bar.liga.glif new file mode 100644 index 00000000..28597e8b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_bar_bar.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_bar_bar_bar.liga.glif new file mode 100644 index 00000000..641581ec --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_bar_bar_bar.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_bar_greater.liga.glif new file mode 100644 index 00000000..51401733 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_bar_greater.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_colon.liga.glif new file mode 100644 index 00000000..888aa359 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_dollar.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_dollar.liga.glif new file mode 100644 index 00000000..02cbd612 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_dollar.liga.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_dollar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_dollar_greater.liga.glif new file mode 100644 index 00000000..9fc4bae9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_dollar_greater.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_equal.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_equal.glif new file mode 100644 index 00000000..12583d9e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_equal.liga.glif new file mode 100644 index 00000000..42ca8f97 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_equal.start.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_equal.start.glif new file mode 100644 index 00000000..8f9e8770 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_equal.start.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_equal_greater.liga.glif new file mode 100644 index 00000000..7aaae444 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_equal_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_equal_less.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_equal_less.liga.glif new file mode 100644 index 00000000..f343007c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_equal_less.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..572eab81 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_greater.liga.glif new file mode 100644 index 00000000..0ea72121 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_greater.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_hyphen.liga.glif new file mode 100644 index 00000000..e737769c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_hyphen.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_hyphen.start.glif new file mode 100644 index 00000000..e26fa70a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_hyphen.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_hyphen_greater.liga.glif new file mode 100644 index 00000000..86d777f4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_hyphen_greater.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_hyphen_less.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_hyphen_less.liga.glif new file mode 100644 index 00000000..df5705cf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_hyphen_less.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_less.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_less.liga.glif new file mode 100644 index 00000000..5e90a9ab --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_less.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_less_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_less_equal.liga.glif new file mode 100644 index 00000000..3842fbae --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_less_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_less_equal.start.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_less_equal.start.glif new file mode 100644 index 00000000..c7b7c149 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_less_equal.start.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_less_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_less_hyphen.liga.glif new file mode 100644 index 00000000..addf4152 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_less_hyphen.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_less_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_less_hyphen.start.glif new file mode 100644 index 00000000..b42db7cb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_less_hyphen.start.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_less_less.liga.glif new file mode 100644 index 00000000..2b643117 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_less_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_plus.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_plus.liga.glif new file mode 100644 index 00000000..e4e7b1b4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_plus.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_plus_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_plus_greater.liga.glif new file mode 100644 index 00000000..ae5cf8dd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_plus_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_slash.liga.glif new file mode 100644 index 00000000..1478a410 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_slash.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_slash_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_slash_greater.liga.glif new file mode 100644 index 00000000..f53681a6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/less_slash_greater.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightarcdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightarcdnleftbxd.glif new file mode 100644 index 00000000..7b2ae69c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightarcdnleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightarcdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightarcdnrightbxd.glif new file mode 100644 index 00000000..e77db64a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightarcdnrightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightarcupleftbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightarcupleftbxd.glif new file mode 100644 index 00000000..8c04e6ea --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightarcupleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightarcuprightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightarcuprightbxd.glif new file mode 100644 index 00000000..aa59014b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightarcuprightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdbldashhorzbxd.glif new file mode 100644 index 00000000..d4979b79 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdbldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdbldashvertbxd.glif new file mode 100644 index 00000000..fbafb510 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdiagcrossbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdiagcrossbxd.glif new file mode 100644 index 00000000..f5ba0d7e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdiagcrossbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdiagupleftdnrightbxd.glif new file mode 100644 index 00000000..f5b5b097 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdiagupleftdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdiaguprightdnleftbxd.glif new file mode 100644 index 00000000..e6f59836 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdiaguprightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdnbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdnbxd.glif new file mode 100644 index 00000000..bdae562a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdnhorzbxd.glif new file mode 100644 index 00000000..d7712d74 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdnleftbxd.glif new file mode 100644 index 00000000..5374d7a2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdnrightbxd.glif new file mode 100644 index 00000000..fa3340d9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lighthorzbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lighthorzbxd.glif new file mode 100644 index 00000000..25b29983 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lighthorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightleftbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightleftbxd.glif new file mode 100644 index 00000000..a8624b19 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightleftheavyrightbxd.glif new file mode 100644 index 00000000..764336e2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightleftheavyrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightquaddashhorzbxd.glif new file mode 100644 index 00000000..35e38e1a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightquaddashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightquaddashvertbxd.glif new file mode 100644 index 00000000..072ed15c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightrightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightrightbxd.glif new file mode 100644 index 00000000..b667c190 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightshade.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightshade.glif new file mode 100644 index 00000000..156f38e4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightshade.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lighttrpldashhorzbxd.glif new file mode 100644 index 00000000..19cbe90a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lighttrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lighttrpldashvertbxd.glif new file mode 100644 index 00000000..42b0a891 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lighttrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightupbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightupbxd.glif new file mode 100644 index 00000000..25fa23f3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightupheavydnbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightupheavydnbxd.glif new file mode 100644 index 00000000..8d64ef66 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightupheavydnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightuphorzbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightuphorzbxd.glif new file mode 100644 index 00000000..a55536d4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightupleftbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightupleftbxd.glif new file mode 100644 index 00000000..e36a0903 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightuprightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightuprightbxd.glif new file mode 100644 index 00000000..46263e65 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightvertbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightvertbxd.glif new file mode 100644 index 00000000..c8075b0c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightverthorzbxd.glif new file mode 100644 index 00000000..d2bc79d5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightvertleftbxd.glif new file mode 100644 index 00000000..1912526f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightvertrightbxd.glif new file mode 100644 index 00000000..c3d4b72d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/lightvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ligspacer.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ligspacer.glif new file mode 100644 index 00000000..ae7011c5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ligspacer.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/mediumshade.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/mediumshade.glif new file mode 100644 index 00000000..4e438ef8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/mediumshade.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign.end.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign.end.glif new file mode 100644 index 00000000..5db6c40a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign.end.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign.middle.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign.middle.glif new file mode 100644 index 00000000..dc54903e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign.start.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign.start.glif new file mode 100644 index 00000000..81a6935e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign.start.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_braceleft.liga.glif new file mode 100644 index 00000000..c501f659 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_braceleft.liga.glif @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_bracketleft.liga.glif new file mode 100644 index 00000000..e637f366 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_bracketleft.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_colon.liga.glif new file mode 100644 index 00000000..7a828891 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_colon.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_equal.liga.glif new file mode 100644 index 00000000..a9c4272c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_equal.liga.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_exclam.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_exclam.liga.glif new file mode 100644 index 00000000..a808d38f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_parenleft.liga.glif new file mode 100644 index 00000000..f10255d4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_parenleft.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_question.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_question.liga.glif new file mode 100644 index 00000000..6f44e44c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_underscore.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_underscore.liga.glif new file mode 100644 index 00000000..6aa83b73 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_underscore.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_underscore_parenleft.glif new file mode 100644 index 00000000..f5a0e7ae --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/numbersign_underscore_parenleft.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/percent_percent.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/percent_percent.liga.glif new file mode 100644 index 00000000..8d19d00a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/percent_percent.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_equal.liga.glif new file mode 100644 index 00000000..930e3e2d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_hyphen.liga.glif new file mode 100644 index 00000000..3354eb4e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_period.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_period.liga.glif new file mode 100644 index 00000000..7040f36f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_period_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_period_equal.liga.glif new file mode 100644 index 00000000..9e7869d2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_period_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_period_less.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_period_less.liga.glif new file mode 100644 index 00000000..f3a825e9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_period_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_period_period.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_period_period.liga.glif new file mode 100644 index 00000000..d3a1d6bb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_period_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_question.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_question.liga.glif new file mode 100644 index 00000000..258c1c48 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/period_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/plus_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/plus_greater.liga.glif new file mode 100644 index 00000000..5407614e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/plus_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/plus_plus.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/plus_plus.liga.glif new file mode 100644 index 00000000..950779e6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/plus_plus.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/plus_plus_plus.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/plus_plus_plus.liga.glif new file mode 100644 index 00000000..6596172c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/plus_plus_plus.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/question_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/question_colon.liga.glif new file mode 100644 index 00000000..27ce8018 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/question_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/question_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/question_equal.liga.glif new file mode 100644 index 00000000..51658043 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/question_equal.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/question_period.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/question_period.liga.glif new file mode 100644 index 00000000..80143bb3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/question_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/question_question.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/question_question.liga.glif new file mode 100644 index 00000000..e6e7c700 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/question_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightdnheavyleftuplightbxd.glif new file mode 100644 index 00000000..a37f48a4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightdnheavyleftuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/righteighthblock.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/righteighthblock.glif new file mode 100644 index 00000000..9d954a40 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/righteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/righthalfblock.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/righthalfblock.glif new file mode 100644 index 00000000..7d4f8cef --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/righthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightheavyleftdnlightbxd.glif new file mode 100644 index 00000000..096861bd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightheavyleftuplightbxd.glif new file mode 100644 index 00000000..4dd3b32e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightheavyleftvertlightbxd.glif new file mode 100644 index 00000000..024e2eab --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightheavyleftvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightlightleftdnheavybxd.glif new file mode 100644 index 00000000..b0c45355 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightlightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightlightleftupheavybxd.glif new file mode 100644 index 00000000..97e94f0e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightlightleftvertheavybxd.glif new file mode 100644 index 00000000..7589ec83 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightlightleftvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightupheavyleftdnlightbxd.glif new file mode 100644 index 00000000..22a54e57 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/rightupheavyleftdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ringcmb.cap.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ringcmb.cap.glif index 745588ed..e4bf021d 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ringcmb.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/ringcmb.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/semicolon_semicolon.liga.glif new file mode 100644 index 00000000..98760fb6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/semicolon_semicolon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_asterisk.liga.glif new file mode 100644 index 00000000..5ccc3c01 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_backslash.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_backslash.liga.glif new file mode 100644 index 00000000..2238f312 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_backslash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_equal.liga.glif new file mode 100644 index 00000000..ddaaba00 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_equal.start.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_equal.start.glif new file mode 100644 index 00000000..b51cd234 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_greater.liga.glif new file mode 100644 index 00000000..eab85196 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_slash.liga.glif new file mode 100644 index 00000000..2bc4a71a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_slash_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_slash_equal.liga.glif new file mode 100644 index 00000000..0aec31b5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_slash_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_slash_equal.start.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_slash_equal.start.glif new file mode 100644 index 00000000..7be7a7c4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_slash_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_slash_slash.liga.glif new file mode 100644 index 00000000..3f943989 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/slash_slash_slash.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/underscore.end.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/underscore.end.glif new file mode 100644 index 00000000..0c4354b3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/underscore.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/underscore.middle.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/underscore.middle.glif new file mode 100644 index 00000000..3613889f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/underscore.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/underscore.start.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/underscore.start.glif new file mode 100644 index 00000000..b08520a3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/underscore.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/underscore_bar_underscore.m.glif new file mode 100644 index 00000000..8395ec1d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/underscore_bar_underscore.m.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uni2610.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uni2610.glif new file mode 100644 index 00000000..0f59d74b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uni2610.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uni2611.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uni2611.glif new file mode 100644 index 00000000..49c6521a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uni2611.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uni2612.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uni2612.glif new file mode 100644 index 00000000..5deaa229 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uni2612.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uni2713.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uni2713.glif new file mode 100644 index 00000000..a4e30aef --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uni2713.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0A_0.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0A_0.glif new file mode 100644 index 00000000..58aa2dba --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0A_0.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0A_1.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0A_1.glif new file mode 100644 index 00000000..a9e11068 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0A_1.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0A_2.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0A_2.glif new file mode 100644 index 00000000..63bf0901 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0A_2.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0B_0.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0B_0.glif new file mode 100644 index 00000000..94854e00 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0B_0.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0B_1.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0B_1.glif new file mode 100644 index 00000000..439bd2d4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0B_1.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0B_2.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0B_2.glif new file mode 100644 index 00000000..b894df86 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0B_2.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0B_3.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0B_3.glif new file mode 100644 index 00000000..6767d013 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uniE_0B_3.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/updblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/updblhorzsngbxd.glif new file mode 100644 index 00000000..95aed0e2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/updblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/updblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/updblleftsngbxd.glif new file mode 100644 index 00000000..70d11705 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/updblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/updblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/updblrightsngbxd.glif new file mode 100644 index 00000000..db9ec4f9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/updblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upeighthblock.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upeighthblock.glif new file mode 100644 index 00000000..87701940 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upeighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uphalfblock.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uphalfblock.glif new file mode 100644 index 00000000..018ed615 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uphalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upheavydnhorzlightbxd.glif new file mode 100644 index 00000000..93de0c5b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upheavydnhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upheavyhorzlightbxd.glif new file mode 100644 index 00000000..6da525a6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upheavyleftdnlightbxd.glif new file mode 100644 index 00000000..95b1d58d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upheavyleftlightbxd.glif new file mode 100644 index 00000000..27c8767e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upheavyrightdnlightbxd.glif new file mode 100644 index 00000000..98099b7e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upheavyrightlightbxd.glif new file mode 100644 index 00000000..e96a85a4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upleftdnleftdnrightquadrant.glif new file mode 100644 index 00000000..91309b79 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upleftdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upleftdnrightquadrant.glif new file mode 100644 index 00000000..9bb17821 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upleftdnrightquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upleftquadrant.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upleftquadrant.glif new file mode 100644 index 00000000..ef21c49d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upleftuprightdnleftquadrant.glif new file mode 100644 index 00000000..0d5294c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upleftuprightdnleftquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upleftuprightdnrightquadrant.glif new file mode 100644 index 00000000..56cf6e14 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upleftuprightdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uplightdnhorzheavybxd.glif new file mode 100644 index 00000000..d6c1c942 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uplightdnhorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uplighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uplighthorzheavybxd.glif new file mode 100644 index 00000000..9c329a81 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uplighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uplightleftdnheavybxd.glif new file mode 100644 index 00000000..e5537fde --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uplightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uplightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uplightleftheavybxd.glif new file mode 100644 index 00000000..41ff15db --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uplightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uplightrightdnheavybxd.glif new file mode 100644 index 00000000..f0ae3643 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uplightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uplightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uplightrightheavybxd.glif new file mode 100644 index 00000000..fff139a2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uplightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uprightdnleftdnrightquadrant.glif new file mode 100644 index 00000000..df5a022e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uprightdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uprightdnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uprightdnleftquadrant.glif new file mode 100644 index 00000000..93cbe757 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uprightdnleftquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uprightquadrant.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uprightquadrant.glif new file mode 100644 index 00000000..de8b454f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/uprightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upsnghorzdblbxd.glif new file mode 100644 index 00000000..fb977608 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upsngleftdblbxd.glif new file mode 100644 index 00000000..644fe45c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upsngrightdblbxd.glif new file mode 100644 index 00000000..8a0fb12c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/upsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertdblhorzsngbxd.glif new file mode 100644 index 00000000..34393559 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertdblhorzsngbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertdblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertdblleftsngbxd.glif new file mode 100644 index 00000000..19880cd3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertdblleftsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertdblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertdblrightsngbxd.glif new file mode 100644 index 00000000..52c05045 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertdblrightsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertheavyhorzlightbxd.glif new file mode 100644 index 00000000..f506645c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertheavyhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertheavyleftlightbxd.glif new file mode 100644 index 00000000..82388e1c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertheavyleftlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertheavyrightlightbxd.glif new file mode 100644 index 00000000..59c0068d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertheavyrightlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertlighthorzheavybxd.glif new file mode 100644 index 00000000..86c41999 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertlighthorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertlightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertlightleftheavybxd.glif new file mode 100644 index 00000000..244971f0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertlightleftheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertlightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertlightrightheavybxd.glif new file mode 100644 index 00000000..bf25c352 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertlightrightheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertsnghorzdblbxd.glif new file mode 100644 index 00000000..376348b0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertsnghorzdblbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertsngleftdblbxd.glif new file mode 100644 index 00000000..5d079ace --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertsngleftdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertsngrightdblbxd.glif new file mode 100644 index 00000000..2fd1a11a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/vertsngrightdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/w_w_w.liga.glif b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/w_w_w.liga.glif new file mode 100644 index 00000000..6bf40cea --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/glyphs/w_w_w.liga.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Bold.ufo/lib.plist b/sources/instances/postscript/IntelOneMono-Bold.ufo/lib.plist index 047cc547..29a765f7 100644 --- a/sources/instances/postscript/IntelOneMono-Bold.ufo/lib.plist +++ b/sources/instances/postscript/IntelOneMono-Bold.ufo/lib.plist @@ -710,6 +710,365 @@ circumflexgrave.cap circumflexhook.cap circumflextilde.cap + lighthorzbxd + heavyhorzbxd + lightvertbxd + heavyvertbxd + lighttrpldashhorzbxd + heavytrpldashhorzbxd + lighttrpldashvertbxd + heavytrpldashvertbxd + lightquaddashhorzbxd + heavyquaddashhorzbxd + lightquaddashvertbxd + heavyquaddashvertbxd + lightdnrightbxd + dnlightrightheavybxd + dnheavyrightlightbxd + heavydnrightbxd + lightdnleftbxd + dnlightleftheavybxd + dnheavyleftlightbxd + heavydnleftbxd + lightuprightbxd + uplightrightheavybxd + upheavyrightlightbxd + heavyuprightbxd + lightupleftbxd + uplightleftheavybxd + upheavyleftlightbxd + heavyupleftbxd + lightvertrightbxd + vertlightrightheavybxd + upheavyrightdnlightbxd + dnheavyrightuplightbxd + vertheavyrightlightbxd + dnlightrightupheavybxd + uplightrightdnheavybxd + heavyvertrightbxd + lightvertleftbxd + vertlightleftheavybxd + upheavyleftdnlightbxd + dnheavyleftuplightbxd + vertheavyleftlightbxd + dnlightleftupheavybxd + uplightleftdnheavybxd + heavyvertleftbxd + lightdnhorzbxd + leftheavyrightdnlightbxd + rightheavyleftdnlightbxd + dnlighthorzheavybxd + dnheavyhorzlightbxd + rightlightleftdnheavybxd + leftlightrightdnheavybxd + heavydnhorzbxd + lightuphorzbxd + leftheavyrightuplightbxd + rightheavyleftuplightbxd + uplighthorzheavybxd + upheavyhorzlightbxd + rightlightleftupheavybxd + leftlightrightupheavybxd + heavyuphorzbxd + lightverthorzbxd + leftheavyrightvertlightbxd + rightheavyleftvertlightbxd + vertlighthorzheavybxd + upheavydnhorzlightbxd + dnheavyuphorzlightbxd + vertheavyhorzlightbxd + leftupheavyrightdnlightbxd + rightupheavyleftdnlightbxd + leftdnheavyrightuplightbxd + rightdnheavyleftuplightbxd + dnlightuphorzheavybxd + uplightdnhorzheavybxd + rightlightleftvertheavybxd + leftlightrightvertheavybxd + heavyverthorzbxd + lightdbldashhorzbxd + heavydbldashhorzbxd + lightdbldashvertbxd + heavydbldashvertbxd + dblhorzbxd + dblvertbxd + dnsngrightdblbxd + dndblrightsngbxd + dbldnrightbxd + dnsngleftdblbxd + dndblleftsngbxd + dbldnleftbxd + upsngrightdblbxd + updblrightsngbxd + dbluprightbxd + upsngleftdblbxd + updblleftsngbxd + dblupleftbxd + vertsngrightdblbxd + vertdblrightsngbxd + dblvertrightbxd + vertsngleftdblbxd + vertdblleftsngbxd + dblvertleftbxd + dnsnghorzdblbxd + dndblhorzsngbxd + dbldnhorzbxd + upsnghorzdblbxd + updblhorzsngbxd + dbluphorzbxd + vertsnghorzdblbxd + vertdblhorzsngbxd + dblverthorzbxd + lightarcdnrightbxd + lightarcdnleftbxd + lightarcupleftbxd + lightarcuprightbxd + lightdiaguprightdnleftbxd + lightdiagupleftdnrightbxd + lightdiagcrossbxd + lightleftbxd + lightupbxd + lightrightbxd + lightdnbxd + heavyleftbxd + heavyupbxd + heavyrightbxd + heavydnbxd + lightleftheavyrightbxd + lightupheavydnbxd + heavyleftlightrightbxd + heavyuplightdnbxd + uphalfblock + dneighthblock + dnquarterblock + dnthreeeighthsblock + dnhalfblock + dnfiveeighthsblock + dnthreequartersblock + dnseveneighthsblock + fullblock + leftseveneighthsblock + leftthreequartersblock + leftfiveeighthsblock + lefthalfblock + leftthreeeighthsblock + leftquarterblock + lefteighthblock + righthalfblock + lightshade + mediumshade + darkshade + upeighthblock + righteighthblock + dnleftquadrant + dnrightquadrant + upleftquadrant + upleftdnleftdnrightquadrant + upleftdnrightquadrant + upleftuprightdnleftquadrant + upleftuprightdnrightquadrant + uprightquadrant + uprightdnleftquadrant + uprightdnleftdnrightquadrant + ligspacer + equal.start + equal.middle + equal.end + hyphen.start + hyphen.middle + hyphen.end + underscore.start + underscore.middle + underscore.end + numbersign.start + numbersign.middle + numbersign.end + period_equal.liga + period_period_equal.liga + period_hyphen.liga + colon_equal.liga + equal_equal.liga + exclam_equal.liga + equal_equal_equal.liga + exclam_equal_equal.liga + less_hyphen_less.liga + less_less_hyphen.liga + less_hyphen.liga + less_hyphen_greater.liga + hyphen_greater.liga + hyphen_greater_greater.liga + greater_hyphen_greater.liga + less_equal_less.liga + less_less_equal.liga + less_equal_greater.liga + equal_greater.liga + less_equal.liga + equal_greater_greater.liga + greater_equal_greater.liga + greater_equal.liga + greater_greater_equal.liga + greater_greater_hyphen.liga + greater_hyphen.liga + less_asciitilde_greater.liga + hyphen_less.liga + hyphen_less_less.liga + equal_less.liga + equal_less_less.liga + less_asciitilde_asciitilde.liga + less_asciitilde.liga + asciitilde_asciitilde.liga + asciitilde_greater.liga + asciitilde_asciitilde_greater + less_exclam_hyphen_hyphen.liga + slash_equal.liga + hyphen_bar.liga + bar_hyphen.liga + bar_equal.liga + hyphen_bar_bar.liga + bar_bar_hyphen.liga + equal_bar_bar.liga + bar_bar_equal.liga + equal_bar.liga + slash_slash_equal.liga + equal_slash.liga + equal_slash_slash.liga + equal_colon_equal.middle + equal_exclam_equal.middle + underscore_bar_underscore.m + hyphen_bar_hyphen.middle + equal_bar_equal.middle + hyphen_greater_hyphen.middle + hyphen_greater_greater_hyphen.m + equal_slash_slash_equal.middle + equal_slash_equal.middle + hyphen_bar_bar_hyphen.middle + equal_bar_bar_equal.middle + hyphen_less_hyphen.middle + hyphen_less_less_hyphen.middle + equal_greater_equal.middle + equal_less_equal.middle + equal_greater_greater_equal.m + equal_less_less_equal.middle + less_hyphen.start + greater_hyphen.start + bar_hyphen.start + less_equal.start + greater_equal.start + bar_equal.start + slash_equal.start + slash_slash_equal.start + less_less_hyphen.start + greater_greater_hyphen.start + bar_bar_hyphen.start + less_less_equal.start + greater_greater_equal.start + bar_bar_equal.start + hyphen_less.end + hyphen_greater.end + hyphen_bar.end + equal_less.end + equal_greater.end + equal_bar.end + hyphen_less_less.end + hyphen_greater_greater.end + hyphen_bar_bar.end + equal_less_less.end + equal_greater_greater.end + equal_bar_bar.end + equal_slash.end + equal_slash_slash.end + less_less_less.liga + less_less.liga + less_equal + less_greater.liga + greater_equal + greater_greater.liga + greater_greater_greater.liga + braceleft_bar.liga + bracketleft_bar.liga + less_colon.liga + colon_less.liga + greater_colon.liga + colon_greater.liga + bar_braceright.liga + bar_bracketright.liga + less_bar_bar_bar.liga + less_bar_bar.liga + less_bar.liga + less_bar_greater.liga + bar_greater.liga + bar_bar_greater.liga + bar_bar_bar_greater.liga + less_dollar.liga + less_dollar_greater.liga + dollar_greater.liga + less_plus.liga + less_plus_greater.liga + plus_greater.liga + less_asterisk.liga + less_asterisk_greater.liga + asterisk_greater.liga + slash_asterisk.liga + asterisk_slash.liga + slash_slash_slash.liga + slash_slash.liga + less_slash.liga + less_slash_greater.liga + slash_greater.liga + semicolon_semicolon.liga + colon_colon.liga + colon_colon_colon.liga + period_period.liga + period_period_period.liga + period_period_less.liga + exclam_exclam.liga + question_question.liga + percent_percent.liga + ampersand_ampersand.liga + bar_bar.liga + question_period.liga + question_colon.liga + plus_plus.liga + plus_plus_plus.liga + hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga + asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga + equal_asciitilde.liga + exclam_asciitilde.liga + asciitilde_hyphen.liga + w_w_w.liga + hyphen_asciitilde.liga + asciitilde_at.liga + asciicircum_equal.liga + question_equal.liga + numbersign_exclam.liga + numbersign_equal.liga + numbersign_colon.liga + numbersign_braceleft.liga + numbersign_bracketleft.liga + bracketright_numbersign.liga + numbersign_parenleft.liga + numbersign_question.liga + numbersign_underscore.liga + numbersign_underscore_parenleft + backslash_slash.liga + bar_bar_bar.liga + colon_colon_equal.liga + exclam_exclam_period.liga + period_question.liga + slash_backslash.liga + uniE0A0 + uniE0A1 + uniE0A2 + uniE0B0 + uniE0B1 + uniE0B2 + uniE0B3 + uni2610 + uni2611 + uni2612 + uni2713 public.postscriptNames diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/features.fea b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/features.fea index 442214bb..69ec020c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/features.fea +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/features.fea @@ -1,271 +1,6 @@ -# ---------------------------- -# INTEL ONE MONO OPENTYPE CODE -# ---------------------------- -# ---------------- -# Language Systems -# ---------------- +include(../../features/shared.fea); -languagesystem DFLT dflt; -languagesystem latn dflt; -languagesystem latn TRK; -languagesystem latn AZE; -languagesystem latn CRT; -languagesystem latn CAT; +include(../../features/mark/IntelOneMono-BoldItalic mark.fea); - -# ------- -# Classes -# ------- - -# Base Letters -@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; -@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; - -# Figures -@fig = [zero one two three four five six seven eight nine]; -@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; -@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; -@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; -@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; - -# Marks Above -@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; -@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; - -# Marks Below -@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; - - -# --------------- -# Localized Forms -# --------------- - -feature locl { - script latn; - language TRK; - lookup iTurkish { - sub i by idotaccent; - } iTurkish; - language AZE; - lookup iTurkish; - language CRT; - lookup iTurkish; - language CAT; - sub l periodcentered' l by middotcat; - sub L periodcentered' L by middotcat.cap; - # try fusing them - sub L middotcat.cap by L.dot; - sub L middotcat by L.dot; - sub l middotcat by l.dot; -} locl; - - -# --------------------------------- -# Glyph Composition / Decomposition -# --------------------------------- - -feature ccmp { - - # Decompose unicode lowercase characters whose uppercase counterparts have no unicode. - lookup Decomp { - sub hlinebelow by h macronlowmod; - sub jcaron by j caron; - } Decomp; - - # Replace double above accents by combined drawings. - lookup DblMarks { - sub dieresiscmb acutecmb by dieresisacute; - sub dieresiscmb gravecmb by dieresisgrave; - sub dieresiscmb caroncmb by dieresiscaron; - sub dieresiscmb macroncmb by dieresismacron; - sub brevecmb acutecmb by breveacute; - sub brevecmb gravecmb by brevegrave; - sub brevecmb hookcmb by brevehook; - sub brevecmb tildecmb by brevetilde; - sub circumflexcmb acutecmb by circumflexacute; - sub circumflexcmb gravecmb by circumflexgrave; - sub circumflexcmb hookcmb by circumflexhook; - sub circumflexcmb tildecmb by circumflextilde; - # capital forms - sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; - sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; - sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; - sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; - sub brevecmb.cap acutecmb.cap by breveacute.cap; - sub brevecmb.cap gravecmb.cap by brevegrave.cap; - sub brevecmb.cap hookcmb.cap by brevehook.cap; - sub brevecmb.cap tildecmb.cap by brevetilde.cap; - sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; - sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; - sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; - sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; - } DblMarks; - - # Replace combining marks that follow a uppercase letter by their uppercase form - lookup CapitalMarks { - sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; - sub [@ltrUC] [@lcMarks]' by [@ucMarks]; - } CapitalMarks; - - # Replace letters with dotless counterparts when followed by a combining mark - lookup Dotless { - sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; - sub [i j]' [@lcMarks] by [dotlessi dotlessj]; - } Dotless; - - # Replace e ogonek with pre-drawn eogonek - lookup eogonek { - sub e ogonekcmb by eogonek; - } eogonek; - -} ccmp; - - -# ---------- -# Numerators -# ---------- - -feature numr { - sub @fig by @figNum; -} numr; - -# ------------ -# Denominators -# ------------ - -feature dnom { - sub @fig by @figDen; -} dnom; - -# ----------- -# Superscript -# ----------- - -feature sups { - sub @fig by @figSup; -} sups; - -# --------------------- -# Subscript & Inferiors -# --------------------- - -feature subs { - sub @fig by @figInf; -} subs; - -feature sinf { - sub @fig by @figInf; -} sinf; - - -# --------------------- -# Contextual Alternates -# --------------------- - -feature calt { - # shifts colon to align with math symbols when used together - - sub colon' [plus equal greater less hyphen] by colon.fig; - sub [plus equal less greater hyphen] colon' by colon.fig; - - sub colon' [colon colon.fig] by colon.fig; - sub colon.fig colon' by colon.fig; - -} calt; - - -# -------------- -# Stylistic Sets -# -------------- - -feature ss11 { - featureNames { - name "Raised Colon (Figures Only)"; # Windows English - name 1 0 0 "Raised Colon (Figures Only)"; # Mac English - }; - lookup FigureColonContextual { - sub @fig colon' @fig by colon.fig; - } FigureColonContextual; -} ss11; - -feature ss12 { - featureNames { - name "Raised Colon (Global)"; # Windows English - name 1 0 0 "Raised Colon (Global)"; # Mac English - }; - lookup FigureColon { - sub colon by colon.fig; - } FigureColon; -} ss12; - - -# -------------------- -# Stylistic Alternates -# -------------------- - -feature salt { - lookup FigureColon; # SS12 -} salt; - - -# -------------- -# All Alternates -# -------------- - -feature aalt { - sub germandbls from [germandbls uni1E9E]; - sub uni1E9E from [uni1E9E germandbls]; - sub colon from [colon colon.fig]; - sub colon.fig from [colon.fig colon]; - sub eight from [eight eight.den eight.sup eight.num eight.inf]; - sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; - sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; - sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; - sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; - sub five from [five five.inf five.num five.den five.sup]; - sub five.sup from [five.sup five five.inf five.num five.den]; - sub five.den from [five.den five.sup five five.inf five.num]; - sub five.num from [five.num five.den five.sup five five.inf]; - sub five.inf from [five.inf five.num five.den five.sup five]; - sub four from [four four.sup four.num four.den four.inf]; - sub four.inf from [four.inf four four.sup four.num four.den]; - sub four.den from [four.den four.inf four four.sup four.num]; - sub four.num from [four.num four.den four.inf four four.sup]; - sub four.sup from [four.sup four.num four.den four.inf four]; - sub nine from [nine nine.den nine.inf nine.num nine.sup]; - sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; - sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; - sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; - sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; - sub one from [one one.den one.num one.inf one.sup]; - sub one.sup from [one.sup one one.den one.num one.inf]; - sub one.inf from [one.inf one.sup one one.den one.num]; - sub one.num from [one.num one.inf one.sup one one.den]; - sub one.den from [one.den one.num one.inf one.sup one]; - sub seven from [seven seven.inf seven.num seven.sup seven.den]; - sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; - sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; - sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; - sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; - sub six from [six six.num six.sup six.den six.inf]; - sub six.inf from [six.inf six six.num six.sup six.den]; - sub six.den from [six.den six.inf six six.num six.sup]; - sub six.sup from [six.sup six.den six.inf six six.num]; - sub six.num from [six.num six.sup six.den six.inf six]; - sub three from [three three.inf three.den three.num three.sup]; - sub three.sup from [three.sup three three.inf three.den three.num]; - sub three.num from [three.num three.sup three three.inf three.den]; - sub three.den from [three.den three.num three.sup three three.inf]; - sub three.inf from [three.inf three.den three.num three.sup three]; - sub two from [two two.inf two.sup two.num two.den]; - sub two.den from [two.den two two.inf two.sup two.num]; - sub two.num from [two.num two.den two two.inf two.sup]; - sub two.sup from [two.sup two.num two.den two two.inf]; - sub two.inf from [two.inf two.sup two.num two.den two]; - sub zero from [zero zero.sup zero.num zero.den zero.inf]; - sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; - sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; - sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; - sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; -} aalt; +include(../../features/aalt.fea); diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/fontinfo.plist b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/fontinfo.plist index 8a16dd19..8daadff0 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/fontinfo.plist +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/fontinfo.plist @@ -7,7 +7,7 @@ capHeight 655 copyright - Copyright 2023 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) descender -260 familyName @@ -57,7 +57,7 @@ platformID 1 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -69,7 +69,7 @@ platformID 3 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -263,30 +263,6 @@ string http://frerejones.com - - encodingID - 1 - languageID - 1033 - nameID - 16 - platformID - 3 - string - Intel One Mono - - - encodingID - 1 - languageID - 1033 - nameID - 17 - platformID - 3 - string - Bold Italic - openTypeOS2CodePageRanges @@ -402,7 +378,7 @@ versionMajor 1 versionMinor - 3 + 4 xHeight 477 diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/L_.dot.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/L_.dot.glif index a51781fe..65c8783e 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/L_.dot.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/L_.dot.glif @@ -5,7 +5,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_breve.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_breve.glif index 2fb28f09..1a6bb3f1 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_breve.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_breve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_caron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_caron.glif index c2ca5750..65ed1e5f 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_caron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflex.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflex.glif index a26635ad..f5e5ed00 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexacute.glif index 1205b2a9..3d0d348a 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexdotbelow.glif index 3cb43c5c..a7fe7462 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexgrave.glif index db4e50a7..8efd59bd 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexhookabove.glif index 8d4dc267..20c0661d 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflextilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflextilde.glif index 638aed22..0ff6b581 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_dieresis.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_dieresis.glif index 9b25a467..dc0b18f5 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_dotaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_dotaccent.glif index ac1e93d5..439b5270 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_dotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_dotbelow.glif index 8ec68c96..ab8fc49e 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_hookabove.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_hookabove.glif index d52f3808..0588ac06 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_horn.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_horn.glif index 1b3de5a9..4056f79f 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_horn.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_horn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_hornacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_hornacute.glif index e19c40f4..c1537178 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_hornacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_hornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_horndotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_horndotbelow.glif index c9198125..904b57ee 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_horndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_horndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_horngrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_horngrave.glif index 793d5a6b..42f18f1d 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_horngrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_horngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_hornhookabove.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_hornhookabove.glif index fa39ca40..e13ca72b 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_hornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_hornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_horntilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_horntilde.glif index 8c3334b4..b6f2cb06 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_horntilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_horntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_macron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_macron.glif index dec010d8..a41a78b7 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_macron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_tilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_tilde.glif index f6371d2c..039c3414 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/O_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_acute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_acute.glif index 15764f07..f45225da 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_acute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_caron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_caron.glif index 28b903a4..c2f5a6ac 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_caron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_commaaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_commaaccent.glif index a2845e94..993d4c7c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_dotaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_dotaccent.glif index 5a10aef3..110950b4 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_dotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_dotbelow.glif index 8301beeb..89162beb 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_linebelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_linebelow.glif index 62e28b35..be375d89 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_macrondotbelow.glif index 1a25b490..aaed97f7 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_macrondotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/R_macrondotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_.glif index 5d53c5b9..4c03717c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_acute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_acute.glif index b81a9f1f..b840adeb 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_acute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_caron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_caron.glif index fa997bf9..730de3c6 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_caron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_circumflex.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_circumflex.glif index 7f86aadd..eac62b9c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_commaaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_commaaccent.glif index 10188969..b6cb5c1a 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_dotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_dotbelow.glif index b10d9a80..a70297fe 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/S_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/T_caron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/T_caron.glif index adb21f77..0cc3e869 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/T_caron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/T_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/T_circumflexbelow.glif index 8408b0fc..04e62723 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/T_circumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/T_circumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/T_commaaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/T_commaaccent.glif index f6a0d2b9..8efd5833 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/T_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/T_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/T_dotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/T_dotbelow.glif index eb1d86db..3d102e5d 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/T_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/T_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/T_linebelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/T_linebelow.glif index ec706e83..7c07de34 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/T_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/T_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_acute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_acute.glif index c4a2f14e..18fd00e8 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_acute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_breve.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_breve.glif index 92f6d21a..c046ca2e 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_breve.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_breve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_caron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_caron.glif index b9f63676..ddb55f39 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_caron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_circumflex.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_circumflex.glif index f7cab1ba..81b49c3d 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresis.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresis.glif index 3b345150..46ec60f2 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresisacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresisacute.glif index cdf0dd9d..fd619e5f 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresisacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresisacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresiscaron.glif index 1669c15c..ac59eded 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresiscaron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresiscaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresisgrave.glif index 0129226b..a7aaf32a 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresisgrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresisgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresismacron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresismacron.glif index 6ef6f2bc..f406713f 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresismacron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresismacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dotbelow.glif index 82edfbb5..e5734611 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_grave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_grave.glif index 31243341..5af9c734 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_grave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_hookabove.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_hookabove.glif index 29ab6cca..91bd6c03 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_horn.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_horn.glif index 10156c40..a2824cdb 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_horn.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_horn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_hornacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_hornacute.glif index 32e5659f..2fd0d981 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_hornacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_hornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_horndotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_horndotbelow.glif index 1b3ca83b..261148a5 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_horndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_horndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_horngrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_horngrave.glif index 200c185b..323cac9d 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_horngrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_horngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_hornhookabove.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_hornhookabove.glif index 7f877d1c..e91c29d4 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_hornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_hornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_horntilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_horntilde.glif index b8cfe8f7..a348994a 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_horntilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_horntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_hungarumlaut.glif index ab29d658..5cb9543f 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_hungarumlaut.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_hungarumlaut.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_macron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_macron.glif index a67007f1..1b325228 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_macron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_ring.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_ring.glif index 4a5e6d07..4d48b64f 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_ring.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_ring.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_tilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_tilde.glif index 14eeeb91..09ca5efe 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/U_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/V_dotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/V_dotbelow.glif index 076ccd14..5d1df2c8 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/V_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/V_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/W_acute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/W_acute.glif index 0ac9810f..72c69526 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/W_acute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/W_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/W_circumflex.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/W_circumflex.glif index 0d236680..c4cd4560 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/W_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/W_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/W_dieresis.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/W_dieresis.glif index 0d59e6ed..5465f60a 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/W_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/W_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/W_grave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/W_grave.glif index 62fb5f65..d25a854b 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/W_grave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/W_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/X_dieresis.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/X_dieresis.glif index 7cd8fc67..812f5e70 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/X_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/X_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_acute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_acute.glif index f84ec491..619f23e1 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_acute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_circumflex.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_circumflex.glif index b38d80d5..b612cd67 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_dieresis.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_dieresis.glif index 25c2760d..e2a0c730 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_dotaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_dotaccent.glif index 533eba41..e559db43 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_dotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_dotbelow.glif index a8509f2e..f4686c7e 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_grave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_grave.glif index d294dc1b..94814a87 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_grave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_hookabove.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_hookabove.glif index a059ff58..f118af34 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_macron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_macron.glif index f964352e..c7034e5e 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_macron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_tilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_tilde.glif index a61e0784..84e479a2 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Y_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_acute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_acute.glif index 8e865f7e..b01877c7 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_acute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_caron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_caron.glif index e6b4bf2b..ad3e62df 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_caron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_circumflex.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_circumflex.glif index 9a19d9b6..43f3e5a2 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_dotaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_dotaccent.glif index 5e34928e..55a6e97c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_dotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_dotbelow.glif index fb938b44..7cbeea3c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_linebelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_linebelow.glif index 2dba5060..015a9488 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/Z_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/aacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/aacute.glif index f6573df5..57a3ebdd 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/aacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/aacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abreve.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abreve.glif index 02e53ea4..ab366a79 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abreve.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abreveacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abreveacute.glif index b2b2c7cc..87a5d745 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abreveacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abreveacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abrevedotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abrevedotbelow.glif index 31feffa1..73c6c281 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abrevedotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abrevedotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abrevegrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abrevegrave.glif index 0b516cd3..8d80d07c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abrevegrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abrevegrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abrevehookabove.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abrevehookabove.glif index e0819de4..e7c47816 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abrevehookabove.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abrevehookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abrevetilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abrevetilde.glif index 6fd97766..41d76812 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abrevetilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/abrevetilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acaron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acaron.glif index 31b53f55..30a6de80 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acaron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflex.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflex.glif index 49512422..ae1ed7b4 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexacute.glif index d3da6444..cebd53f1 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexdotbelow.glif index 9c1fea80..d661918d 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexgrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexgrave.glif index 76db7fa3..7a7f29d8 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexhookabove.glif index a4a0a88e..1e973371 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflextilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflextilde.glif index 298b616d..c7bff737 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acircumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acutecmb.cap.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acutecmb.cap.glif index c597f55e..1d9cc723 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acutecmb.cap.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/acutecmb.cap.glif @@ -1,6 +1,5 @@ - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/adieresis.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/adieresis.glif index dfe7404b..bed7e43b 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/adieresis.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/adieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/adotaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/adotaccent.glif index 6f446d25..06094c3a 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/adotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/adotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/adotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/adotbelow.glif index db3c3593..b2231476 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/adotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/adotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/agrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/agrave.glif index 85189c35..2ac33570 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/agrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/agrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ahookabove.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ahookabove.glif index f7d4c265..a5d10857 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ahookabove.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ahookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/amacron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/amacron.glif index c7158ed7..bd3b5c7b 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/amacron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/amacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ampersand_ampersand.liga.glif new file mode 100644 index 00000000..ccacdf61 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ampersand_ampersand.liga.glif @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/aring.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/aring.glif index c12007b6..9f992e9e 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/aring.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/aring.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asciicircum_equal.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asciicircum_equal.liga.glif new file mode 100644 index 00000000..5c825d37 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asciicircum_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..6e254ee7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_asciitilde_greater.glif new file mode 100644 index 00000000..5013f78d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_asciitilde_greater.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_at.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_at.liga.glif new file mode 100644 index 00000000..7807b01d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_at.liga.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_greater.liga.glif new file mode 100644 index 00000000..6d63ee0d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_greater.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_hyphen.liga.glif new file mode 100644 index 00000000..0cef963d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_hyphen.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asterisk.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asterisk.glif index e20fc18a..962fba3e 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asterisk.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asterisk.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_asterisk.liga.glif new file mode 100644 index 00000000..81c64581 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif new file mode 100644 index 00000000..eb2d054c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_greater.liga.glif new file mode 100644 index 00000000..bf9e6a9c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_slash.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_slash.liga.glif new file mode 100644 index 00000000..1536beb0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/at.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/at.glif index c496ec8b..240bb491 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/at.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/at.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/atilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/atilde.glif index ef4c8ca0..08043abb 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/atilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/atilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/backslash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/backslash_slash.liga.glif new file mode 100644 index 00000000..651bdf90 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/backslash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar.liga.glif new file mode 100644 index 00000000..6e09a289 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_bar.liga.glif new file mode 100644 index 00000000..dc1b5564 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_bar.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif new file mode 100644 index 00000000..e1bfa0e1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_equal.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_equal.liga.glif new file mode 100644 index 00000000..782aabba --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_equal.start.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_equal.start.glif new file mode 100644 index 00000000..d3fd2410 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_greater.liga.glif new file mode 100644 index 00000000..d2eb04d3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_greater.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_hyphen.liga.glif new file mode 100644 index 00000000..7e3a3ef2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_hyphen.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_hyphen.start.glif new file mode 100644 index 00000000..ca389cc4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_hyphen.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_braceright.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_braceright.liga.glif new file mode 100644 index 00000000..1322bd3c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_braceright.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bracketright.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bracketright.liga.glif new file mode 100644 index 00000000..d2b1ec7e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_bracketright.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_equal.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_equal.liga.glif new file mode 100644 index 00000000..e487a6b8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_equal.start.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_equal.start.glif new file mode 100644 index 00000000..5c8c9c49 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_greater.liga.glif new file mode 100644 index 00000000..7e3288a7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_hyphen.liga.glif new file mode 100644 index 00000000..80a35a8f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_hyphen.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_hyphen.start.glif new file mode 100644 index 00000000..52ce5369 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bar_hyphen.start.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/blinebelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/blinebelow.glif index 772e7ebb..9d46e0c7 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/blinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/blinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/braceleft_bar.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/braceleft_bar.liga.glif new file mode 100644 index 00000000..3dc9a586 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/braceleft_bar.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bracketleft_bar.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bracketleft_bar.liga.glif new file mode 100644 index 00000000..ef16dd00 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bracketleft_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bracketright_numbersign.liga.glif new file mode 100644 index 00000000..d64c8c69 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/bracketright_numbersign.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/breveacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/breveacute.glif index 140eeada..80279f4b 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/breveacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/breveacute.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/brevegrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/brevegrave.glif index ced48414..e44cc438 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/brevegrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/brevegrave.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/brevehook.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/brevehook.glif index 36459ade..09f3caed 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/brevehook.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/brevehook.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/brevetilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/brevetilde.glif index b2df01b1..073e6186 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/brevetilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/brevetilde.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/cacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/cacute.glif index 0c311e97..7ecfedec 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/cacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/cacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ccaron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ccaron.glif index ca2f9dd4..fd65d4b8 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ccaron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ccaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ccircumflex.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ccircumflex.glif index a26d04c2..5b9497fe 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ccircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ccircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/cdotaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/cdotaccent.glif index 579f4c36..3c72ca25 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/cdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/cdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/circumflexacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/circumflexacute.glif index 3ba3a9da..aebfee37 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/circumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/circumflexacute.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/circumflexgrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/circumflexgrave.glif index 1b86f01c..99c28227 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/circumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/circumflexgrave.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/circumflexhook.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/circumflexhook.glif index 13b02872..81485ced 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/circumflexhook.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/circumflexhook.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/circumflextilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/circumflextilde.glif index 373622de..6f0a529a 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/circumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/circumflextilde.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/colon_colon.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/colon_colon.liga.glif new file mode 100644 index 00000000..ace4265b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/colon_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/colon_colon_colon.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/colon_colon_colon.liga.glif new file mode 100644 index 00000000..d9d24432 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/colon_colon_colon.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/colon_colon_equal.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/colon_colon_equal.liga.glif new file mode 100644 index 00000000..f0f975b2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/colon_colon_equal.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/colon_equal.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/colon_equal.liga.glif new file mode 100644 index 00000000..623529d7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/colon_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/colon_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/colon_greater.liga.glif new file mode 100644 index 00000000..1c315d3a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/colon_greater.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/colon_less.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/colon_less.liga.glif new file mode 100644 index 00000000..334b727e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/colon_less.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/commaturnedabovecmb.glif index ff26a286..370e0fed 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/commaturnedabovecmb.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/commaturnedabovecmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/contents.plist b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/contents.plist index 9b3fa25c..10a2ded8 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/contents.plist +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/contents.plist @@ -498,6 +498,8 @@ amacron.glif ampersand ampersand.glif + ampersand_ampersand.liga + ampersand_ampersand.liga.glif aogonek aogonek.glif apostrophemod @@ -508,10 +510,30 @@ aring.glif asciicircum asciicircum.glif + asciicircum_equal.liga + asciicircum_equal.liga.glif asciitilde asciitilde.glif + asciitilde_asciitilde.liga + asciitilde_asciitilde.liga.glif + asciitilde_asciitilde_greater + asciitilde_asciitilde_greater.glif + asciitilde_at.liga + asciitilde_at.liga.glif + asciitilde_greater.liga + asciitilde_greater.liga.glif + asciitilde_hyphen.liga + asciitilde_hyphen.liga.glif asterisk asterisk.glif + asterisk_asterisk.liga + asterisk_asterisk.liga.glif + asterisk_asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga.glif + asterisk_greater.liga + asterisk_greater.liga.glif + asterisk_slash.liga + asterisk_slash.liga.glif at at.glif atilde @@ -520,20 +542,58 @@ b.glif backslash backslash.glif + backslash_slash.liga + backslash_slash.liga.glif bahtthai bahtthai.glif bar bar.glif + bar_bar.liga + bar_bar.liga.glif + bar_bar_bar.liga + bar_bar_bar.liga.glif + bar_bar_bar_greater.liga + bar_bar_bar_greater.liga.glif + bar_bar_equal.liga + bar_bar_equal.liga.glif + bar_bar_equal.start + bar_bar_equal.start.glif + bar_bar_greater.liga + bar_bar_greater.liga.glif + bar_bar_hyphen.liga + bar_bar_hyphen.liga.glif + bar_bar_hyphen.start + bar_bar_hyphen.start.glif + bar_braceright.liga + bar_braceright.liga.glif + bar_bracketright.liga + bar_bracketright.liga.glif + bar_equal.liga + bar_equal.liga.glif + bar_equal.start + bar_equal.start.glif + bar_greater.liga + bar_greater.liga.glif + bar_hyphen.liga + bar_hyphen.liga.glif + bar_hyphen.start + bar_hyphen.start.glif blinebelow blinebelow.glif braceleft braceleft.glif + braceleft_bar.liga + braceleft_bar.liga.glif braceright braceright.glif bracketleft bracketleft.glif + bracketleft_bar.liga + bracketleft_bar.liga.glif bracketright bracketright.glif + bracketright_numbersign.liga + bracketright_numbersign.liga.glif breve breve.glif breveacute @@ -612,6 +672,18 @@ colon.glif colon.fig colon.fig.glif + colon_colon.liga + colon_colon.liga.glif + colon_colon_colon.liga + colon_colon_colon.liga.glif + colon_colon_equal.liga + colon_colon_equal.liga.glif + colon_equal.liga + colon_equal.liga.glif + colon_greater.liga + colon_greater.liga.glif + colon_less.liga + colon_less.liga.glif comma comma.glif commaaboverightcmb @@ -628,8 +700,32 @@ dagger.glif daggerdbl daggerdbl.glif + darkshade + darkshade.glif + dbldnhorzbxd + dbldnhorzbxd.glif + dbldnleftbxd + dbldnleftbxd.glif + dbldnrightbxd + dbldnrightbxd.glif + dblhorzbxd + dblhorzbxd.glif dblprimemod dblprimemod.glif + dbluphorzbxd + dbluphorzbxd.glif + dblupleftbxd + dblupleftbxd.glif + dbluprightbxd + dbluprightbxd.glif + dblvertbxd + dblvertbxd.glif + dblverthorzbxd + dblverthorzbxd.glif + dblvertleftbxd + dblvertleftbxd.glif + dblvertrightbxd + dblvertrightbxd.glif dcaron dcaron.glif dcircumflexbelow @@ -668,8 +764,64 @@ divide.glif dlinebelow dlinebelow.glif + dndblhorzsngbxd + dndblhorzsngbxd.glif + dndblleftsngbxd + dndblleftsngbxd.glif + dndblrightsngbxd + dndblrightsngbxd.glif + dneighthblock + dneighthblock.glif + dnfiveeighthsblock + dnfiveeighthsblock.glif + dnhalfblock + dnhalfblock.glif + dnheavyhorzlightbxd + dnheavyhorzlightbxd.glif + dnheavyleftlightbxd + dnheavyleftlightbxd.glif + dnheavyleftuplightbxd + dnheavyleftuplightbxd.glif + dnheavyrightlightbxd + dnheavyrightlightbxd.glif + dnheavyrightuplightbxd + dnheavyrightuplightbxd.glif + dnheavyuphorzlightbxd + dnheavyuphorzlightbxd.glif + dnleftquadrant + dnleftquadrant.glif + dnlighthorzheavybxd + dnlighthorzheavybxd.glif + dnlightleftheavybxd + dnlightleftheavybxd.glif + dnlightleftupheavybxd + dnlightleftupheavybxd.glif + dnlightrightheavybxd + dnlightrightheavybxd.glif + dnlightrightupheavybxd + dnlightrightupheavybxd.glif + dnlightuphorzheavybxd + dnlightuphorzheavybxd.glif + dnquarterblock + dnquarterblock.glif + dnrightquadrant + dnrightquadrant.glif + dnseveneighthsblock + dnseveneighthsblock.glif + dnsnghorzdblbxd + dnsnghorzdblbxd.glif + dnsngleftdblbxd + dnsngleftdblbxd.glif + dnsngrightdblbxd + dnsngrightdblbxd.glif + dnthreeeighthsblock + dnthreeeighthsblock.glif + dnthreequartersblock + dnthreequartersblock.glif dollar dollar.glif + dollar_greater.liga + dollar_greater.liga.glif dong dong.glif dotaccent @@ -738,12 +890,86 @@ eogonek.glif equal equal.glif + equal.end + equal.end.glif + equal.middle + equal.middle.glif + equal.start + equal.start.glif + equal_asciitilde.liga + equal_asciitilde.liga.glif + equal_bar.end + equal_bar.end.glif + equal_bar.liga + equal_bar.liga.glif + equal_bar_bar.end + equal_bar_bar.end.glif + equal_bar_bar.liga + equal_bar_bar.liga.glif + equal_bar_bar_equal.middle + equal_bar_bar_equal.middle.glif + equal_bar_equal.middle + equal_bar_equal.middle.glif + equal_colon_equal.middle + equal_colon_equal.middle.glif + equal_equal.liga + equal_equal.liga.glif + equal_equal_equal.liga + equal_equal_equal.liga.glif + equal_exclam_equal.middle + equal_exclam_equal.middle.glif + equal_greater.end + equal_greater.end.glif + equal_greater.liga + equal_greater.liga.glif + equal_greater_equal.middle + equal_greater_equal.middle.glif + equal_greater_greater.end + equal_greater_greater.end.glif + equal_greater_greater.liga + equal_greater_greater.liga.glif + equal_greater_greater_equal.m + equal_greater_greater_equal.m.glif + equal_less.end + equal_less.end.glif + equal_less.liga + equal_less.liga.glif + equal_less_equal.middle + equal_less_equal.middle.glif + equal_less_less.end + equal_less_less.end.glif + equal_less_less.liga + equal_less_less.liga.glif + equal_less_less_equal.middle + equal_less_less_equal.middle.glif + equal_slash.end + equal_slash.end.glif + equal_slash.liga + equal_slash.liga.glif + equal_slash_equal.middle + equal_slash_equal.middle.glif + equal_slash_slash.end + equal_slash_slash.end.glif + equal_slash_slash.liga + equal_slash_slash.liga.glif + equal_slash_slash_equal.middle + equal_slash_slash_equal.middle.glif eth eth.glif etilde etilde.glif exclam exclam.glif + exclam_asciitilde.liga + exclam_asciitilde.liga.glif + exclam_equal.liga + exclam_equal.liga.glif + exclam_equal_equal.liga + exclam_equal_equal.liga.glif + exclam_exclam.liga + exclam_exclam.liga.glif + exclam_exclam_period.liga + exclam_exclam_period.liga.glif exclamdown exclamdown.glif f @@ -778,6 +1004,8 @@ fracbar.glif fraction fraction.glif + fullblock + fullblock.glif g g.glif gbreve @@ -802,6 +1030,34 @@ gravecmb.cap.glif greater greater.glif + greater_colon.liga + greater_colon.liga.glif + greater_equal + greater_equal.glif + greater_equal.liga + greater_equal.liga.glif + greater_equal.start + greater_equal.start.glif + greater_equal_greater.liga + greater_equal_greater.liga.glif + greater_greater.liga + greater_greater.liga.glif + greater_greater_equal.liga + greater_greater_equal.liga.glif + greater_greater_equal.start + greater_greater_equal.start.glif + greater_greater_greater.liga + greater_greater_greater.liga.glif + greater_greater_hyphen.liga + greater_greater_hyphen.liga.glif + greater_greater_hyphen.start + greater_greater_hyphen.start.glif + greater_hyphen.liga + greater_hyphen.liga.glif + greater_hyphen.start + greater_hyphen.start.glif + greater_hyphen_greater.liga + greater_hyphen_greater.liga.glif greaterequal greaterequal.glif guillemetleft @@ -824,6 +1080,52 @@ hcircumflex.glif hdotbelow hdotbelow.glif + heavydbldashhorzbxd + heavydbldashhorzbxd.glif + heavydbldashvertbxd + heavydbldashvertbxd.glif + heavydnbxd + heavydnbxd.glif + heavydnhorzbxd + heavydnhorzbxd.glif + heavydnleftbxd + heavydnleftbxd.glif + heavydnrightbxd + heavydnrightbxd.glif + heavyhorzbxd + heavyhorzbxd.glif + heavyleftbxd + heavyleftbxd.glif + heavyleftlightrightbxd + heavyleftlightrightbxd.glif + heavyquaddashhorzbxd + heavyquaddashhorzbxd.glif + heavyquaddashvertbxd + heavyquaddashvertbxd.glif + heavyrightbxd + heavyrightbxd.glif + heavytrpldashhorzbxd + heavytrpldashhorzbxd.glif + heavytrpldashvertbxd + heavytrpldashvertbxd.glif + heavyupbxd + heavyupbxd.glif + heavyuphorzbxd + heavyuphorzbxd.glif + heavyupleftbxd + heavyupleftbxd.glif + heavyuplightdnbxd + heavyuplightdnbxd.glif + heavyuprightbxd + heavyuprightbxd.glif + heavyvertbxd + heavyvertbxd.glif + heavyverthorzbxd + heavyverthorzbxd.glif + heavyvertleftbxd + heavyvertleftbxd.glif + heavyvertrightbxd + heavyvertrightbxd.glif hlinebelow hlinebelow.glif hookcmb @@ -840,6 +1142,54 @@ hungarumlautcmb.cap.glif hyphen hyphen.glif + hyphen.end + hyphen.end.glif + hyphen.middle + hyphen.middle.glif + hyphen.start + hyphen.start.glif + hyphen_asciitilde.liga + hyphen_asciitilde.liga.glif + hyphen_bar.end + hyphen_bar.end.glif + hyphen_bar.liga + hyphen_bar.liga.glif + hyphen_bar_bar.end + hyphen_bar_bar.end.glif + hyphen_bar_bar.liga + hyphen_bar_bar.liga.glif + hyphen_bar_bar_hyphen.middle + hyphen_bar_bar_hyphen.middle.glif + hyphen_bar_hyphen.middle + hyphen_bar_hyphen.middle.glif + hyphen_greater.end + hyphen_greater.end.glif + hyphen_greater.liga + hyphen_greater.liga.glif + hyphen_greater_greater.end + hyphen_greater_greater.end.glif + hyphen_greater_greater.liga + hyphen_greater_greater.liga.glif + hyphen_greater_greater_hyphen.m + hyphen_greater_greater_hyphen.m.glif + hyphen_greater_hyphen.middle + hyphen_greater_hyphen.middle.glif + hyphen_hyphen.liga + hyphen_hyphen.liga.glif + hyphen_hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga.glif + hyphen_less.end + hyphen_less.end.glif + hyphen_less.liga + hyphen_less.liga.glif + hyphen_less_hyphen.middle + hyphen_less_hyphen.middle.glif + hyphen_less_less.end + hyphen_less_less.end.glif + hyphen_less_less.liga + hyphen_less_less.liga.glif + hyphen_less_less_hyphen.middle + hyphen_less_less_hyphen.middle.glif i i.glif iacute @@ -894,10 +1244,170 @@ lcommaaccent.glif ldotbelow ldotbelow.glif + leftdnheavyrightuplightbxd + leftdnheavyrightuplightbxd.glif + lefteighthblock + lefteighthblock.glif + leftfiveeighthsblock + leftfiveeighthsblock.glif + lefthalfblock + lefthalfblock.glif + leftheavyrightdnlightbxd + leftheavyrightdnlightbxd.glif + leftheavyrightuplightbxd + leftheavyrightuplightbxd.glif + leftheavyrightvertlightbxd + leftheavyrightvertlightbxd.glif + leftlightrightdnheavybxd + leftlightrightdnheavybxd.glif + leftlightrightupheavybxd + leftlightrightupheavybxd.glif + leftlightrightvertheavybxd + leftlightrightvertheavybxd.glif + leftquarterblock + leftquarterblock.glif + leftseveneighthsblock + leftseveneighthsblock.glif + leftthreeeighthsblock + leftthreeeighthsblock.glif + leftthreequartersblock + leftthreequartersblock.glif + leftupheavyrightdnlightbxd + leftupheavyrightdnlightbxd.glif less less.glif + less_asciitilde.liga + less_asciitilde.liga.glif + less_asciitilde_asciitilde.liga + less_asciitilde_asciitilde.liga.glif + less_asciitilde_greater.liga + less_asciitilde_greater.liga.glif + less_asterisk.liga + less_asterisk.liga.glif + less_asterisk_greater.liga + less_asterisk_greater.liga.glif + less_bar.liga + less_bar.liga.glif + less_bar_bar.liga + less_bar_bar.liga.glif + less_bar_bar_bar.liga + less_bar_bar_bar.liga.glif + less_bar_greater.liga + less_bar_greater.liga.glif + less_colon.liga + less_colon.liga.glif + less_dollar.liga + less_dollar.liga.glif + less_dollar_greater.liga + less_dollar_greater.liga.glif + less_equal + less_equal.glif + less_equal.liga + less_equal.liga.glif + less_equal.start + less_equal.start.glif + less_equal_greater.liga + less_equal_greater.liga.glif + less_equal_less.liga + less_equal_less.liga.glif + less_exclam_hyphen_hyphen.liga + less_exclam_hyphen_hyphen.liga.glif + less_greater.liga + less_greater.liga.glif + less_hyphen.liga + less_hyphen.liga.glif + less_hyphen.start + less_hyphen.start.glif + less_hyphen_greater.liga + less_hyphen_greater.liga.glif + less_hyphen_less.liga + less_hyphen_less.liga.glif + less_less.liga + less_less.liga.glif + less_less_equal.liga + less_less_equal.liga.glif + less_less_equal.start + less_less_equal.start.glif + less_less_hyphen.liga + less_less_hyphen.liga.glif + less_less_hyphen.start + less_less_hyphen.start.glif + less_less_less.liga + less_less_less.liga.glif + less_plus.liga + less_plus.liga.glif + less_plus_greater.liga + less_plus_greater.liga.glif + less_slash.liga + less_slash.liga.glif + less_slash_greater.liga + less_slash_greater.liga.glif lessequal lessequal.glif + lightarcdnleftbxd + lightarcdnleftbxd.glif + lightarcdnrightbxd + lightarcdnrightbxd.glif + lightarcupleftbxd + lightarcupleftbxd.glif + lightarcuprightbxd + lightarcuprightbxd.glif + lightdbldashhorzbxd + lightdbldashhorzbxd.glif + lightdbldashvertbxd + lightdbldashvertbxd.glif + lightdiagcrossbxd + lightdiagcrossbxd.glif + lightdiagupleftdnrightbxd + lightdiagupleftdnrightbxd.glif + lightdiaguprightdnleftbxd + lightdiaguprightdnleftbxd.glif + lightdnbxd + lightdnbxd.glif + lightdnhorzbxd + lightdnhorzbxd.glif + lightdnleftbxd + lightdnleftbxd.glif + lightdnrightbxd + lightdnrightbxd.glif + lighthorzbxd + lighthorzbxd.glif + lightleftbxd + lightleftbxd.glif + lightleftheavyrightbxd + lightleftheavyrightbxd.glif + lightquaddashhorzbxd + lightquaddashhorzbxd.glif + lightquaddashvertbxd + lightquaddashvertbxd.glif + lightrightbxd + lightrightbxd.glif + lightshade + lightshade.glif + lighttrpldashhorzbxd + lighttrpldashhorzbxd.glif + lighttrpldashvertbxd + lighttrpldashvertbxd.glif + lightupbxd + lightupbxd.glif + lightupheavydnbxd + lightupheavydnbxd.glif + lightuphorzbxd + lightuphorzbxd.glif + lightupleftbxd + lightupleftbxd.glif + lightuprightbxd + lightuprightbxd.glif + lightvertbxd + lightvertbxd.glif + lightverthorzbxd + lightverthorzbxd.glif + lightvertleftbxd + lightvertleftbxd.glif + lightvertrightbxd + lightvertrightbxd.glif + ligspacer + ligspacer.glif llinebelow llinebelow.glif lmacrondotbelow @@ -922,6 +1432,8 @@ mdotaccent.glif mdotbelow mdotbelow.glif + mediumshade + mediumshade.glif middotcat middotcat.glif middotcat.cap @@ -968,6 +1480,30 @@ ntilde.glif numbersign numbersign.glif + numbersign.end + numbersign.end.glif + numbersign.middle + numbersign.middle.glif + numbersign.start + numbersign.start.glif + numbersign_braceleft.liga + numbersign_braceleft.liga.glif + numbersign_bracketleft.liga + numbersign_bracketleft.liga.glif + numbersign_colon.liga + numbersign_colon.liga.glif + numbersign_equal.liga + numbersign_equal.liga.glif + numbersign_exclam.liga + numbersign_exclam.liga.glif + numbersign_parenleft.liga + numbersign_parenleft.liga.glif + numbersign_question.liga + numbersign_question.liga.glif + numbersign_underscore.liga + numbersign_underscore.liga.glif + numbersign_underscore_parenleft + numbersign_underscore_parenleft.glif o o.glif oacute @@ -1062,14 +1598,36 @@ parenright.glif percent percent.glif + percent_percent.liga + percent_percent.liga.glif period period.glif + period_equal.liga + period_equal.liga.glif + period_hyphen.liga + period_hyphen.liga.glif + period_period.liga + period_period.liga.glif + period_period_equal.liga + period_period_equal.liga.glif + period_period_less.liga + period_period_less.liga.glif + period_period_period.liga + period_period_period.liga.glif + period_question.liga + period_question.liga.glif periodcentered periodcentered.glif peso peso.glif plus plus.glif + plus_greater.liga + plus_greater.liga.glif + plus_plus.liga + plus_plus.liga.glif + plus_plus_plus.liga + plus_plus_plus.liga.glif plusminus plusminus.glif primemod @@ -1080,6 +1638,14 @@ q.glif question question.glif + question_colon.liga + question_colon.liga.glif + question_equal.liga + question_equal.liga.glif + question_period.liga + question_period.liga.glif + question_question.liga + question_question.liga.glif questiondown questiondown.glif quotedbl @@ -1112,6 +1678,26 @@ rdotbelow.glif registered registered.glif + rightdnheavyleftuplightbxd + rightdnheavyleftuplightbxd.glif + righteighthblock + righteighthblock.glif + righthalfblock + righthalfblock.glif + rightheavyleftdnlightbxd + rightheavyleftdnlightbxd.glif + rightheavyleftuplightbxd + rightheavyleftuplightbxd.glif + rightheavyleftvertlightbxd + rightheavyleftvertlightbxd.glif + rightlightleftdnheavybxd + rightlightleftdnheavybxd.glif + rightlightleftupheavybxd + rightlightleftupheavybxd.glif + rightlightleftvertheavybxd + rightlightleftvertheavybxd.glif + rightupheavyleftdnlightbxd + rightupheavyleftdnlightbxd.glif ring ring.glif ringcmb @@ -1146,6 +1732,8 @@ section.glif semicolon semicolon.glif + semicolon_semicolon.liga + semicolon_semicolon.liga.glif servicemark servicemark.glif seven @@ -1172,6 +1760,24 @@ six.sup.glif slash slash.glif + slash_asterisk.liga + slash_asterisk.liga.glif + slash_backslash.liga + slash_backslash.liga.glif + slash_equal.liga + slash_equal.liga.glif + slash_equal.start + slash_equal.start.glif + slash_greater.liga + slash_greater.liga.glif + slash_slash.liga + slash_slash.liga.glif + slash_slash_equal.liga + slash_slash_equal.liga.glif + slash_slash_equal.start + slash_slash_equal.start.glif + slash_slash_slash.liga + slash_slash_slash.liga.glif space space.glif sterling @@ -1278,6 +1884,14 @@ umacron.glif underscore underscore.glif + underscore.end + underscore.end.glif + underscore.middle + underscore.middle.glif + underscore.start + underscore.start.glif + underscore_bar_underscore.m + underscore_bar_underscore.m.glif uni00A0 uni00A_0.glif uni0326 @@ -1292,10 +1906,88 @@ uni20B_A_.glif uni20BD uni20B_D_.glif + uni2610 + uni2610.glif + uni2611 + uni2611.glif + uni2612 + uni2612.glif + uni2713 + uni2713.glif uniA788 uniA_788.glif + uniE0A0 + uniE_0A_0.glif + uniE0A1 + uniE_0A_1.glif + uniE0A2 + uniE_0A_2.glif + uniE0B0 + uniE_0B_0.glif + uniE0B1 + uniE_0B_1.glif + uniE0B2 + uniE_0B_2.glif + uniE0B3 + uniE_0B_3.glif uogonek uogonek.glif + updblhorzsngbxd + updblhorzsngbxd.glif + updblleftsngbxd + updblleftsngbxd.glif + updblrightsngbxd + updblrightsngbxd.glif + upeighthblock + upeighthblock.glif + uphalfblock + uphalfblock.glif + upheavydnhorzlightbxd + upheavydnhorzlightbxd.glif + upheavyhorzlightbxd + upheavyhorzlightbxd.glif + upheavyleftdnlightbxd + upheavyleftdnlightbxd.glif + upheavyleftlightbxd + upheavyleftlightbxd.glif + upheavyrightdnlightbxd + upheavyrightdnlightbxd.glif + upheavyrightlightbxd + upheavyrightlightbxd.glif + upleftdnleftdnrightquadrant + upleftdnleftdnrightquadrant.glif + upleftdnrightquadrant + upleftdnrightquadrant.glif + upleftquadrant + upleftquadrant.glif + upleftuprightdnleftquadrant + upleftuprightdnleftquadrant.glif + upleftuprightdnrightquadrant + upleftuprightdnrightquadrant.glif + uplightdnhorzheavybxd + uplightdnhorzheavybxd.glif + uplighthorzheavybxd + uplighthorzheavybxd.glif + uplightleftdnheavybxd + uplightleftdnheavybxd.glif + uplightleftheavybxd + uplightleftheavybxd.glif + uplightrightdnheavybxd + uplightrightdnheavybxd.glif + uplightrightheavybxd + uplightrightheavybxd.glif + uprightdnleftdnrightquadrant + uprightdnleftdnrightquadrant.glif + uprightdnleftquadrant + uprightdnleftquadrant.glif + uprightquadrant + uprightquadrant.glif + upsnghorzdblbxd + upsnghorzdblbxd.glif + upsngleftdblbxd + upsngleftdblbxd.glif + upsngrightdblbxd + upsngrightdblbxd.glif uring uring.glif utilde @@ -1304,12 +1996,38 @@ v.glif vdotbelow vdotbelow.glif + vertdblhorzsngbxd + vertdblhorzsngbxd.glif + vertdblleftsngbxd + vertdblleftsngbxd.glif + vertdblrightsngbxd + vertdblrightsngbxd.glif + vertheavyhorzlightbxd + vertheavyhorzlightbxd.glif + vertheavyleftlightbxd + vertheavyleftlightbxd.glif + vertheavyrightlightbxd + vertheavyrightlightbxd.glif verticallinelowmod verticallinelowmod.glif verticallinemod verticallinemod.glif + vertlighthorzheavybxd + vertlighthorzheavybxd.glif + vertlightleftheavybxd + vertlightleftheavybxd.glif + vertlightrightheavybxd + vertlightrightheavybxd.glif + vertsnghorzdblbxd + vertsnghorzdblbxd.glif + vertsngleftdblbxd + vertsngleftdblbxd.glif + vertsngrightdblbxd + vertsngrightdblbxd.glif w w.glif + w_w_w.liga + w_w_w.liga.glif wacute wacute.glif wcircumflex diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/darkshade.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/darkshade.glif new file mode 100644 index 00000000..fd2eb1c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/darkshade.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dbldnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dbldnhorzbxd.glif new file mode 100644 index 00000000..f392a523 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dbldnhorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dbldnleftbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dbldnleftbxd.glif new file mode 100644 index 00000000..cc38a9f8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dbldnleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dbldnrightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dbldnrightbxd.glif new file mode 100644 index 00000000..ed0943dc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dbldnrightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dblhorzbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dblhorzbxd.glif new file mode 100644 index 00000000..7c8a7467 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dblhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dbluphorzbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dbluphorzbxd.glif new file mode 100644 index 00000000..9ddbe8a4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dbluphorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dblupleftbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dblupleftbxd.glif new file mode 100644 index 00000000..05e6856a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dblupleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dbluprightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dbluprightbxd.glif new file mode 100644 index 00000000..851e7180 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dbluprightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dblvertbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dblvertbxd.glif new file mode 100644 index 00000000..234700a0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dblvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dblverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dblverthorzbxd.glif new file mode 100644 index 00000000..291d92b3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dblverthorzbxd.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dblvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dblvertleftbxd.glif new file mode 100644 index 00000000..6e1c7540 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dblvertleftbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dblvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dblvertrightbxd.glif new file mode 100644 index 00000000..a285c627 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dblvertrightbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dcaron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dcaron.glif index 95f34b79..83d141f3 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dcaron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dcircumflexbelow.glif index 7d2548e6..477cfcd7 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dcircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dcircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dcroat.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dcroat.glif index e5e52c50..8de2d5c8 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dcroat.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dcroat.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ddotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ddotbelow.glif index b7d2f1c7..1f468297 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ddotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ddotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresisacute.cap.glif index 8b772d89..e967effb 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresisacute.cap.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresisacute.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresisacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresisacute.glif index e60c35ec..337c9f11 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresisacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresisacute.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresisbelowcmb.glif index de06a475..39000720 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresisbelowcmb.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresisbelowcmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresiscaron.cap.glif index 973ad040..eb4b5b0c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresiscaron.cap.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresiscaron.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresiscaron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresiscaron.glif index 32053e94..3c70a152 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresiscaron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresiscaron.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresisgrave.cap.glif index ce87198a..0d6905ba 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresisgrave.cap.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresisgrave.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresisgrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresisgrave.glif index 4bd17bff..c26ad171 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresisgrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresisgrave.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresismacron.cap.glif index 34db920c..a15cc4e2 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresismacron.cap.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresismacron.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresismacron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresismacron.glif index 9e97596e..045b3ab3 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresismacron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dieresismacron.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dlinebelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dlinebelow.glif index 295afde8..9f87d786 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dndblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dndblhorzsngbxd.glif new file mode 100644 index 00000000..dada8723 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dndblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dndblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dndblleftsngbxd.glif new file mode 100644 index 00000000..d0f7e013 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dndblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dndblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dndblrightsngbxd.glif new file mode 100644 index 00000000..eb75f406 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dndblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dneighthblock.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dneighthblock.glif new file mode 100644 index 00000000..ff791c74 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dneighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnfiveeighthsblock.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnfiveeighthsblock.glif new file mode 100644 index 00000000..99bd1498 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnhalfblock.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnhalfblock.glif new file mode 100644 index 00000000..001cf3fb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnhalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyhorzlightbxd.glif new file mode 100644 index 00000000..5f76f358 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyleftlightbxd.glif new file mode 100644 index 00000000..a3d9cb06 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyleftuplightbxd.glif new file mode 100644 index 00000000..6c7093bd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyrightlightbxd.glif new file mode 100644 index 00000000..27febfa0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyrightuplightbxd.glif new file mode 100644 index 00000000..4eb2d1c5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyuphorzlightbxd.glif new file mode 100644 index 00000000..9daf514c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyuphorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnleftquadrant.glif new file mode 100644 index 00000000..42729338 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnlighthorzheavybxd.glif new file mode 100644 index 00000000..bc286b79 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnlighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnlightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnlightleftheavybxd.glif new file mode 100644 index 00000000..9bcc664a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnlightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnlightleftupheavybxd.glif new file mode 100644 index 00000000..fd8c2750 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnlightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnlightrightheavybxd.glif new file mode 100644 index 00000000..c00032e4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnlightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnlightrightupheavybxd.glif new file mode 100644 index 00000000..f526ec48 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnlightuphorzheavybxd.glif new file mode 100644 index 00000000..235ae3ed --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnlightuphorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnquarterblock.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnquarterblock.glif new file mode 100644 index 00000000..c2180b50 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnrightquadrant.glif new file mode 100644 index 00000000..9858382e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnrightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnseveneighthsblock.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnseveneighthsblock.glif new file mode 100644 index 00000000..ecdac3da --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnsnghorzdblbxd.glif new file mode 100644 index 00000000..44c02275 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnsngleftdblbxd.glif new file mode 100644 index 00000000..302a7c79 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnsngrightdblbxd.glif new file mode 100644 index 00000000..52aa043f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnthreeeighthsblock.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnthreeeighthsblock.glif new file mode 100644 index 00000000..7febe2aa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnthreequartersblock.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnthreequartersblock.glif new file mode 100644 index 00000000..a79dae14 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dnthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dollar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dollar_greater.liga.glif new file mode 100644 index 00000000..da7def8c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dollar_greater.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dotlessi.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dotlessi.glif index 40f54742..cf9ca398 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dotlessi.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dotlessi.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dotlessj.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dotlessj.glif index 8015fe4a..4dc63eef 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dotlessj.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/dotlessj.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/eacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/eacute.glif index 05052d4f..399df89f 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/eacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/eacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ebreve.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ebreve.glif index 401a167c..18c2ad77 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ebreve.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ebreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecaron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecaron.glif index 146346b7..26eb285c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecaron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflex.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflex.glif index 5bc71508..9e58daaa 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexacute.glif index 84429885..8b714f6b 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexdotbelow.glif index 97fbac1f..0db5c796 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexgrave.glif index ad73af0a..91bd306c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexhookabove.glif index fa17a38d..6c51cc5c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflextilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflextilde.glif index 47fd8a9a..1833aca7 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/edieresis.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/edieresis.glif index 7f72c7e6..48a77fa0 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/edieresis.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/edieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/edotaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/edotaccent.glif index bd7c0915..9f5a28c1 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/edotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/edotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/edotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/edotbelow.glif index 46c0ec2f..0624bc0a 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/edotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/edotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/egrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/egrave.glif index 325d1a80..d1f3f1ca 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/egrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/egrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ehookabove.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ehookabove.glif index 09b25c91..5bd60e3f 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ehookabove.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ehookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/eight.num.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/eight.num.glif index 34029129..cc1ad559 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/eight.num.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/eight.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/emacron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/emacron.glif index 4349a61b..85931f32 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/emacron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/emacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/eogonek.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/eogonek.glif index 1b5b6b78..3c59bcfd 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/eogonek.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/eogonek.glif @@ -2,8 +2,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal.end.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal.end.glif new file mode 100644 index 00000000..e05c308a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal.middle.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal.middle.glif new file mode 100644 index 00000000..f3275938 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal.start.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal.start.glif new file mode 100644 index 00000000..efdfb52e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_asciitilde.liga.glif new file mode 100644 index 00000000..f5105e4b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_asciitilde.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar.end.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar.end.glif new file mode 100644 index 00000000..fcc17249 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar.liga.glif new file mode 100644 index 00000000..a2773a49 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_bar.end.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_bar.end.glif new file mode 100644 index 00000000..b9eff2b0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_bar.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_bar.liga.glif new file mode 100644 index 00000000..e122b00e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_bar.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_bar_equal.middle.glif new file mode 100644 index 00000000..742cdcac --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_bar_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_equal.middle.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_equal.middle.glif new file mode 100644 index 00000000..c45fd703 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_equal.middle.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_colon_equal.middle.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_colon_equal.middle.glif new file mode 100644 index 00000000..69da946b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_colon_equal.middle.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_equal.liga.glif new file mode 100644 index 00000000..cc740e9f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_equal.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_equal_equal.liga.glif new file mode 100644 index 00000000..377d51da --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_equal_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_exclam_equal.middle.glif new file mode 100644 index 00000000..4894e00b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_exclam_equal.middle.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater.end.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater.end.glif new file mode 100644 index 00000000..8f5e36f1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater.end.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater.liga.glif new file mode 100644 index 00000000..a0d26f18 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_equal.middle.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_equal.middle.glif new file mode 100644 index 00000000..52c55c28 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_greater.end.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_greater.end.glif new file mode 100644 index 00000000..0dfb7953 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_greater.end.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_greater.liga.glif new file mode 100644 index 00000000..f92f2765 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_greater_equal.m.glif new file mode 100644 index 00000000..52a6e098 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_greater_equal.m.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_less.end.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_less.end.glif new file mode 100644 index 00000000..f18dd631 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_less.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_less.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_less.liga.glif new file mode 100644 index 00000000..d4bb1040 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_less.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_equal.middle.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_equal.middle.glif new file mode 100644 index 00000000..527d1f4e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_less.end.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_less.end.glif new file mode 100644 index 00000000..a625f412 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_less.end.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_less.liga.glif new file mode 100644 index 00000000..5cf1d5c1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_less.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_less_equal.middle.glif new file mode 100644 index 00000000..bb9050a6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_less_equal.middle.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash.end.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash.end.glif new file mode 100644 index 00000000..2b46b9a0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash.liga.glif new file mode 100644 index 00000000..e06a26ee --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_equal.middle.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_equal.middle.glif new file mode 100644 index 00000000..b492ffd0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_equal.middle.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_slash.end.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_slash.end.glif new file mode 100644 index 00000000..6ea3d7e7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_slash.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_slash.liga.glif new file mode 100644 index 00000000..f15a81c3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_slash.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_slash_equal.middle.glif new file mode 100644 index 00000000..288c4c6c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_slash_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/etilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/etilde.glif index 7eced16d..4270e672 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/etilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/etilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/exclam_asciitilde.liga.glif new file mode 100644 index 00000000..8d959c0d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/exclam_asciitilde.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/exclam_equal.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/exclam_equal.liga.glif new file mode 100644 index 00000000..79f8fc55 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/exclam_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/exclam_equal_equal.liga.glif new file mode 100644 index 00000000..e1b10c8a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/exclam_equal_equal.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/exclam_exclam.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/exclam_exclam.liga.glif new file mode 100644 index 00000000..92766d8a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/exclam_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/exclam_exclam_period.liga.glif new file mode 100644 index 00000000..782589da --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/exclam_exclam_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/five.num.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/five.num.glif index 101e444c..c299993d 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/five.num.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/five.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/four.num.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/four.num.glif index 21b51dd4..e02b8324 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/four.num.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/four.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/fullblock.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/fullblock.glif new file mode 100644 index 00000000..2c547d1b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/fullblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gbreve.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gbreve.glif index 2d710e92..8117d132 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gbreve.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gbreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gcaron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gcaron.glif index a400a704..cd79619e 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gcaron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gcircumflex.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gcircumflex.glif index 9e61bdd6..645118e9 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gcommaaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gcommaaccent.glif index 0ac46cc7..0e4399e3 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gdotaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gdotaccent.glif index 300940ab..fcb34d64 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gmacron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gmacron.glif index 04268aeb..d572dfa2 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gmacron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gmacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gravecmb.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gravecmb.glif index eb3b0485..4d4f7b14 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gravecmb.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/gravecmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_colon.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_colon.liga.glif new file mode 100644 index 00000000..693ed21a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal.glif new file mode 100644 index 00000000..b54d5c28 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal.liga.glif new file mode 100644 index 00000000..c54cf3fe --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal.start.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal.start.glif new file mode 100644 index 00000000..d419e649 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal_greater.liga.glif new file mode 100644 index 00000000..734a743c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater.liga.glif new file mode 100644 index 00000000..c56c9ec0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_equal.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_equal.liga.glif new file mode 100644 index 00000000..b12030c5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_equal.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_equal.start.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_equal.start.glif new file mode 100644 index 00000000..a42e93b5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_equal.start.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_greater.liga.glif new file mode 100644 index 00000000..4584a768 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_hyphen.liga.glif new file mode 100644 index 00000000..d0e48a27 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_hyphen.start.glif new file mode 100644 index 00000000..a6750fd5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_hyphen.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_hyphen.liga.glif new file mode 100644 index 00000000..dbebcf87 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_hyphen.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_hyphen.start.glif new file mode 100644 index 00000000..418b0af6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_hyphen.start.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_hyphen_greater.liga.glif new file mode 100644 index 00000000..1c33c516 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/greater_hyphen_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hbrevebelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hbrevebelow.glif index 4324cbea..b2ff468f 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hbrevebelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hbrevebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hcircumflex.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hcircumflex.glif index 442003ad..304d676a 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hdotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hdotbelow.glif index 708d7055..29d471a3 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavydbldashhorzbxd.glif new file mode 100644 index 00000000..b28bd1b7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavydbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavydbldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavydbldashvertbxd.glif new file mode 100644 index 00000000..8b7ac4c8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavydbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavydnbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavydnbxd.glif new file mode 100644 index 00000000..dd069ef3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavydnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavydnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavydnhorzbxd.glif new file mode 100644 index 00000000..418b24f4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavydnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavydnleftbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavydnleftbxd.glif new file mode 100644 index 00000000..25677143 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavydnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavydnrightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavydnrightbxd.glif new file mode 100644 index 00000000..a2a6c724 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavydnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyhorzbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyhorzbxd.glif new file mode 100644 index 00000000..eb7ed0e5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyhorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyleftbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyleftbxd.glif new file mode 100644 index 00000000..739d1d83 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyleftlightrightbxd.glif new file mode 100644 index 00000000..48b1cb1d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyleftlightrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyquaddashhorzbxd.glif new file mode 100644 index 00000000..6c22b67f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyquaddashvertbxd.glif new file mode 100644 index 00000000..331ba56b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyrightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyrightbxd.glif new file mode 100644 index 00000000..b7130c91 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavytrpldashhorzbxd.glif new file mode 100644 index 00000000..747cbde7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavytrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavytrpldashvertbxd.glif new file mode 100644 index 00000000..c6fca1c8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavytrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyupbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyupbxd.glif new file mode 100644 index 00000000..9b36718c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyuphorzbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyuphorzbxd.glif new file mode 100644 index 00000000..6e3464aa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyupleftbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyupleftbxd.glif new file mode 100644 index 00000000..4225ae29 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyuplightdnbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyuplightdnbxd.glif new file mode 100644 index 00000000..3eef537d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyuplightdnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyuprightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyuprightbxd.glif new file mode 100644 index 00000000..99f59eb1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyvertbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyvertbxd.glif new file mode 100644 index 00000000..dc66b40b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyverthorzbxd.glif new file mode 100644 index 00000000..6f8939b4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyvertleftbxd.glif new file mode 100644 index 00000000..f3a2fbc2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyvertrightbxd.glif new file mode 100644 index 00000000..cb87aa5d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/heavyvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hlinebelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hlinebelow.glif index c5544064..fbbddfa0 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hookcmb.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hookcmb.glif index 20d05085..140d93df 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hookcmb.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hookcmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/horizontalbar.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/horizontalbar.glif index 2c2b288d..ef4b3086 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/horizontalbar.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/horizontalbar.glif @@ -5,10 +5,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen.end.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen.end.glif new file mode 100644 index 00000000..10d1c140 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen.middle.glif new file mode 100644 index 00000000..0095331e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen.start.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen.start.glif new file mode 100644 index 00000000..5f612f1d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_asciitilde.liga.glif new file mode 100644 index 00000000..fdf1bf59 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_asciitilde.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar.end.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar.end.glif new file mode 100644 index 00000000..c54806aa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar.end.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar.liga.glif new file mode 100644 index 00000000..35c02745 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_bar.end.glif new file mode 100644 index 00000000..691af008 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_bar.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_bar.liga.glif new file mode 100644 index 00000000..12538a9f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif new file mode 100644 index 00000000..37799f59 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_hyphen.middle.glif new file mode 100644 index 00000000..8bd8a9bd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater.end.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater.end.glif new file mode 100644 index 00000000..ef8dee43 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater.liga.glif new file mode 100644 index 00000000..87df9b3b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_greater.end.glif new file mode 100644 index 00000000..37c00cdc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_greater.end.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_greater.liga.glif new file mode 100644 index 00000000..3709039b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif new file mode 100644 index 00000000..47656232 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_hyphen.middle.glif new file mode 100644 index 00000000..6e9c70d7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_hyphen.liga.glif new file mode 100644 index 00000000..4c49ab56 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_hyphen.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..52fb755c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less.end.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less.end.glif new file mode 100644 index 00000000..3e8c99c7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less.end.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less.liga.glif new file mode 100644 index 00000000..d1f892da --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_hyphen.middle.glif new file mode 100644 index 00000000..2dafc435 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_less.end.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_less.end.glif new file mode 100644 index 00000000..564fb5d1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_less.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_less.liga.glif new file mode 100644 index 00000000..685516cc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_less.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif new file mode 100644 index 00000000..68ac6359 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/iacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/iacute.glif index b7da390a..f5ce7650 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/iacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/iacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ibreve.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ibreve.glif index 2a73cb5b..533d94d1 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ibreve.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ibreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/icaron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/icaron.glif index d23cb80e..cb78a16b 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/icaron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/icaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/icircumflex.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/icircumflex.glif index bf4a2358..847b3013 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/icircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/icircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/idieresis.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/idieresis.glif index aac78d24..028d1c1d 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/idieresis.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/idieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/idotaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/idotaccent.glif index af5f83e7..ad1bb427 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/idotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/idotaccent.glif @@ -5,10 +5,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/idotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/idotbelow.glif index d9bad1b4..82567491 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/idotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/idotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/igrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/igrave.glif index c7e52568..ce1fbe2d 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/igrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/igrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ihookabove.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ihookabove.glif index cea0851c..5b2c399a 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ihookabove.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ihookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/imacron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/imacron.glif index 6f026657..f1d3e578 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/imacron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/imacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/itilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/itilde.glif index 89a23d83..ebf72a87 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/itilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/itilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/jcaron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/jcaron.glif index 02e7845b..84982632 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/jcaron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/jcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/jcircumflex.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/jcircumflex.glif index 4a86aeec..594429c1 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/jcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/jcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/kcommaaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/kcommaaccent.glif index e899db08..db33861e 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/kcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/kcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/kdotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/kdotbelow.glif index 4d178543..0e91391b 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/kdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/kdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/klinebelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/klinebelow.glif index ae310c53..66031605 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/klinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/klinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/l.dot.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/l.dot.glif index 589c87ab..d5e7d550 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/l.dot.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/l.dot.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lacute.glif index fd1ae4b9..67da2113 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lcaron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lcaron.glif index 0de07a28..76f05128 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lcaron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lcircumflexbelow.glif index c97e7df4..38c60e33 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lcircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lcircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lcommaaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lcommaaccent.glif index 2794ce4c..d3dc0ffb 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ldotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ldotbelow.glif index 9271761b..eb8d5ac9 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ldotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ldotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftdnheavyrightuplightbxd.glif new file mode 100644 index 00000000..a8f8305a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftdnheavyrightuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lefteighthblock.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lefteighthblock.glif new file mode 100644 index 00000000..8d44dad4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lefteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftfiveeighthsblock.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftfiveeighthsblock.glif new file mode 100644 index 00000000..0eb9ccfc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lefthalfblock.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lefthalfblock.glif new file mode 100644 index 00000000..325c05f6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lefthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftheavyrightdnlightbxd.glif new file mode 100644 index 00000000..86dcef33 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftheavyrightuplightbxd.glif new file mode 100644 index 00000000..e0b44888 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftheavyrightvertlightbxd.glif new file mode 100644 index 00000000..430b42ee --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftheavyrightvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftlightrightdnheavybxd.glif new file mode 100644 index 00000000..d9ea942f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftlightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftlightrightupheavybxd.glif new file mode 100644 index 00000000..166314ac --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftlightrightvertheavybxd.glif new file mode 100644 index 00000000..d46de732 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftlightrightvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftquarterblock.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftquarterblock.glif new file mode 100644 index 00000000..036dad83 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftseveneighthsblock.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftseveneighthsblock.glif new file mode 100644 index 00000000..74b69747 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftthreeeighthsblock.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftthreeeighthsblock.glif new file mode 100644 index 00000000..e5c4283a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftthreequartersblock.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftthreequartersblock.glif new file mode 100644 index 00000000..5ae5b2e3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftupheavyrightdnlightbxd.glif new file mode 100644 index 00000000..73a76f66 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/leftupheavyrightdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_asciitilde.liga.glif new file mode 100644 index 00000000..079f6deb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_asciitilde.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..eb672fcb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_asciitilde_greater.liga.glif new file mode 100644 index 00000000..fcad3480 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_asciitilde_greater.liga.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_asterisk.liga.glif new file mode 100644 index 00000000..44fa2796 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_asterisk_greater.liga.glif new file mode 100644 index 00000000..1699358e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_asterisk_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_bar.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_bar.liga.glif new file mode 100644 index 00000000..b0945934 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_bar.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_bar_bar.liga.glif new file mode 100644 index 00000000..954a8299 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_bar_bar.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_bar_bar_bar.liga.glif new file mode 100644 index 00000000..b55351e5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_bar_bar_bar.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_bar_greater.liga.glif new file mode 100644 index 00000000..597f9db0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_bar_greater.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_colon.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_colon.liga.glif new file mode 100644 index 00000000..c0987454 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_dollar.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_dollar.liga.glif new file mode 100644 index 00000000..8c36d60d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_dollar.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_dollar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_dollar_greater.liga.glif new file mode 100644 index 00000000..144f718d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_dollar_greater.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_equal.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_equal.glif new file mode 100644 index 00000000..00e187c2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_equal.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_equal.liga.glif new file mode 100644 index 00000000..a852b29c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_equal.start.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_equal.start.glif new file mode 100644 index 00000000..5d09bf52 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_equal.start.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_equal_greater.liga.glif new file mode 100644 index 00000000..c466db6b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_equal_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_equal_less.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_equal_less.liga.glif new file mode 100644 index 00000000..f2ddb84b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_equal_less.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..e893dc36 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_greater.liga.glif new file mode 100644 index 00000000..84f24553 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_greater.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen.liga.glif new file mode 100644 index 00000000..8fcfa92d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen.start.glif new file mode 100644 index 00000000..ff30d3f0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen_greater.liga.glif new file mode 100644 index 00000000..1baa0c11 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen_greater.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen_less.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen_less.liga.glif new file mode 100644 index 00000000..0ba49d47 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen_less.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_less.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_less.liga.glif new file mode 100644 index 00000000..5e90a9ab --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_less.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_less_equal.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_less_equal.liga.glif new file mode 100644 index 00000000..80596f0b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_less_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_less_equal.start.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_less_equal.start.glif new file mode 100644 index 00000000..0b376598 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_less_equal.start.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_less_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_less_hyphen.liga.glif new file mode 100644 index 00000000..73c0d07c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_less_hyphen.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_less_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_less_hyphen.start.glif new file mode 100644 index 00000000..5694f258 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_less_hyphen.start.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_less_less.liga.glif new file mode 100644 index 00000000..2b643117 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_less_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_plus.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_plus.liga.glif new file mode 100644 index 00000000..e4e7b1b4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_plus.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_plus_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_plus_greater.liga.glif new file mode 100644 index 00000000..ae5cf8dd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_plus_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_slash.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_slash.liga.glif new file mode 100644 index 00000000..c4323a4b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_slash.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_slash_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_slash_greater.liga.glif new file mode 100644 index 00000000..19dbdf1a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/less_slash_greater.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightarcdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightarcdnleftbxd.glif new file mode 100644 index 00000000..7b2ae69c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightarcdnleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightarcdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightarcdnrightbxd.glif new file mode 100644 index 00000000..e77db64a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightarcdnrightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightarcupleftbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightarcupleftbxd.glif new file mode 100644 index 00000000..8c04e6ea --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightarcupleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightarcuprightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightarcuprightbxd.glif new file mode 100644 index 00000000..aa59014b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightarcuprightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdbldashhorzbxd.glif new file mode 100644 index 00000000..d4979b79 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdbldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdbldashvertbxd.glif new file mode 100644 index 00000000..fbafb510 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdiagcrossbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdiagcrossbxd.glif new file mode 100644 index 00000000..f5ba0d7e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdiagcrossbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdiagupleftdnrightbxd.glif new file mode 100644 index 00000000..f5b5b097 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdiagupleftdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdiaguprightdnleftbxd.glif new file mode 100644 index 00000000..e6f59836 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdiaguprightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdnbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdnbxd.glif new file mode 100644 index 00000000..bdae562a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdnhorzbxd.glif new file mode 100644 index 00000000..d7712d74 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdnleftbxd.glif new file mode 100644 index 00000000..5374d7a2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdnrightbxd.glif new file mode 100644 index 00000000..fa3340d9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lighthorzbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lighthorzbxd.glif new file mode 100644 index 00000000..25b29983 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lighthorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightleftbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightleftbxd.glif new file mode 100644 index 00000000..a8624b19 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightleftheavyrightbxd.glif new file mode 100644 index 00000000..764336e2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightleftheavyrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightquaddashhorzbxd.glif new file mode 100644 index 00000000..35e38e1a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightquaddashvertbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightquaddashvertbxd.glif new file mode 100644 index 00000000..072ed15c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightrightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightrightbxd.glif new file mode 100644 index 00000000..b667c190 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightshade.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightshade.glif new file mode 100644 index 00000000..156f38e4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightshade.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lighttrpldashhorzbxd.glif new file mode 100644 index 00000000..19cbe90a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lighttrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lighttrpldashvertbxd.glif new file mode 100644 index 00000000..42b0a891 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lighttrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightupbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightupbxd.glif new file mode 100644 index 00000000..25fa23f3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightupheavydnbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightupheavydnbxd.glif new file mode 100644 index 00000000..8d64ef66 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightupheavydnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightuphorzbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightuphorzbxd.glif new file mode 100644 index 00000000..a55536d4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightupleftbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightupleftbxd.glif new file mode 100644 index 00000000..e36a0903 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightuprightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightuprightbxd.glif new file mode 100644 index 00000000..46263e65 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightvertbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightvertbxd.glif new file mode 100644 index 00000000..c8075b0c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightverthorzbxd.glif new file mode 100644 index 00000000..d2bc79d5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightvertleftbxd.glif new file mode 100644 index 00000000..1912526f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightvertrightbxd.glif new file mode 100644 index 00000000..c3d4b72d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lightvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ligspacer.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ligspacer.glif new file mode 100644 index 00000000..aaf0214e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ligspacer.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/llinebelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/llinebelow.glif index 5afde641..ec96eaf1 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/llinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/llinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lmacrondotbelow.glif index bab1d424..424016ec 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lmacrondotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/lmacrondotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/macute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/macute.glif index ae29fc4c..01be7c0c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/macute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/macute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/mdotaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/mdotaccent.glif index 936fa894..7e457f02 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/mdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/mdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/mdotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/mdotbelow.glif index 856de70a..13d17c03 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/mdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/mdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/mediumshade.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/mediumshade.glif new file mode 100644 index 00000000..4e438ef8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/mediumshade.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/nacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/nacute.glif index ed1513a9..08206b69 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/nacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/nacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ncaron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ncaron.glif index 891a3d06..4bc7f8e5 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ncaron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ncaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ncircumflexbelow.glif index bccadf91..86a82565 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ncircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ncircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ncommaaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ncommaaccent.glif index 95a1fb11..44e4a602 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ncommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ncommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ndotaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ndotaccent.glif index 27d8c29d..bece7a92 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ndotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ndotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ndotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ndotbelow.glif index 1928b72a..9402f27f 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ngrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ngrave.glif index f85b2fb2..3fa155f0 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ngrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/nine.num.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/nine.num.glif index f2d046c1..ebb0b622 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/nine.num.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/nine.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/nlinebelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/nlinebelow.glif index 532ba93f..7a00f5c8 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/nlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/nlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ntilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ntilde.glif index d2f296ff..5c25937e 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ntilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign.end.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign.end.glif new file mode 100644 index 00000000..eef7b27c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign.end.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign.middle.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign.middle.glif new file mode 100644 index 00000000..03c60836 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign.start.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign.start.glif new file mode 100644 index 00000000..29c1d13d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign.start.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_braceleft.liga.glif new file mode 100644 index 00000000..681c2ffa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_braceleft.liga.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_bracketleft.liga.glif new file mode 100644 index 00000000..6b53f3d7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_bracketleft.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_colon.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_colon.liga.glif new file mode 100644 index 00000000..9fb43c23 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_colon.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_equal.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_equal.liga.glif new file mode 100644 index 00000000..3a535aa2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_equal.liga.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_exclam.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_exclam.liga.glif new file mode 100644 index 00000000..a808d38f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_parenleft.liga.glif new file mode 100644 index 00000000..4bcfaacc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_parenleft.liga.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_question.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_question.liga.glif new file mode 100644 index 00000000..6f44e44c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_underscore.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_underscore.liga.glif new file mode 100644 index 00000000..1e520666 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_underscore.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_underscore_parenleft.glif new file mode 100644 index 00000000..b0967f57 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_underscore_parenleft.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/oacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/oacute.glif index 90cea9e8..c59ed529 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/oacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/oacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/obreve.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/obreve.glif index 1be446a8..651b0598 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/obreve.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/obreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocaron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocaron.glif index a9d7bf82..ea9b04f6 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocaron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflex.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflex.glif index 6cf83d9f..1fc2fb79 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexacute.glif index 7d30207b..12bf0456 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexdotbelow.glif index 9e402d45..58be75f4 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexgrave.glif index 3ade7faa..a4ddd22a 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexhookabove.glif index 432fa5c1..de99d252 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflextilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflextilde.glif index fa50fa8b..2c56fdf1 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/odieresis.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/odieresis.glif index 955a0b45..56948fc1 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/odieresis.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/odieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/odotaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/odotaccent.glif index f7a6d9ab..56c7beb2 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/odotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/odotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/odotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/odotbelow.glif index 2cea95cc..8d7d0312 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/odotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/odotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ograve.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ograve.glif index cb02d241..d3a1061c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ograve.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ograve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohookabove.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohookabove.glif index f955414c..e3b2b63f 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohookabove.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohorn.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohorn.glif index 6b9e3532..b3decd6d 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohorn.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohorn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohornacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohornacute.glif index 0e62e69b..cd103289 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohornacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohorndotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohorndotbelow.glif index 39f93ec0..efc6deab 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohorndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohorndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohorngrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohorngrave.glif index a17e15aa..eb7bc30b 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohorngrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohorngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohornhookabove.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohornhookabove.glif index e1e6bfa3..0bd937eb 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohorntilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohorntilde.glif index fe3b8525..1a6e3d2f 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohorntilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohorntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohungarumlaut.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohungarumlaut.glif index a3d7ee9d..5ec0df73 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohungarumlaut.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ohungarumlaut.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/omacron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/omacron.glif index 90250ce8..4d29d440 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/omacron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/omacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/one.num.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/one.num.glif index b7c7edcc..b8fcdd09 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/one.num.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/one.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/otilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/otilde.glif index e2046762..f3f6637b 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/otilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/otilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/percent_percent.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/percent_percent.liga.glif new file mode 100644 index 00000000..8d19d00a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/percent_percent.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_equal.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_equal.liga.glif new file mode 100644 index 00000000..10f44a5e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_hyphen.liga.glif new file mode 100644 index 00000000..e7d416b9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_period.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_period.liga.glif new file mode 100644 index 00000000..7040f36f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_period_equal.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_period_equal.liga.glif new file mode 100644 index 00000000..034826dc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_period_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_period_less.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_period_less.liga.glif new file mode 100644 index 00000000..f3a825e9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_period_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_period_period.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_period_period.liga.glif new file mode 100644 index 00000000..d3a1d6bb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_period_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_question.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_question.liga.glif new file mode 100644 index 00000000..258c1c48 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/period_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/plus_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/plus_greater.liga.glif new file mode 100644 index 00000000..5407614e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/plus_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/plus_plus.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/plus_plus.liga.glif new file mode 100644 index 00000000..0a72935e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/plus_plus.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/plus_plus_plus.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/plus_plus_plus.liga.glif new file mode 100644 index 00000000..e7798e7c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/plus_plus_plus.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/question_colon.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/question_colon.liga.glif new file mode 100644 index 00000000..27ce8018 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/question_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/question_equal.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/question_equal.liga.glif new file mode 100644 index 00000000..71919d86 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/question_equal.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/question_period.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/question_period.liga.glif new file mode 100644 index 00000000..80143bb3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/question_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/question_question.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/question_question.liga.glif new file mode 100644 index 00000000..e6e7c700 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/question_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/racute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/racute.glif index 495a8d30..5884cc2a 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/racute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/racute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rcaron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rcaron.glif index 6c65ad7b..9255e24c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rcaron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rcommaaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rcommaaccent.glif index 29248ec8..9c0c643d 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rdotaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rdotaccent.glif index 28dc55d2..175bdeba 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rdotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rdotbelow.glif index 3f8aec3f..01ce3303 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightdnheavyleftuplightbxd.glif new file mode 100644 index 00000000..a37f48a4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightdnheavyleftuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/righteighthblock.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/righteighthblock.glif new file mode 100644 index 00000000..9d954a40 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/righteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/righthalfblock.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/righthalfblock.glif new file mode 100644 index 00000000..7d4f8cef --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/righthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightheavyleftdnlightbxd.glif new file mode 100644 index 00000000..096861bd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightheavyleftuplightbxd.glif new file mode 100644 index 00000000..4dd3b32e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightheavyleftvertlightbxd.glif new file mode 100644 index 00000000..024e2eab --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightheavyleftvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightlightleftdnheavybxd.glif new file mode 100644 index 00000000..b0c45355 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightlightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightlightleftupheavybxd.glif new file mode 100644 index 00000000..97e94f0e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightlightleftvertheavybxd.glif new file mode 100644 index 00000000..7589ec83 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightlightleftvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightupheavyleftdnlightbxd.glif new file mode 100644 index 00000000..22a54e57 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rightupheavyleftdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ringcmb.cap.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ringcmb.cap.glif index 0914f025..94f5997d 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ringcmb.cap.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ringcmb.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rlinebelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rlinebelow.glif index bec2b0e0..dc708b34 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rmacrondotbelow.glif index 54077f62..0f9f9e0c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rmacrondotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/rmacrondotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/s.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/s.glif index 9a72c03c..b695b12a 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/s.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/s.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/sacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/sacute.glif index 74c2cebe..2f619f02 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/sacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/sacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/scaron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/scaron.glif index d87e65c9..a24fec30 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/scaron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/scaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/scircumflex.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/scircumflex.glif index 25f9972c..4f41a346 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/scircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/scircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/scommaaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/scommaaccent.glif index e0babf18..38ec0775 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/scommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/scommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/sdotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/sdotbelow.glif index 7c3019dd..7886ab3c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/sdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/sdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/semicolon_semicolon.liga.glif new file mode 100644 index 00000000..98760fb6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/semicolon_semicolon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/seven.num.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/seven.num.glif index dab83775..f4db09fd 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/seven.num.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/seven.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/six.num.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/six.num.glif index 831cf7ba..f366fc60 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/six.num.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/six.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_asterisk.liga.glif new file mode 100644 index 00000000..5ccc3c01 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_backslash.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_backslash.liga.glif new file mode 100644 index 00000000..617620de --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_backslash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_equal.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_equal.liga.glif new file mode 100644 index 00000000..2cf907b7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_equal.start.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_equal.start.glif new file mode 100644 index 00000000..f9ba1dfd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_greater.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_greater.liga.glif new file mode 100644 index 00000000..04e48613 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash.liga.glif new file mode 100644 index 00000000..2bc4a71a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash_equal.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash_equal.liga.glif new file mode 100644 index 00000000..8319f6a6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash_equal.start.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash_equal.start.glif new file mode 100644 index 00000000..29de4dd3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash_slash.liga.glif new file mode 100644 index 00000000..3f943989 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash_slash.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/tcaron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/tcaron.glif index 80b4cdff..3c11eb35 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/tcaron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/tcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/tcircumflexbelow.glif index 18799d21..fbf14375 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/tcircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/tcircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/tcommaaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/tcommaaccent.glif index 1247d047..46bc1b81 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/tcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/tcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/tdotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/tdotbelow.glif index 74b01004..41c0b7e6 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/tdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/tdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/three.num.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/three.num.glif index 6fb8e189..2d2d9aa4 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/three.num.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/three.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/tlinebelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/tlinebelow.glif index 592c0094..47a046e3 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/tlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/tlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/two.num.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/two.num.glif index 4cffc661..eef8aa1d 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/two.num.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/two.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uacute.glif index 94f41166..802fcce8 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ubreve.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ubreve.glif index 7161b7c8..24c0cc91 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ubreve.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ubreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ucaron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ucaron.glif index 60635ae9..96c8d0e3 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ucaron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ucaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ucircumflex.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ucircumflex.glif index 38d682bd..38b5ddde 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ucircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ucircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udieresis.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udieresis.glif index e2052e88..3a74664c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udieresis.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udieresisacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udieresisacute.glif index 0a56ab6c..bd9bfb34 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udieresisacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udieresisacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udieresiscaron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udieresiscaron.glif index 28d07459..b9d2e556 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udieresiscaron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udieresiscaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udieresisgrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udieresisgrave.glif index 5945dd8e..1347afb1 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udieresisgrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udieresisgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udieresismacron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udieresismacron.glif index 422a9585..3c1e7134 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udieresismacron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udieresismacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udotbelow.glif index b87456d3..6c7150ff 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/udotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ugrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ugrave.glif index b3bdd91d..38101cd2 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ugrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ugrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhookabove.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhookabove.glif index 4239c14d..d184c10a 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhorn.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhorn.glif index 1a22a857..491bc399 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhorn.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhorn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhornacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhornacute.glif index 088fde4a..fd4d1dc6 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhornacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhorndotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhorndotbelow.glif index e78503c2..04d9712b 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhorndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhorndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhorngrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhorngrave.glif index 686a8293..3c72acaa 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhorngrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhorngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhornhookabove.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhornhookabove.glif index a2ad04ab..9bbda1ed 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhorntilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhorntilde.glif index 0eb15915..4c2ee4a3 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhorntilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhorntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhungarumlaut.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhungarumlaut.glif index 91afb6bf..b054093c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhungarumlaut.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uhungarumlaut.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/umacron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/umacron.glif index 6a6fbf0d..7b79518b 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/umacron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/umacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/underscore.end.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/underscore.end.glif new file mode 100644 index 00000000..b9d157d1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/underscore.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/underscore.middle.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/underscore.middle.glif new file mode 100644 index 00000000..b1927da2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/underscore.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/underscore.start.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/underscore.start.glif new file mode 100644 index 00000000..14e322b4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/underscore.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/underscore_bar_underscore.m.glif new file mode 100644 index 00000000..02b74909 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/underscore_bar_underscore.m.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uni2011.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uni2011.glif index 937026ea..33e0d4b6 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uni2011.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uni2011.glif @@ -5,10 +5,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uni2610.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uni2610.glif new file mode 100644 index 00000000..f0c2176e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uni2610.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uni2611.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uni2611.glif new file mode 100644 index 00000000..45d9b970 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uni2611.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uni2612.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uni2612.glif new file mode 100644 index 00000000..21e0a8b1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uni2612.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uni2713.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uni2713.glif new file mode 100644 index 00000000..15ada594 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uni2713.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0A_0.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0A_0.glif new file mode 100644 index 00000000..49e175fa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0A_0.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0A_1.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0A_1.glif new file mode 100644 index 00000000..6847ce0a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0A_1.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0A_2.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0A_2.glif new file mode 100644 index 00000000..9dada2b4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0A_2.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_0.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_0.glif new file mode 100644 index 00000000..9a6a9881 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_0.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_1.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_1.glif new file mode 100644 index 00000000..36490221 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_1.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_2.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_2.glif new file mode 100644 index 00000000..14c193b4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_2.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_3.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_3.glif new file mode 100644 index 00000000..c3cd3356 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_3.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/updblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/updblhorzsngbxd.glif new file mode 100644 index 00000000..95aed0e2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/updblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/updblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/updblleftsngbxd.glif new file mode 100644 index 00000000..70d11705 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/updblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/updblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/updblrightsngbxd.glif new file mode 100644 index 00000000..db9ec4f9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/updblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upeighthblock.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upeighthblock.glif new file mode 100644 index 00000000..87701940 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upeighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uphalfblock.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uphalfblock.glif new file mode 100644 index 00000000..018ed615 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uphalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upheavydnhorzlightbxd.glif new file mode 100644 index 00000000..93de0c5b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upheavydnhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upheavyhorzlightbxd.glif new file mode 100644 index 00000000..6da525a6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upheavyleftdnlightbxd.glif new file mode 100644 index 00000000..95b1d58d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upheavyleftlightbxd.glif new file mode 100644 index 00000000..27c8767e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upheavyrightdnlightbxd.glif new file mode 100644 index 00000000..98099b7e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upheavyrightlightbxd.glif new file mode 100644 index 00000000..e96a85a4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upleftdnleftdnrightquadrant.glif new file mode 100644 index 00000000..91309b79 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upleftdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upleftdnrightquadrant.glif new file mode 100644 index 00000000..9bb17821 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upleftdnrightquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upleftquadrant.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upleftquadrant.glif new file mode 100644 index 00000000..ef21c49d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upleftuprightdnleftquadrant.glif new file mode 100644 index 00000000..0d5294c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upleftuprightdnleftquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upleftuprightdnrightquadrant.glif new file mode 100644 index 00000000..56cf6e14 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upleftuprightdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uplightdnhorzheavybxd.glif new file mode 100644 index 00000000..d6c1c942 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uplightdnhorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uplighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uplighthorzheavybxd.glif new file mode 100644 index 00000000..9c329a81 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uplighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uplightleftdnheavybxd.glif new file mode 100644 index 00000000..e5537fde --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uplightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uplightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uplightleftheavybxd.glif new file mode 100644 index 00000000..41ff15db --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uplightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uplightrightdnheavybxd.glif new file mode 100644 index 00000000..f0ae3643 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uplightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uplightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uplightrightheavybxd.glif new file mode 100644 index 00000000..fff139a2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uplightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uprightdnleftdnrightquadrant.glif new file mode 100644 index 00000000..df5a022e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uprightdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uprightdnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uprightdnleftquadrant.glif new file mode 100644 index 00000000..93cbe757 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uprightdnleftquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uprightquadrant.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uprightquadrant.glif new file mode 100644 index 00000000..de8b454f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uprightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upsnghorzdblbxd.glif new file mode 100644 index 00000000..fb977608 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upsngleftdblbxd.glif new file mode 100644 index 00000000..644fe45c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upsngrightdblbxd.glif new file mode 100644 index 00000000..8a0fb12c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/upsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uring.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uring.glif index 2b077b13..3a43c125 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uring.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/uring.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/utilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/utilde.glif index ea59004c..31cb18d3 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/utilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/utilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vdotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vdotbelow.glif index ca119d26..a3c1ff84 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertdblhorzsngbxd.glif new file mode 100644 index 00000000..34393559 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertdblhorzsngbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertdblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertdblleftsngbxd.glif new file mode 100644 index 00000000..19880cd3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertdblleftsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertdblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertdblrightsngbxd.glif new file mode 100644 index 00000000..52c05045 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertdblrightsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertheavyhorzlightbxd.glif new file mode 100644 index 00000000..f506645c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertheavyhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertheavyleftlightbxd.glif new file mode 100644 index 00000000..82388e1c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertheavyleftlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertheavyrightlightbxd.glif new file mode 100644 index 00000000..59c0068d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertheavyrightlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertlighthorzheavybxd.glif new file mode 100644 index 00000000..86c41999 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertlighthorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertlightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertlightleftheavybxd.glif new file mode 100644 index 00000000..244971f0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertlightleftheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertlightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertlightrightheavybxd.glif new file mode 100644 index 00000000..bf25c352 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertlightrightheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertsnghorzdblbxd.glif new file mode 100644 index 00000000..376348b0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertsnghorzdblbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertsngleftdblbxd.glif new file mode 100644 index 00000000..5d079ace --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertsngleftdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertsngrightdblbxd.glif new file mode 100644 index 00000000..2fd1a11a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/vertsngrightdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/w_w_w.liga.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/w_w_w.liga.glif new file mode 100644 index 00000000..eac87693 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/w_w_w.liga.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/wacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/wacute.glif index 28da5517..4807caf3 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/wacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/wacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/wcircumflex.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/wcircumflex.glif index f05931e9..5a263c1f 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/wcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/wcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/wdieresis.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/wdieresis.glif index 78ddff71..931542e0 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/wdieresis.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/wdieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/wgrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/wgrave.glif index 009ffb22..c69b29a9 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/wgrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/wgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/xdieresis.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/xdieresis.glif index 86e91113..b649e86b 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/xdieresis.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/xdieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/yacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/yacute.glif index 5e72584a..bf0a8972 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/yacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/yacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ycircumflex.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ycircumflex.glif index 661ce601..c0c59743 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ycircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ycircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ydieresis.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ydieresis.glif index b08b2aa6..7235a028 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ydieresis.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ydieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ydotaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ydotaccent.glif index 2f0916ac..79bb034c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ydotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ydotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ydotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ydotbelow.glif index d852c027..b000ccec 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ydotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ydotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ygrave.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ygrave.glif index 632c2865..4bc747f6 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ygrave.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ygrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/yhookabove.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/yhookabove.glif index c71f60db..1a628990 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/yhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/yhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ymacron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ymacron.glif index c15f31d1..be5c7c9c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ymacron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ymacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ytilde.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ytilde.glif index 825fe939..f3ea3523 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ytilde.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/ytilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zacute.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zacute.glif index 407f87ca..3c91a31c 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zacute.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zcaron.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zcaron.glif index 3c6262ad..49e1bee1 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zcaron.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zcircumflex.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zcircumflex.glif index f1c25738..d1a15a34 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zdotaccent.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zdotaccent.glif index bb7daf84..2a96e621 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zdotbelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zdotbelow.glif index 7c8a9ea8..2a4168d8 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zero.num.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zero.num.glif index bf03111e..e1ec4bd5 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zero.num.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zero.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zlinebelow.glif b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zlinebelow.glif index 1bce1bbf..ef48efb8 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/glyphs/zlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/lib.plist b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/lib.plist index 047cc547..29a765f7 100644 --- a/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/lib.plist +++ b/sources/instances/postscript/IntelOneMono-BoldItalic.ufo/lib.plist @@ -710,6 +710,365 @@ circumflexgrave.cap circumflexhook.cap circumflextilde.cap + lighthorzbxd + heavyhorzbxd + lightvertbxd + heavyvertbxd + lighttrpldashhorzbxd + heavytrpldashhorzbxd + lighttrpldashvertbxd + heavytrpldashvertbxd + lightquaddashhorzbxd + heavyquaddashhorzbxd + lightquaddashvertbxd + heavyquaddashvertbxd + lightdnrightbxd + dnlightrightheavybxd + dnheavyrightlightbxd + heavydnrightbxd + lightdnleftbxd + dnlightleftheavybxd + dnheavyleftlightbxd + heavydnleftbxd + lightuprightbxd + uplightrightheavybxd + upheavyrightlightbxd + heavyuprightbxd + lightupleftbxd + uplightleftheavybxd + upheavyleftlightbxd + heavyupleftbxd + lightvertrightbxd + vertlightrightheavybxd + upheavyrightdnlightbxd + dnheavyrightuplightbxd + vertheavyrightlightbxd + dnlightrightupheavybxd + uplightrightdnheavybxd + heavyvertrightbxd + lightvertleftbxd + vertlightleftheavybxd + upheavyleftdnlightbxd + dnheavyleftuplightbxd + vertheavyleftlightbxd + dnlightleftupheavybxd + uplightleftdnheavybxd + heavyvertleftbxd + lightdnhorzbxd + leftheavyrightdnlightbxd + rightheavyleftdnlightbxd + dnlighthorzheavybxd + dnheavyhorzlightbxd + rightlightleftdnheavybxd + leftlightrightdnheavybxd + heavydnhorzbxd + lightuphorzbxd + leftheavyrightuplightbxd + rightheavyleftuplightbxd + uplighthorzheavybxd + upheavyhorzlightbxd + rightlightleftupheavybxd + leftlightrightupheavybxd + heavyuphorzbxd + lightverthorzbxd + leftheavyrightvertlightbxd + rightheavyleftvertlightbxd + vertlighthorzheavybxd + upheavydnhorzlightbxd + dnheavyuphorzlightbxd + vertheavyhorzlightbxd + leftupheavyrightdnlightbxd + rightupheavyleftdnlightbxd + leftdnheavyrightuplightbxd + rightdnheavyleftuplightbxd + dnlightuphorzheavybxd + uplightdnhorzheavybxd + rightlightleftvertheavybxd + leftlightrightvertheavybxd + heavyverthorzbxd + lightdbldashhorzbxd + heavydbldashhorzbxd + lightdbldashvertbxd + heavydbldashvertbxd + dblhorzbxd + dblvertbxd + dnsngrightdblbxd + dndblrightsngbxd + dbldnrightbxd + dnsngleftdblbxd + dndblleftsngbxd + dbldnleftbxd + upsngrightdblbxd + updblrightsngbxd + dbluprightbxd + upsngleftdblbxd + updblleftsngbxd + dblupleftbxd + vertsngrightdblbxd + vertdblrightsngbxd + dblvertrightbxd + vertsngleftdblbxd + vertdblleftsngbxd + dblvertleftbxd + dnsnghorzdblbxd + dndblhorzsngbxd + dbldnhorzbxd + upsnghorzdblbxd + updblhorzsngbxd + dbluphorzbxd + vertsnghorzdblbxd + vertdblhorzsngbxd + dblverthorzbxd + lightarcdnrightbxd + lightarcdnleftbxd + lightarcupleftbxd + lightarcuprightbxd + lightdiaguprightdnleftbxd + lightdiagupleftdnrightbxd + lightdiagcrossbxd + lightleftbxd + lightupbxd + lightrightbxd + lightdnbxd + heavyleftbxd + heavyupbxd + heavyrightbxd + heavydnbxd + lightleftheavyrightbxd + lightupheavydnbxd + heavyleftlightrightbxd + heavyuplightdnbxd + uphalfblock + dneighthblock + dnquarterblock + dnthreeeighthsblock + dnhalfblock + dnfiveeighthsblock + dnthreequartersblock + dnseveneighthsblock + fullblock + leftseveneighthsblock + leftthreequartersblock + leftfiveeighthsblock + lefthalfblock + leftthreeeighthsblock + leftquarterblock + lefteighthblock + righthalfblock + lightshade + mediumshade + darkshade + upeighthblock + righteighthblock + dnleftquadrant + dnrightquadrant + upleftquadrant + upleftdnleftdnrightquadrant + upleftdnrightquadrant + upleftuprightdnleftquadrant + upleftuprightdnrightquadrant + uprightquadrant + uprightdnleftquadrant + uprightdnleftdnrightquadrant + ligspacer + equal.start + equal.middle + equal.end + hyphen.start + hyphen.middle + hyphen.end + underscore.start + underscore.middle + underscore.end + numbersign.start + numbersign.middle + numbersign.end + period_equal.liga + period_period_equal.liga + period_hyphen.liga + colon_equal.liga + equal_equal.liga + exclam_equal.liga + equal_equal_equal.liga + exclam_equal_equal.liga + less_hyphen_less.liga + less_less_hyphen.liga + less_hyphen.liga + less_hyphen_greater.liga + hyphen_greater.liga + hyphen_greater_greater.liga + greater_hyphen_greater.liga + less_equal_less.liga + less_less_equal.liga + less_equal_greater.liga + equal_greater.liga + less_equal.liga + equal_greater_greater.liga + greater_equal_greater.liga + greater_equal.liga + greater_greater_equal.liga + greater_greater_hyphen.liga + greater_hyphen.liga + less_asciitilde_greater.liga + hyphen_less.liga + hyphen_less_less.liga + equal_less.liga + equal_less_less.liga + less_asciitilde_asciitilde.liga + less_asciitilde.liga + asciitilde_asciitilde.liga + asciitilde_greater.liga + asciitilde_asciitilde_greater + less_exclam_hyphen_hyphen.liga + slash_equal.liga + hyphen_bar.liga + bar_hyphen.liga + bar_equal.liga + hyphen_bar_bar.liga + bar_bar_hyphen.liga + equal_bar_bar.liga + bar_bar_equal.liga + equal_bar.liga + slash_slash_equal.liga + equal_slash.liga + equal_slash_slash.liga + equal_colon_equal.middle + equal_exclam_equal.middle + underscore_bar_underscore.m + hyphen_bar_hyphen.middle + equal_bar_equal.middle + hyphen_greater_hyphen.middle + hyphen_greater_greater_hyphen.m + equal_slash_slash_equal.middle + equal_slash_equal.middle + hyphen_bar_bar_hyphen.middle + equal_bar_bar_equal.middle + hyphen_less_hyphen.middle + hyphen_less_less_hyphen.middle + equal_greater_equal.middle + equal_less_equal.middle + equal_greater_greater_equal.m + equal_less_less_equal.middle + less_hyphen.start + greater_hyphen.start + bar_hyphen.start + less_equal.start + greater_equal.start + bar_equal.start + slash_equal.start + slash_slash_equal.start + less_less_hyphen.start + greater_greater_hyphen.start + bar_bar_hyphen.start + less_less_equal.start + greater_greater_equal.start + bar_bar_equal.start + hyphen_less.end + hyphen_greater.end + hyphen_bar.end + equal_less.end + equal_greater.end + equal_bar.end + hyphen_less_less.end + hyphen_greater_greater.end + hyphen_bar_bar.end + equal_less_less.end + equal_greater_greater.end + equal_bar_bar.end + equal_slash.end + equal_slash_slash.end + less_less_less.liga + less_less.liga + less_equal + less_greater.liga + greater_equal + greater_greater.liga + greater_greater_greater.liga + braceleft_bar.liga + bracketleft_bar.liga + less_colon.liga + colon_less.liga + greater_colon.liga + colon_greater.liga + bar_braceright.liga + bar_bracketright.liga + less_bar_bar_bar.liga + less_bar_bar.liga + less_bar.liga + less_bar_greater.liga + bar_greater.liga + bar_bar_greater.liga + bar_bar_bar_greater.liga + less_dollar.liga + less_dollar_greater.liga + dollar_greater.liga + less_plus.liga + less_plus_greater.liga + plus_greater.liga + less_asterisk.liga + less_asterisk_greater.liga + asterisk_greater.liga + slash_asterisk.liga + asterisk_slash.liga + slash_slash_slash.liga + slash_slash.liga + less_slash.liga + less_slash_greater.liga + slash_greater.liga + semicolon_semicolon.liga + colon_colon.liga + colon_colon_colon.liga + period_period.liga + period_period_period.liga + period_period_less.liga + exclam_exclam.liga + question_question.liga + percent_percent.liga + ampersand_ampersand.liga + bar_bar.liga + question_period.liga + question_colon.liga + plus_plus.liga + plus_plus_plus.liga + hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga + asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga + equal_asciitilde.liga + exclam_asciitilde.liga + asciitilde_hyphen.liga + w_w_w.liga + hyphen_asciitilde.liga + asciitilde_at.liga + asciicircum_equal.liga + question_equal.liga + numbersign_exclam.liga + numbersign_equal.liga + numbersign_colon.liga + numbersign_braceleft.liga + numbersign_bracketleft.liga + bracketright_numbersign.liga + numbersign_parenleft.liga + numbersign_question.liga + numbersign_underscore.liga + numbersign_underscore_parenleft + backslash_slash.liga + bar_bar_bar.liga + colon_colon_equal.liga + exclam_exclam_period.liga + period_question.liga + slash_backslash.liga + uniE0A0 + uniE0A1 + uniE0A2 + uniE0B0 + uniE0B1 + uniE0B2 + uniE0B3 + uni2610 + uni2611 + uni2612 + uni2713 public.postscriptNames diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/features.fea b/sources/instances/postscript/IntelOneMono-Italic.ufo/features.fea index 25e2754f..6c520a9c 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/features.fea +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/features.fea @@ -1,368 +1,6 @@ -# ---------------------------- -# INTEL ONE MONO OPENTYPE CODE -# ---------------------------- -# ---------------- -# Language Systems -# ---------------- +include(../../features/shared.fea); -languagesystem DFLT dflt; -languagesystem latn dflt; -languagesystem latn TRK; -languagesystem latn AZE; -languagesystem latn CRT; -languagesystem latn CAT; +include(../../features/mark/IntelOneMono-Italic mark.fea); - -# ------- -# Classes -# ------- - -# Base Letters -@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; -@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; - -# Figures -@fig = [zero one two three four five six seven eight nine]; -@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; -@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; -@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; -@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; - -# Marks Above -@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; -@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; - -# Marks Below -@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; - - -# --------------- -# Localized Forms -# --------------- - -feature locl { - script latn; - language TRK; - lookup iTurkish { - sub i by idotaccent; - } iTurkish; - language AZE; - lookup iTurkish; - language CRT; - lookup iTurkish; - language CAT; - sub l periodcentered' l by middotcat; - sub L periodcentered' L by middotcat.cap; - # try fusing them - sub L middotcat.cap by L.dot; - sub L middotcat by L.dot; - sub l middotcat by l.dot; -} locl; - - -# --------------------------------- -# Glyph Composition / Decomposition -# --------------------------------- - -feature ccmp { - - # Decompose unicode lowercase characters whose uppercase counterparts have no unicode. - lookup Decomp { - sub hlinebelow by h macronlowmod; - sub jcaron by j caron; - } Decomp; - - # Replace double above accents by combined drawings. - lookup DblMarks { - sub dieresiscmb acutecmb by dieresisacute; - sub dieresiscmb gravecmb by dieresisgrave; - sub dieresiscmb caroncmb by dieresiscaron; - sub dieresiscmb macroncmb by dieresismacron; - sub brevecmb acutecmb by breveacute; - sub brevecmb gravecmb by brevegrave; - sub brevecmb hookcmb by brevehook; - sub brevecmb tildecmb by brevetilde; - sub circumflexcmb acutecmb by circumflexacute; - sub circumflexcmb gravecmb by circumflexgrave; - sub circumflexcmb hookcmb by circumflexhook; - sub circumflexcmb tildecmb by circumflextilde; - # capital forms - sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; - sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; - sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; - sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; - sub brevecmb.cap acutecmb.cap by breveacute.cap; - sub brevecmb.cap gravecmb.cap by brevegrave.cap; - sub brevecmb.cap hookcmb.cap by brevehook.cap; - sub brevecmb.cap tildecmb.cap by brevetilde.cap; - sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; - sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; - sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; - sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; - } DblMarks; - - # Replace combining marks that follow a uppercase letter by their uppercase form - lookup CapitalMarks { - sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; - sub [@ltrUC] [@lcMarks]' by [@ucMarks]; - } CapitalMarks; - - # Replace letters with dotless counterparts when followed by a combining mark - lookup Dotless { - sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; - sub [i j]' [@lcMarks] by [dotlessi dotlessj]; - } Dotless; - - # Replace e ogonek with pre-drawn eogonek - lookup eogonek { - sub e ogonekcmb by eogonek; - } eogonek; - -} ccmp; - - -# ---------- -# Numerators -# ---------- - -feature numr { - sub @fig by @figNum; -} numr; - -# ------------ -# Denominators -# ------------ - -feature dnom { - sub @fig by @figDen; -} dnom; - -# ----------- -# Superscript -# ----------- - -feature sups { - sub @fig by @figSup; -} sups; - -# --------------------- -# Subscript & Inferiors -# --------------------- - -feature subs { - sub @fig by @figInf; -} subs; - -feature sinf { - sub @fig by @figInf; -} sinf; - - -# --------------------- -# Contextual Alternates -# --------------------- - -feature calt { - # shifts colon to align with math symbols when used together - - sub colon' [plus equal greater less hyphen] by colon.fig; - sub [plus equal less greater hyphen] colon' by colon.fig; - - sub colon' [colon colon.fig] by colon.fig; - sub colon.fig colon' by colon.fig; - -} calt; - - -# -------------- -# Stylistic Sets -# -------------- - -feature ss11 { - featureNames { - name "Raised Colon (Figures Only)"; # Windows English - name 1 0 0 "Raised Colon (Figures Only)"; # Mac English - }; - lookup FigureColonContextual { - sub @fig colon' @fig by colon.fig; - } FigureColonContextual; -} ss11; - -feature ss12 { - featureNames { - name "Raised Colon (Global)"; # Windows English - name 1 0 0 "Raised Colon (Global)"; # Mac English - }; - lookup FigureColon { - sub colon by colon.fig; - } FigureColon; -} ss12; - - -# -------------------- -# Stylistic Alternates -# -------------------- - -feature salt { - lookup FigureColon; # SS12 -} salt; - - -# --------------------------------------------------------------------- -# MARK | Generated: November 23, 2022 - 02:37:51 PM by 'markFeature.py' -# --------------------------------------------------------------------- - -markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; -markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; -markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; -markClass [cedillacmb] @mark_belowcedilla; -markClass [ogonekcmb] @mark_belowogonek; - -feature mark { - - lookup aboveLC{ - pos base [a] mark @mark_aboveLC; - pos base [c] mark @mark_aboveLC; - pos base [dotlessi] mark @mark_aboveLC; - pos base [dotlessj] mark @mark_aboveLC; - pos base [e] mark @mark_aboveLC; - pos base [eogonek] mark @mark_aboveLC; - pos base [g] mark @mark_aboveLC; - pos base [m] mark @mark_aboveLC; - pos base [n] mark @mark_aboveLC; - pos base [o] mark @mark_aboveLC; - pos base [p] mark @mark_aboveLC; - pos base [s] mark @mark_aboveLC; - pos base [u] mark @mark_aboveLC; - pos base [z] mark @mark_aboveLC; - } aboveLC; - - lookup aboveUC{ - pos base [A] mark @mark_aboveUC; - pos base [C] mark @mark_aboveUC; - pos base [E] mark @mark_aboveUC; - pos base [Eogonek] mark @mark_aboveUC; - pos base [G] mark @mark_aboveUC; - pos base [I] mark @mark_aboveUC; - pos base [J] mark @mark_aboveUC; - pos base [M] mark @mark_aboveUC; - pos base [N] mark @mark_aboveUC; - pos base [O] mark @mark_aboveUC; - pos base [P] mark @mark_aboveUC; - pos base [S] mark @mark_aboveUC; - pos base [U] mark @mark_aboveUC; - pos base [Z] mark @mark_aboveUC; - } aboveUC; - - lookup below{ - pos base [C] mark @mark_below; - pos base [Dcroat] mark @mark_below; - pos base [E] mark @mark_below; - pos base [H] mark @mark_below; - pos base [I] mark @mark_below; - pos base [O] mark @mark_below; - pos base [S] mark @mark_below; - pos base [U] mark @mark_below; - pos base [X] mark @mark_below; - pos base [Z] mark @mark_below; - pos base [c] mark @mark_below; - pos base [dcroat] mark @mark_below; - pos base [dotlessi] mark @mark_below; - pos base [e] mark @mark_below; - pos base [h] mark @mark_below; - pos base [o] mark @mark_below; - pos base [s] mark @mark_below; - pos base [u] mark @mark_below; - pos base [x] mark @mark_below; - pos base [z] mark @mark_below; - } below; - - lookup belowcedilla{ - pos base [Z] mark @mark_belowcedilla; - pos base [z] mark @mark_belowcedilla; - } belowcedilla; - - lookup belowogonek{ - pos base [A] mark @mark_belowogonek; - pos base [E] mark @mark_belowogonek; - pos base [I] mark @mark_belowogonek; - pos base [O] mark @mark_belowogonek; - pos base [U] mark @mark_belowogonek; - pos base [a] mark @mark_belowogonek; - pos base [dotlessi] mark @mark_belowogonek; - pos base [e] mark @mark_belowogonek; - pos base [o] mark @mark_belowogonek; - pos base [u] mark @mark_belowogonek; - } belowogonek; - -} mark; - -@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; -@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; - -table GDEF { - GlyphClassDef @BASES,,@MARKS,; -} GDEF; - - -# -------------- -# All Alternates -# -------------- - -feature aalt { - sub germandbls from [germandbls uni1E9E]; - sub uni1E9E from [uni1E9E germandbls]; - sub colon from [colon colon.fig]; - sub colon.fig from [colon.fig colon]; - sub eight from [eight eight.den eight.sup eight.num eight.inf]; - sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; - sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; - sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; - sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; - sub five from [five five.inf five.num five.den five.sup]; - sub five.sup from [five.sup five five.inf five.num five.den]; - sub five.den from [five.den five.sup five five.inf five.num]; - sub five.num from [five.num five.den five.sup five five.inf]; - sub five.inf from [five.inf five.num five.den five.sup five]; - sub four from [four four.sup four.num four.den four.inf]; - sub four.inf from [four.inf four four.sup four.num four.den]; - sub four.den from [four.den four.inf four four.sup four.num]; - sub four.num from [four.num four.den four.inf four four.sup]; - sub four.sup from [four.sup four.num four.den four.inf four]; - sub nine from [nine nine.den nine.inf nine.num nine.sup]; - sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; - sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; - sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; - sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; - sub one from [one one.den one.num one.inf one.sup]; - sub one.sup from [one.sup one one.den one.num one.inf]; - sub one.inf from [one.inf one.sup one one.den one.num]; - sub one.num from [one.num one.inf one.sup one one.den]; - sub one.den from [one.den one.num one.inf one.sup one]; - sub seven from [seven seven.inf seven.num seven.sup seven.den]; - sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; - sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; - sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; - sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; - sub six from [six six.num six.sup six.den six.inf]; - sub six.inf from [six.inf six six.num six.sup six.den]; - sub six.den from [six.den six.inf six six.num six.sup]; - sub six.sup from [six.sup six.den six.inf six six.num]; - sub six.num from [six.num six.sup six.den six.inf six]; - sub three from [three three.inf three.den three.num three.sup]; - sub three.sup from [three.sup three three.inf three.den three.num]; - sub three.num from [three.num three.sup three three.inf three.den]; - sub three.den from [three.den three.num three.sup three three.inf]; - sub three.inf from [three.inf three.den three.num three.sup three]; - sub two from [two two.inf two.sup two.num two.den]; - sub two.den from [two.den two two.inf two.sup two.num]; - sub two.num from [two.num two.den two two.inf two.sup]; - sub two.sup from [two.sup two.num two.den two two.inf]; - sub two.inf from [two.inf two.sup two.num two.den two]; - sub zero from [zero zero.sup zero.num zero.den zero.inf]; - sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; - sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; - sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; - sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; -} aalt; +include(../../features/aalt.fea); diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/fontinfo.plist b/sources/instances/postscript/IntelOneMono-Italic.ufo/fontinfo.plist index 9721c78b..b5bd3d85 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/fontinfo.plist +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/fontinfo.plist @@ -7,7 +7,7 @@ capHeight 655 copyright - Copyright 2023 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) descender -260 familyName @@ -53,7 +53,7 @@ platformID 1 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -65,7 +65,7 @@ platformID 3 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -374,7 +374,7 @@ versionMajor 1 versionMinor - 3 + 4 xHeight 465 diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/L_.dot.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/L_.dot.glif index c18b6119..2e1604d2 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/L_.dot.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/L_.dot.glif @@ -5,7 +5,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_breve.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_breve.glif index 9990845d..23e694fc 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_breve.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_breve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_caron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_caron.glif index 8c67f3c1..a31169d3 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflex.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflex.glif index 97f46f30..03d9030b 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflexacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflexacute.glif index ce36cdfd..20886fd2 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflexdotbelow.glif index 55a4a5e5..f0c11ecc 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflexgrave.glif index 4cdc8b1e..7bbe62c6 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflexhookabove.glif index d1c81700..a116e4a1 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflextilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflextilde.glif index d4a8a869..5d75340d 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_circumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_dieresis.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_dieresis.glif index 084c6e13..1d22d67e 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_dotaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_dotaccent.glif index 60ba788d..9e03abda 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_dotbelow.glif index c5099a9b..9b582193 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_hookabove.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_hookabove.glif index 4addb91e..d1a966c1 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_horn.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_horn.glif index 7f1e4d58..889a7f9e 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_horn.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_horn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_hornacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_hornacute.glif index 33dbe5b2..f9940859 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_hornacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_hornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_horndotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_horndotbelow.glif index 09b97788..81d8f4b8 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_horndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_horndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_horngrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_horngrave.glif index 3a4830fb..4b9e0874 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_horngrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_horngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_hornhookabove.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_hornhookabove.glif index 4d2a5a76..70128b7e 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_hornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_hornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_horntilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_horntilde.glif index 195fc16e..90d437ce 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_horntilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_horntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_macron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_macron.glif index 325f55a4..cd59d8e5 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_macron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_tilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_tilde.glif index b09a1f77..3a018edd 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/O_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_acute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_acute.glif index cc7893c2..ca441967 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_caron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_caron.glif index d00b43b1..6afcdae4 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_commaaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_commaaccent.glif index 2a8b1b0c..60bbae27 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_dotaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_dotaccent.glif index 24c7ecc5..1f001240 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_dotbelow.glif index 36188b90..93636b85 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_linebelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_linebelow.glif index bca08943..94ecf9e8 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_macrondotbelow.glif index 9d812d5d..22562864 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_macrondotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/R_macrondotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_.glif index 881ba0a6..d91b4f11 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_acute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_acute.glif index ea19d2c8..0fe35fcb 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_caron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_caron.glif index 92b0bc7b..b3dcb37d 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_circumflex.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_circumflex.glif index e008e680..dd14b560 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_commaaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_commaaccent.glif index 5306dc3b..805d4b65 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_dotbelow.glif index d66b89c7..556c2cd3 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/S_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/T_caron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/T_caron.glif index cadb0bc9..71007e3b 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/T_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/T_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/T_circumflexbelow.glif index db05f78c..2d1216cd 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/T_circumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/T_circumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/T_commaaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/T_commaaccent.glif index 1a9a8eac..9267d88a 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/T_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/T_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/T_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/T_dotbelow.glif index f724e73e..6a58e51c 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/T_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/T_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/T_linebelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/T_linebelow.glif index 60e28a63..3d2667c5 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/T_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/T_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_acute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_acute.glif index 0e864ae6..559c98f1 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_breve.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_breve.glif index 0737c67b..1fca1b9a 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_breve.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_breve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_caron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_caron.glif index 3d07b78e..7a0b3cd6 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_circumflex.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_circumflex.glif index ca6250bc..56808f64 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dieresis.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dieresis.glif index 90fdbd07..c558bf10 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dieresisacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dieresisacute.glif index f02c4dd4..e5cbbe3c 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dieresisacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dieresisacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dieresiscaron.glif index dd6e65f6..dc2ff1ac 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dieresiscaron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dieresiscaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dieresisgrave.glif index 8923d6b3..b227a449 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dieresisgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dieresisgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dieresismacron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dieresismacron.glif index 402a3184..3d8c49b3 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dieresismacron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dieresismacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dotbelow.glif index 82edfbb5..e5734611 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_grave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_grave.glif index 473b6200..b70eee33 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_grave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_hookabove.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_hookabove.glif index b863d430..57be8c61 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_horn.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_horn.glif index 08a177b4..89c0f763 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_horn.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_horn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_hornacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_hornacute.glif index bcfa3849..c92a5573 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_hornacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_hornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_horndotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_horndotbelow.glif index 1b3ca83b..261148a5 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_horndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_horndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_horngrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_horngrave.glif index 5a39e1bb..f8844811 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_horngrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_horngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_hornhookabove.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_hornhookabove.glif index 7f877d1c..e91c29d4 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_hornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_hornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_horntilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_horntilde.glif index b8cfe8f7..a348994a 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_horntilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_horntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_hungarumlaut.glif index 8e6b258f..f97071b4 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_hungarumlaut.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_hungarumlaut.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_macron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_macron.glif index 44534a2b..f40fd627 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_macron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_ring.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_ring.glif index f697668b..acecf09a 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_ring.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_ring.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_tilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_tilde.glif index 756b63b8..7a348d5c 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/U_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/V_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/V_dotbelow.glif index 85bdfef3..4c72e054 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/V_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/V_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/W_acute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/W_acute.glif index 0ac9810f..72c69526 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/W_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/W_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/W_circumflex.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/W_circumflex.glif index ccd6c067..0593fed6 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/W_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/W_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/W_dieresis.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/W_dieresis.glif index 3c58443f..a513fa2d 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/W_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/W_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/W_grave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/W_grave.glif index 62fb5f65..d25a854b 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/W_grave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/W_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/X_dieresis.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/X_dieresis.glif index 7cd8fc67..812f5e70 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/X_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/X_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_acute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_acute.glif index 0c347749..db378680 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_circumflex.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_circumflex.glif index 0d326ab6..b5715383 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_dieresis.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_dieresis.glif index 5d1867dd..b3dc42c2 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_dotaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_dotaccent.glif index 3f5b4dfd..6ae88e47 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_dotbelow.glif index ccf67892..e4ce370f 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_grave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_grave.glif index 4a04a1cf..9d870af4 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_grave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_hookabove.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_hookabove.glif index bade6761..c6ac111f 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_macron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_macron.glif index 61db9225..364f3398 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_macron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_tilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_tilde.glif index aa7164a0..4299aa98 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Y_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_acute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_acute.glif index 6ed8f01f..9c9b1b25 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_caron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_caron.glif index 1c9e6e52..fd1e61a7 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_circumflex.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_circumflex.glif index b5dd6966..6b9c50e4 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_dotaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_dotaccent.glif index 0d2f95a5..4e042a71 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_dotbelow.glif index 40c2f036..dc8798c0 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_linebelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_linebelow.glif index 407b8d65..e0fd8ac0 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/Z_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/aacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/aacute.glif index aaf25f44..34ed1bcf 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/aacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/aacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abreve.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abreve.glif index f2f0925d..1fc9ee10 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abreve.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abreveacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abreveacute.glif index 8c1e787c..008a0f9f 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abreveacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abreveacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abrevedotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abrevedotbelow.glif index 2f664e29..77c2c5d7 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abrevedotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abrevedotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abrevegrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abrevegrave.glif index 31440aea..5044fb7c 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abrevegrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abrevegrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abrevehookabove.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abrevehookabove.glif index f2d380e9..a2aea961 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abrevehookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abrevehookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abrevetilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abrevetilde.glif index 46ac6986..1ca0f155 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abrevetilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/abrevetilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acaron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acaron.glif index e3b77e8f..b06c6ab4 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acaron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflex.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflex.glif index c86400a9..69a4d2c9 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflexacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflexacute.glif index a983a5ab..1dee5ac6 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflexdotbelow.glif index 473b388b..dff11efc 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflexgrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflexgrave.glif index e3282901..6b885c61 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflexhookabove.glif index e4f98f95..08c3e650 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflextilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflextilde.glif index 9477570c..ee03c4b2 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acircumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acutecmb.cap.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acutecmb.cap.glif index 4ceb96b7..91510b89 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acutecmb.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/acutecmb.cap.glif @@ -1,6 +1,5 @@ - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/adieresis.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/adieresis.glif index bfe3b174..e78d4076 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/adieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/adieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/adotaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/adotaccent.glif index 288900a2..b81a160d 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/adotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/adotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/adotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/adotbelow.glif index 6cd36e5e..c93627c6 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/adotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/adotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/agrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/agrave.glif index 7a97ea70..7362f3ca 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/agrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/agrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ahookabove.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ahookabove.glif index da469fa6..de9e971a 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ahookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ahookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/amacron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/amacron.glif index 6116aa92..11ad93ff 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/amacron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/amacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ampersand_ampersand.liga.glif new file mode 100644 index 00000000..42bd376a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ampersand_ampersand.liga.glif @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/aring.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/aring.glif index a0b4d7f3..0b4f320f 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/aring.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/aring.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asciicircum_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asciicircum_equal.liga.glif new file mode 100644 index 00000000..5f4c7579 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asciicircum_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..95c87693 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asciitilde_asciitilde.liga.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asciitilde_asciitilde_greater.glif new file mode 100644 index 00000000..312b81cf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asciitilde_asciitilde_greater.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asciitilde_at.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asciitilde_at.liga.glif new file mode 100644 index 00000000..03de1027 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asciitilde_at.liga.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asciitilde_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asciitilde_greater.liga.glif new file mode 100644 index 00000000..217ca421 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asciitilde_greater.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asciitilde_hyphen.liga.glif new file mode 100644 index 00000000..7a80af3f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asciitilde_hyphen.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asterisk.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asterisk.glif index a16218a2..ae3df700 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asterisk.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asterisk.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asterisk_asterisk.liga.glif new file mode 100644 index 00000000..af9890f6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asterisk_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif new file mode 100644 index 00000000..9f23a013 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asterisk_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asterisk_greater.liga.glif new file mode 100644 index 00000000..79183785 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asterisk_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asterisk_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asterisk_slash.liga.glif new file mode 100644 index 00000000..cca5f4f2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/asterisk_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/at.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/at.glif index aa583f0e..984cc813 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/at.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/at.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/atilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/atilde.glif index 2d20af71..da2bc4ec 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/atilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/atilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/backslash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/backslash_slash.liga.glif new file mode 100644 index 00000000..f3c68775 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/backslash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar.liga.glif new file mode 100644 index 00000000..6e09a289 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_bar.liga.glif new file mode 100644 index 00000000..dc1b5564 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_bar.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_bar_greater.liga.glif new file mode 100644 index 00000000..a4a23025 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_bar_greater.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_equal.liga.glif new file mode 100644 index 00000000..58a0060c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_equal.start.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_equal.start.glif new file mode 100644 index 00000000..4829b5bb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_greater.liga.glif new file mode 100644 index 00000000..ee811a50 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_greater.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_hyphen.liga.glif new file mode 100644 index 00000000..4cf55562 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_hyphen.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_hyphen.start.glif new file mode 100644 index 00000000..6c061fba --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bar_hyphen.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_braceright.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_braceright.liga.glif new file mode 100644 index 00000000..f250d709 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_braceright.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bracketright.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bracketright.liga.glif new file mode 100644 index 00000000..6fb3317d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_bracketright.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_equal.liga.glif new file mode 100644 index 00000000..dc8d30a5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_equal.start.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_equal.start.glif new file mode 100644 index 00000000..e5f89dbe --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_greater.liga.glif new file mode 100644 index 00000000..24d166a8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_hyphen.liga.glif new file mode 100644 index 00000000..cadb8791 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_hyphen.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_hyphen.start.glif new file mode 100644 index 00000000..04471bfe --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bar_hyphen.start.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/blinebelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/blinebelow.glif index 709a5881..d7bb4b8c 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/blinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/blinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/braceleft_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/braceleft_bar.liga.glif new file mode 100644 index 00000000..2faf55f0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/braceleft_bar.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bracketleft_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bracketleft_bar.liga.glif new file mode 100644 index 00000000..8780514e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bracketleft_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bracketright_numbersign.liga.glif new file mode 100644 index 00000000..5bceec33 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/bracketright_numbersign.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/breveacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/breveacute.glif index 24eb6fb7..47fea168 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/breveacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/breveacute.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/brevegrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/brevegrave.glif index f74e7bda..a41039fe 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/brevegrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/brevegrave.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/brevehook.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/brevehook.glif index 0b9f5c0a..280bca95 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/brevehook.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/brevehook.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/brevetilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/brevetilde.glif index 5c6b6f1d..3492350c 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/brevetilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/brevetilde.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/cacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/cacute.glif index a8799e50..ed7b192c 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/cacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/cacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ccaron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ccaron.glif index 6fb22cd8..9625c398 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ccaron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ccaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ccircumflex.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ccircumflex.glif index 20aca87f..ec126aae 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ccircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ccircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/cdotaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/cdotaccent.glif index e5d27e04..fe12910d 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/cdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/cdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/circumflexacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/circumflexacute.glif index 2ff3bcff..0919bd8f 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/circumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/circumflexacute.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/circumflexgrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/circumflexgrave.glif index 213e3772..dad1a3ac 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/circumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/circumflexgrave.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/circumflexhook.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/circumflexhook.glif index a5ac5985..dbdf3350 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/circumflexhook.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/circumflexhook.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/circumflextilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/circumflextilde.glif index 362dd5d6..2c99f652 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/circumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/circumflextilde.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/colon_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/colon_colon.liga.glif new file mode 100644 index 00000000..6c2c4d7d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/colon_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/colon_colon_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/colon_colon_colon.liga.glif new file mode 100644 index 00000000..d6a3666b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/colon_colon_colon.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/colon_colon_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/colon_colon_equal.liga.glif new file mode 100644 index 00000000..c4a93e5c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/colon_colon_equal.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/colon_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/colon_equal.liga.glif new file mode 100644 index 00000000..3e4b31a1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/colon_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/colon_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/colon_greater.liga.glif new file mode 100644 index 00000000..1aad0564 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/colon_greater.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/colon_less.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/colon_less.liga.glif new file mode 100644 index 00000000..387c3ab4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/colon_less.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/commaturnedabovecmb.glif index 458ae3f9..e3162615 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/commaturnedabovecmb.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/commaturnedabovecmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/contents.plist b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/contents.plist index 9b3fa25c..10a2ded8 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/contents.plist +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/contents.plist @@ -498,6 +498,8 @@ amacron.glif ampersand ampersand.glif + ampersand_ampersand.liga + ampersand_ampersand.liga.glif aogonek aogonek.glif apostrophemod @@ -508,10 +510,30 @@ aring.glif asciicircum asciicircum.glif + asciicircum_equal.liga + asciicircum_equal.liga.glif asciitilde asciitilde.glif + asciitilde_asciitilde.liga + asciitilde_asciitilde.liga.glif + asciitilde_asciitilde_greater + asciitilde_asciitilde_greater.glif + asciitilde_at.liga + asciitilde_at.liga.glif + asciitilde_greater.liga + asciitilde_greater.liga.glif + asciitilde_hyphen.liga + asciitilde_hyphen.liga.glif asterisk asterisk.glif + asterisk_asterisk.liga + asterisk_asterisk.liga.glif + asterisk_asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga.glif + asterisk_greater.liga + asterisk_greater.liga.glif + asterisk_slash.liga + asterisk_slash.liga.glif at at.glif atilde @@ -520,20 +542,58 @@ b.glif backslash backslash.glif + backslash_slash.liga + backslash_slash.liga.glif bahtthai bahtthai.glif bar bar.glif + bar_bar.liga + bar_bar.liga.glif + bar_bar_bar.liga + bar_bar_bar.liga.glif + bar_bar_bar_greater.liga + bar_bar_bar_greater.liga.glif + bar_bar_equal.liga + bar_bar_equal.liga.glif + bar_bar_equal.start + bar_bar_equal.start.glif + bar_bar_greater.liga + bar_bar_greater.liga.glif + bar_bar_hyphen.liga + bar_bar_hyphen.liga.glif + bar_bar_hyphen.start + bar_bar_hyphen.start.glif + bar_braceright.liga + bar_braceright.liga.glif + bar_bracketright.liga + bar_bracketright.liga.glif + bar_equal.liga + bar_equal.liga.glif + bar_equal.start + bar_equal.start.glif + bar_greater.liga + bar_greater.liga.glif + bar_hyphen.liga + bar_hyphen.liga.glif + bar_hyphen.start + bar_hyphen.start.glif blinebelow blinebelow.glif braceleft braceleft.glif + braceleft_bar.liga + braceleft_bar.liga.glif braceright braceright.glif bracketleft bracketleft.glif + bracketleft_bar.liga + bracketleft_bar.liga.glif bracketright bracketright.glif + bracketright_numbersign.liga + bracketright_numbersign.liga.glif breve breve.glif breveacute @@ -612,6 +672,18 @@ colon.glif colon.fig colon.fig.glif + colon_colon.liga + colon_colon.liga.glif + colon_colon_colon.liga + colon_colon_colon.liga.glif + colon_colon_equal.liga + colon_colon_equal.liga.glif + colon_equal.liga + colon_equal.liga.glif + colon_greater.liga + colon_greater.liga.glif + colon_less.liga + colon_less.liga.glif comma comma.glif commaaboverightcmb @@ -628,8 +700,32 @@ dagger.glif daggerdbl daggerdbl.glif + darkshade + darkshade.glif + dbldnhorzbxd + dbldnhorzbxd.glif + dbldnleftbxd + dbldnleftbxd.glif + dbldnrightbxd + dbldnrightbxd.glif + dblhorzbxd + dblhorzbxd.glif dblprimemod dblprimemod.glif + dbluphorzbxd + dbluphorzbxd.glif + dblupleftbxd + dblupleftbxd.glif + dbluprightbxd + dbluprightbxd.glif + dblvertbxd + dblvertbxd.glif + dblverthorzbxd + dblverthorzbxd.glif + dblvertleftbxd + dblvertleftbxd.glif + dblvertrightbxd + dblvertrightbxd.glif dcaron dcaron.glif dcircumflexbelow @@ -668,8 +764,64 @@ divide.glif dlinebelow dlinebelow.glif + dndblhorzsngbxd + dndblhorzsngbxd.glif + dndblleftsngbxd + dndblleftsngbxd.glif + dndblrightsngbxd + dndblrightsngbxd.glif + dneighthblock + dneighthblock.glif + dnfiveeighthsblock + dnfiveeighthsblock.glif + dnhalfblock + dnhalfblock.glif + dnheavyhorzlightbxd + dnheavyhorzlightbxd.glif + dnheavyleftlightbxd + dnheavyleftlightbxd.glif + dnheavyleftuplightbxd + dnheavyleftuplightbxd.glif + dnheavyrightlightbxd + dnheavyrightlightbxd.glif + dnheavyrightuplightbxd + dnheavyrightuplightbxd.glif + dnheavyuphorzlightbxd + dnheavyuphorzlightbxd.glif + dnleftquadrant + dnleftquadrant.glif + dnlighthorzheavybxd + dnlighthorzheavybxd.glif + dnlightleftheavybxd + dnlightleftheavybxd.glif + dnlightleftupheavybxd + dnlightleftupheavybxd.glif + dnlightrightheavybxd + dnlightrightheavybxd.glif + dnlightrightupheavybxd + dnlightrightupheavybxd.glif + dnlightuphorzheavybxd + dnlightuphorzheavybxd.glif + dnquarterblock + dnquarterblock.glif + dnrightquadrant + dnrightquadrant.glif + dnseveneighthsblock + dnseveneighthsblock.glif + dnsnghorzdblbxd + dnsnghorzdblbxd.glif + dnsngleftdblbxd + dnsngleftdblbxd.glif + dnsngrightdblbxd + dnsngrightdblbxd.glif + dnthreeeighthsblock + dnthreeeighthsblock.glif + dnthreequartersblock + dnthreequartersblock.glif dollar dollar.glif + dollar_greater.liga + dollar_greater.liga.glif dong dong.glif dotaccent @@ -738,12 +890,86 @@ eogonek.glif equal equal.glif + equal.end + equal.end.glif + equal.middle + equal.middle.glif + equal.start + equal.start.glif + equal_asciitilde.liga + equal_asciitilde.liga.glif + equal_bar.end + equal_bar.end.glif + equal_bar.liga + equal_bar.liga.glif + equal_bar_bar.end + equal_bar_bar.end.glif + equal_bar_bar.liga + equal_bar_bar.liga.glif + equal_bar_bar_equal.middle + equal_bar_bar_equal.middle.glif + equal_bar_equal.middle + equal_bar_equal.middle.glif + equal_colon_equal.middle + equal_colon_equal.middle.glif + equal_equal.liga + equal_equal.liga.glif + equal_equal_equal.liga + equal_equal_equal.liga.glif + equal_exclam_equal.middle + equal_exclam_equal.middle.glif + equal_greater.end + equal_greater.end.glif + equal_greater.liga + equal_greater.liga.glif + equal_greater_equal.middle + equal_greater_equal.middle.glif + equal_greater_greater.end + equal_greater_greater.end.glif + equal_greater_greater.liga + equal_greater_greater.liga.glif + equal_greater_greater_equal.m + equal_greater_greater_equal.m.glif + equal_less.end + equal_less.end.glif + equal_less.liga + equal_less.liga.glif + equal_less_equal.middle + equal_less_equal.middle.glif + equal_less_less.end + equal_less_less.end.glif + equal_less_less.liga + equal_less_less.liga.glif + equal_less_less_equal.middle + equal_less_less_equal.middle.glif + equal_slash.end + equal_slash.end.glif + equal_slash.liga + equal_slash.liga.glif + equal_slash_equal.middle + equal_slash_equal.middle.glif + equal_slash_slash.end + equal_slash_slash.end.glif + equal_slash_slash.liga + equal_slash_slash.liga.glif + equal_slash_slash_equal.middle + equal_slash_slash_equal.middle.glif eth eth.glif etilde etilde.glif exclam exclam.glif + exclam_asciitilde.liga + exclam_asciitilde.liga.glif + exclam_equal.liga + exclam_equal.liga.glif + exclam_equal_equal.liga + exclam_equal_equal.liga.glif + exclam_exclam.liga + exclam_exclam.liga.glif + exclam_exclam_period.liga + exclam_exclam_period.liga.glif exclamdown exclamdown.glif f @@ -778,6 +1004,8 @@ fracbar.glif fraction fraction.glif + fullblock + fullblock.glif g g.glif gbreve @@ -802,6 +1030,34 @@ gravecmb.cap.glif greater greater.glif + greater_colon.liga + greater_colon.liga.glif + greater_equal + greater_equal.glif + greater_equal.liga + greater_equal.liga.glif + greater_equal.start + greater_equal.start.glif + greater_equal_greater.liga + greater_equal_greater.liga.glif + greater_greater.liga + greater_greater.liga.glif + greater_greater_equal.liga + greater_greater_equal.liga.glif + greater_greater_equal.start + greater_greater_equal.start.glif + greater_greater_greater.liga + greater_greater_greater.liga.glif + greater_greater_hyphen.liga + greater_greater_hyphen.liga.glif + greater_greater_hyphen.start + greater_greater_hyphen.start.glif + greater_hyphen.liga + greater_hyphen.liga.glif + greater_hyphen.start + greater_hyphen.start.glif + greater_hyphen_greater.liga + greater_hyphen_greater.liga.glif greaterequal greaterequal.glif guillemetleft @@ -824,6 +1080,52 @@ hcircumflex.glif hdotbelow hdotbelow.glif + heavydbldashhorzbxd + heavydbldashhorzbxd.glif + heavydbldashvertbxd + heavydbldashvertbxd.glif + heavydnbxd + heavydnbxd.glif + heavydnhorzbxd + heavydnhorzbxd.glif + heavydnleftbxd + heavydnleftbxd.glif + heavydnrightbxd + heavydnrightbxd.glif + heavyhorzbxd + heavyhorzbxd.glif + heavyleftbxd + heavyleftbxd.glif + heavyleftlightrightbxd + heavyleftlightrightbxd.glif + heavyquaddashhorzbxd + heavyquaddashhorzbxd.glif + heavyquaddashvertbxd + heavyquaddashvertbxd.glif + heavyrightbxd + heavyrightbxd.glif + heavytrpldashhorzbxd + heavytrpldashhorzbxd.glif + heavytrpldashvertbxd + heavytrpldashvertbxd.glif + heavyupbxd + heavyupbxd.glif + heavyuphorzbxd + heavyuphorzbxd.glif + heavyupleftbxd + heavyupleftbxd.glif + heavyuplightdnbxd + heavyuplightdnbxd.glif + heavyuprightbxd + heavyuprightbxd.glif + heavyvertbxd + heavyvertbxd.glif + heavyverthorzbxd + heavyverthorzbxd.glif + heavyvertleftbxd + heavyvertleftbxd.glif + heavyvertrightbxd + heavyvertrightbxd.glif hlinebelow hlinebelow.glif hookcmb @@ -840,6 +1142,54 @@ hungarumlautcmb.cap.glif hyphen hyphen.glif + hyphen.end + hyphen.end.glif + hyphen.middle + hyphen.middle.glif + hyphen.start + hyphen.start.glif + hyphen_asciitilde.liga + hyphen_asciitilde.liga.glif + hyphen_bar.end + hyphen_bar.end.glif + hyphen_bar.liga + hyphen_bar.liga.glif + hyphen_bar_bar.end + hyphen_bar_bar.end.glif + hyphen_bar_bar.liga + hyphen_bar_bar.liga.glif + hyphen_bar_bar_hyphen.middle + hyphen_bar_bar_hyphen.middle.glif + hyphen_bar_hyphen.middle + hyphen_bar_hyphen.middle.glif + hyphen_greater.end + hyphen_greater.end.glif + hyphen_greater.liga + hyphen_greater.liga.glif + hyphen_greater_greater.end + hyphen_greater_greater.end.glif + hyphen_greater_greater.liga + hyphen_greater_greater.liga.glif + hyphen_greater_greater_hyphen.m + hyphen_greater_greater_hyphen.m.glif + hyphen_greater_hyphen.middle + hyphen_greater_hyphen.middle.glif + hyphen_hyphen.liga + hyphen_hyphen.liga.glif + hyphen_hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga.glif + hyphen_less.end + hyphen_less.end.glif + hyphen_less.liga + hyphen_less.liga.glif + hyphen_less_hyphen.middle + hyphen_less_hyphen.middle.glif + hyphen_less_less.end + hyphen_less_less.end.glif + hyphen_less_less.liga + hyphen_less_less.liga.glif + hyphen_less_less_hyphen.middle + hyphen_less_less_hyphen.middle.glif i i.glif iacute @@ -894,10 +1244,170 @@ lcommaaccent.glif ldotbelow ldotbelow.glif + leftdnheavyrightuplightbxd + leftdnheavyrightuplightbxd.glif + lefteighthblock + lefteighthblock.glif + leftfiveeighthsblock + leftfiveeighthsblock.glif + lefthalfblock + lefthalfblock.glif + leftheavyrightdnlightbxd + leftheavyrightdnlightbxd.glif + leftheavyrightuplightbxd + leftheavyrightuplightbxd.glif + leftheavyrightvertlightbxd + leftheavyrightvertlightbxd.glif + leftlightrightdnheavybxd + leftlightrightdnheavybxd.glif + leftlightrightupheavybxd + leftlightrightupheavybxd.glif + leftlightrightvertheavybxd + leftlightrightvertheavybxd.glif + leftquarterblock + leftquarterblock.glif + leftseveneighthsblock + leftseveneighthsblock.glif + leftthreeeighthsblock + leftthreeeighthsblock.glif + leftthreequartersblock + leftthreequartersblock.glif + leftupheavyrightdnlightbxd + leftupheavyrightdnlightbxd.glif less less.glif + less_asciitilde.liga + less_asciitilde.liga.glif + less_asciitilde_asciitilde.liga + less_asciitilde_asciitilde.liga.glif + less_asciitilde_greater.liga + less_asciitilde_greater.liga.glif + less_asterisk.liga + less_asterisk.liga.glif + less_asterisk_greater.liga + less_asterisk_greater.liga.glif + less_bar.liga + less_bar.liga.glif + less_bar_bar.liga + less_bar_bar.liga.glif + less_bar_bar_bar.liga + less_bar_bar_bar.liga.glif + less_bar_greater.liga + less_bar_greater.liga.glif + less_colon.liga + less_colon.liga.glif + less_dollar.liga + less_dollar.liga.glif + less_dollar_greater.liga + less_dollar_greater.liga.glif + less_equal + less_equal.glif + less_equal.liga + less_equal.liga.glif + less_equal.start + less_equal.start.glif + less_equal_greater.liga + less_equal_greater.liga.glif + less_equal_less.liga + less_equal_less.liga.glif + less_exclam_hyphen_hyphen.liga + less_exclam_hyphen_hyphen.liga.glif + less_greater.liga + less_greater.liga.glif + less_hyphen.liga + less_hyphen.liga.glif + less_hyphen.start + less_hyphen.start.glif + less_hyphen_greater.liga + less_hyphen_greater.liga.glif + less_hyphen_less.liga + less_hyphen_less.liga.glif + less_less.liga + less_less.liga.glif + less_less_equal.liga + less_less_equal.liga.glif + less_less_equal.start + less_less_equal.start.glif + less_less_hyphen.liga + less_less_hyphen.liga.glif + less_less_hyphen.start + less_less_hyphen.start.glif + less_less_less.liga + less_less_less.liga.glif + less_plus.liga + less_plus.liga.glif + less_plus_greater.liga + less_plus_greater.liga.glif + less_slash.liga + less_slash.liga.glif + less_slash_greater.liga + less_slash_greater.liga.glif lessequal lessequal.glif + lightarcdnleftbxd + lightarcdnleftbxd.glif + lightarcdnrightbxd + lightarcdnrightbxd.glif + lightarcupleftbxd + lightarcupleftbxd.glif + lightarcuprightbxd + lightarcuprightbxd.glif + lightdbldashhorzbxd + lightdbldashhorzbxd.glif + lightdbldashvertbxd + lightdbldashvertbxd.glif + lightdiagcrossbxd + lightdiagcrossbxd.glif + lightdiagupleftdnrightbxd + lightdiagupleftdnrightbxd.glif + lightdiaguprightdnleftbxd + lightdiaguprightdnleftbxd.glif + lightdnbxd + lightdnbxd.glif + lightdnhorzbxd + lightdnhorzbxd.glif + lightdnleftbxd + lightdnleftbxd.glif + lightdnrightbxd + lightdnrightbxd.glif + lighthorzbxd + lighthorzbxd.glif + lightleftbxd + lightleftbxd.glif + lightleftheavyrightbxd + lightleftheavyrightbxd.glif + lightquaddashhorzbxd + lightquaddashhorzbxd.glif + lightquaddashvertbxd + lightquaddashvertbxd.glif + lightrightbxd + lightrightbxd.glif + lightshade + lightshade.glif + lighttrpldashhorzbxd + lighttrpldashhorzbxd.glif + lighttrpldashvertbxd + lighttrpldashvertbxd.glif + lightupbxd + lightupbxd.glif + lightupheavydnbxd + lightupheavydnbxd.glif + lightuphorzbxd + lightuphorzbxd.glif + lightupleftbxd + lightupleftbxd.glif + lightuprightbxd + lightuprightbxd.glif + lightvertbxd + lightvertbxd.glif + lightverthorzbxd + lightverthorzbxd.glif + lightvertleftbxd + lightvertleftbxd.glif + lightvertrightbxd + lightvertrightbxd.glif + ligspacer + ligspacer.glif llinebelow llinebelow.glif lmacrondotbelow @@ -922,6 +1432,8 @@ mdotaccent.glif mdotbelow mdotbelow.glif + mediumshade + mediumshade.glif middotcat middotcat.glif middotcat.cap @@ -968,6 +1480,30 @@ ntilde.glif numbersign numbersign.glif + numbersign.end + numbersign.end.glif + numbersign.middle + numbersign.middle.glif + numbersign.start + numbersign.start.glif + numbersign_braceleft.liga + numbersign_braceleft.liga.glif + numbersign_bracketleft.liga + numbersign_bracketleft.liga.glif + numbersign_colon.liga + numbersign_colon.liga.glif + numbersign_equal.liga + numbersign_equal.liga.glif + numbersign_exclam.liga + numbersign_exclam.liga.glif + numbersign_parenleft.liga + numbersign_parenleft.liga.glif + numbersign_question.liga + numbersign_question.liga.glif + numbersign_underscore.liga + numbersign_underscore.liga.glif + numbersign_underscore_parenleft + numbersign_underscore_parenleft.glif o o.glif oacute @@ -1062,14 +1598,36 @@ parenright.glif percent percent.glif + percent_percent.liga + percent_percent.liga.glif period period.glif + period_equal.liga + period_equal.liga.glif + period_hyphen.liga + period_hyphen.liga.glif + period_period.liga + period_period.liga.glif + period_period_equal.liga + period_period_equal.liga.glif + period_period_less.liga + period_period_less.liga.glif + period_period_period.liga + period_period_period.liga.glif + period_question.liga + period_question.liga.glif periodcentered periodcentered.glif peso peso.glif plus plus.glif + plus_greater.liga + plus_greater.liga.glif + plus_plus.liga + plus_plus.liga.glif + plus_plus_plus.liga + plus_plus_plus.liga.glif plusminus plusminus.glif primemod @@ -1080,6 +1638,14 @@ q.glif question question.glif + question_colon.liga + question_colon.liga.glif + question_equal.liga + question_equal.liga.glif + question_period.liga + question_period.liga.glif + question_question.liga + question_question.liga.glif questiondown questiondown.glif quotedbl @@ -1112,6 +1678,26 @@ rdotbelow.glif registered registered.glif + rightdnheavyleftuplightbxd + rightdnheavyleftuplightbxd.glif + righteighthblock + righteighthblock.glif + righthalfblock + righthalfblock.glif + rightheavyleftdnlightbxd + rightheavyleftdnlightbxd.glif + rightheavyleftuplightbxd + rightheavyleftuplightbxd.glif + rightheavyleftvertlightbxd + rightheavyleftvertlightbxd.glif + rightlightleftdnheavybxd + rightlightleftdnheavybxd.glif + rightlightleftupheavybxd + rightlightleftupheavybxd.glif + rightlightleftvertheavybxd + rightlightleftvertheavybxd.glif + rightupheavyleftdnlightbxd + rightupheavyleftdnlightbxd.glif ring ring.glif ringcmb @@ -1146,6 +1732,8 @@ section.glif semicolon semicolon.glif + semicolon_semicolon.liga + semicolon_semicolon.liga.glif servicemark servicemark.glif seven @@ -1172,6 +1760,24 @@ six.sup.glif slash slash.glif + slash_asterisk.liga + slash_asterisk.liga.glif + slash_backslash.liga + slash_backslash.liga.glif + slash_equal.liga + slash_equal.liga.glif + slash_equal.start + slash_equal.start.glif + slash_greater.liga + slash_greater.liga.glif + slash_slash.liga + slash_slash.liga.glif + slash_slash_equal.liga + slash_slash_equal.liga.glif + slash_slash_equal.start + slash_slash_equal.start.glif + slash_slash_slash.liga + slash_slash_slash.liga.glif space space.glif sterling @@ -1278,6 +1884,14 @@ umacron.glif underscore underscore.glif + underscore.end + underscore.end.glif + underscore.middle + underscore.middle.glif + underscore.start + underscore.start.glif + underscore_bar_underscore.m + underscore_bar_underscore.m.glif uni00A0 uni00A_0.glif uni0326 @@ -1292,10 +1906,88 @@ uni20B_A_.glif uni20BD uni20B_D_.glif + uni2610 + uni2610.glif + uni2611 + uni2611.glif + uni2612 + uni2612.glif + uni2713 + uni2713.glif uniA788 uniA_788.glif + uniE0A0 + uniE_0A_0.glif + uniE0A1 + uniE_0A_1.glif + uniE0A2 + uniE_0A_2.glif + uniE0B0 + uniE_0B_0.glif + uniE0B1 + uniE_0B_1.glif + uniE0B2 + uniE_0B_2.glif + uniE0B3 + uniE_0B_3.glif uogonek uogonek.glif + updblhorzsngbxd + updblhorzsngbxd.glif + updblleftsngbxd + updblleftsngbxd.glif + updblrightsngbxd + updblrightsngbxd.glif + upeighthblock + upeighthblock.glif + uphalfblock + uphalfblock.glif + upheavydnhorzlightbxd + upheavydnhorzlightbxd.glif + upheavyhorzlightbxd + upheavyhorzlightbxd.glif + upheavyleftdnlightbxd + upheavyleftdnlightbxd.glif + upheavyleftlightbxd + upheavyleftlightbxd.glif + upheavyrightdnlightbxd + upheavyrightdnlightbxd.glif + upheavyrightlightbxd + upheavyrightlightbxd.glif + upleftdnleftdnrightquadrant + upleftdnleftdnrightquadrant.glif + upleftdnrightquadrant + upleftdnrightquadrant.glif + upleftquadrant + upleftquadrant.glif + upleftuprightdnleftquadrant + upleftuprightdnleftquadrant.glif + upleftuprightdnrightquadrant + upleftuprightdnrightquadrant.glif + uplightdnhorzheavybxd + uplightdnhorzheavybxd.glif + uplighthorzheavybxd + uplighthorzheavybxd.glif + uplightleftdnheavybxd + uplightleftdnheavybxd.glif + uplightleftheavybxd + uplightleftheavybxd.glif + uplightrightdnheavybxd + uplightrightdnheavybxd.glif + uplightrightheavybxd + uplightrightheavybxd.glif + uprightdnleftdnrightquadrant + uprightdnleftdnrightquadrant.glif + uprightdnleftquadrant + uprightdnleftquadrant.glif + uprightquadrant + uprightquadrant.glif + upsnghorzdblbxd + upsnghorzdblbxd.glif + upsngleftdblbxd + upsngleftdblbxd.glif + upsngrightdblbxd + upsngrightdblbxd.glif uring uring.glif utilde @@ -1304,12 +1996,38 @@ v.glif vdotbelow vdotbelow.glif + vertdblhorzsngbxd + vertdblhorzsngbxd.glif + vertdblleftsngbxd + vertdblleftsngbxd.glif + vertdblrightsngbxd + vertdblrightsngbxd.glif + vertheavyhorzlightbxd + vertheavyhorzlightbxd.glif + vertheavyleftlightbxd + vertheavyleftlightbxd.glif + vertheavyrightlightbxd + vertheavyrightlightbxd.glif verticallinelowmod verticallinelowmod.glif verticallinemod verticallinemod.glif + vertlighthorzheavybxd + vertlighthorzheavybxd.glif + vertlightleftheavybxd + vertlightleftheavybxd.glif + vertlightrightheavybxd + vertlightrightheavybxd.glif + vertsnghorzdblbxd + vertsnghorzdblbxd.glif + vertsngleftdblbxd + vertsngleftdblbxd.glif + vertsngrightdblbxd + vertsngrightdblbxd.glif w w.glif + w_w_w.liga + w_w_w.liga.glif wacute wacute.glif wcircumflex diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/darkshade.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/darkshade.glif new file mode 100644 index 00000000..fd2eb1c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/darkshade.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dbldnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dbldnhorzbxd.glif new file mode 100644 index 00000000..8502575d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dbldnhorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dbldnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dbldnleftbxd.glif new file mode 100644 index 00000000..7543dba2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dbldnleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dbldnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dbldnrightbxd.glif new file mode 100644 index 00000000..840b1c38 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dbldnrightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dblhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dblhorzbxd.glif new file mode 100644 index 00000000..29bb2483 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dblhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dbluphorzbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dbluphorzbxd.glif new file mode 100644 index 00000000..a346d1ef --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dbluphorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dblupleftbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dblupleftbxd.glif new file mode 100644 index 00000000..33af3598 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dblupleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dbluprightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dbluprightbxd.glif new file mode 100644 index 00000000..d65c524f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dbluprightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dblvertbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dblvertbxd.glif new file mode 100644 index 00000000..fe19cfa9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dblvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dblverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dblverthorzbxd.glif new file mode 100644 index 00000000..785f2580 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dblverthorzbxd.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dblvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dblvertleftbxd.glif new file mode 100644 index 00000000..82d4473b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dblvertleftbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dblvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dblvertrightbxd.glif new file mode 100644 index 00000000..dd8ab501 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dblvertrightbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dcaron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dcaron.glif index 2a1e9917..4c881aab 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dcircumflexbelow.glif index c2430384..598054fe 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dcircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dcircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dcroat.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dcroat.glif index 29af40c9..5bd8a66c 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dcroat.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dcroat.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ddotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ddotbelow.glif index 18df4d11..a62ed008 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ddotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ddotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresisacute.cap.glif index 5fa9042c..db8e4b6f 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresisacute.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresisacute.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresisacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresisacute.glif index 80c6990b..4a4e4e81 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresisacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresisacute.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresisbelowcmb.glif index f0e9635a..ca178c69 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresisbelowcmb.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresisbelowcmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresiscaron.cap.glif index c1a2e765..b718a056 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresiscaron.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresiscaron.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresiscaron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresiscaron.glif index a02b5bdd..255a91ec 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresiscaron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresiscaron.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresisgrave.cap.glif index 3b2021b3..04b241ff 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresisgrave.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresisgrave.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresisgrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresisgrave.glif index 04ff7800..f60782d9 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresisgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresisgrave.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresismacron.cap.glif index 7b8a7c13..66932765 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresismacron.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresismacron.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresismacron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresismacron.glif index 102f576d..424ef8b9 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresismacron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dieresismacron.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dlinebelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dlinebelow.glif index 248d3930..3c5bd199 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dndblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dndblhorzsngbxd.glif new file mode 100644 index 00000000..d27b4491 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dndblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dndblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dndblleftsngbxd.glif new file mode 100644 index 00000000..af5056e4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dndblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dndblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dndblrightsngbxd.glif new file mode 100644 index 00000000..d264d33a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dndblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dneighthblock.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dneighthblock.glif new file mode 100644 index 00000000..ff791c74 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dneighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnfiveeighthsblock.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnfiveeighthsblock.glif new file mode 100644 index 00000000..99bd1498 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnhalfblock.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnhalfblock.glif new file mode 100644 index 00000000..001cf3fb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnhalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnheavyhorzlightbxd.glif new file mode 100644 index 00000000..2d1fe590 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnheavyleftlightbxd.glif new file mode 100644 index 00000000..e2af396b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnheavyleftuplightbxd.glif new file mode 100644 index 00000000..cefb06ac --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnheavyrightlightbxd.glif new file mode 100644 index 00000000..d93be5c0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnheavyrightuplightbxd.glif new file mode 100644 index 00000000..6b965fa8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnheavyuphorzlightbxd.glif new file mode 100644 index 00000000..12db5f8c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnheavyuphorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnleftquadrant.glif new file mode 100644 index 00000000..42729338 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnlighthorzheavybxd.glif new file mode 100644 index 00000000..f978d416 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnlighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnlightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnlightleftheavybxd.glif new file mode 100644 index 00000000..862af40f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnlightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnlightleftupheavybxd.glif new file mode 100644 index 00000000..01b6ba1c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnlightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnlightrightheavybxd.glif new file mode 100644 index 00000000..d1c12ce6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnlightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnlightrightupheavybxd.glif new file mode 100644 index 00000000..f4a275f0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnlightuphorzheavybxd.glif new file mode 100644 index 00000000..81bd0d40 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnlightuphorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnquarterblock.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnquarterblock.glif new file mode 100644 index 00000000..c2180b50 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnrightquadrant.glif new file mode 100644 index 00000000..9858382e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnrightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnseveneighthsblock.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnseveneighthsblock.glif new file mode 100644 index 00000000..ecdac3da --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnsnghorzdblbxd.glif new file mode 100644 index 00000000..e5da9b8c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnsngleftdblbxd.glif new file mode 100644 index 00000000..607a54eb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnsngrightdblbxd.glif new file mode 100644 index 00000000..7b168004 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnthreeeighthsblock.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnthreeeighthsblock.glif new file mode 100644 index 00000000..7febe2aa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnthreequartersblock.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnthreequartersblock.glif new file mode 100644 index 00000000..a79dae14 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dnthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dollar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dollar_greater.liga.glif new file mode 100644 index 00000000..5e5a781f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dollar_greater.liga.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dotlessi.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dotlessi.glif index dfc2e57a..06f18156 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dotlessi.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dotlessi.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dotlessj.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dotlessj.glif index e86b129b..ab5976ba 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dotlessj.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/dotlessj.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/eacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/eacute.glif index 05052d4f..399df89f 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/eacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/eacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ebreve.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ebreve.glif index 401a167c..18c2ad77 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ebreve.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ebreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecaron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecaron.glif index 146346b7..26eb285c 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecaron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflex.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflex.glif index 06ad3103..19cfbb73 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflexacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflexacute.glif index 736ee56d..a4b7ad44 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflexdotbelow.glif index 8b67e078..2670f1bc 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflexgrave.glif index 1a6553e7..7be696a0 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflexhookabove.glif index d58ce8bf..278f01b4 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflextilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflextilde.glif index fdb44eda..b19ca7d2 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ecircumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/edieresis.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/edieresis.glif index 7f72c7e6..48a77fa0 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/edieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/edieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/edotaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/edotaccent.glif index bd7c0915..9f5a28c1 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/edotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/edotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/edotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/edotbelow.glif index df292f20..51b298f5 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/edotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/edotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/egrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/egrave.glif index 325d1a80..d1f3f1ca 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/egrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/egrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ehookabove.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ehookabove.glif index 09b25c91..5bd60e3f 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ehookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ehookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/eight.num.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/eight.num.glif index 34029129..cc1ad559 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/eight.num.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/eight.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/emacron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/emacron.glif index 4349a61b..85931f32 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/emacron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/emacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/eogonek.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/eogonek.glif index a44449dd..372cc995 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/eogonek.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/eogonek.glif @@ -2,8 +2,6 @@ - - @@ -22,7 +20,7 @@ - + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal.end.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal.end.glif new file mode 100644 index 00000000..f65a5dd5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal.middle.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal.middle.glif new file mode 100644 index 00000000..47bc761b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal.start.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal.start.glif new file mode 100644 index 00000000..c8fc88c3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_asciitilde.liga.glif new file mode 100644 index 00000000..bd4e9ebe --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_asciitilde.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_bar.end.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_bar.end.glif new file mode 100644 index 00000000..23422b37 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_bar.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_bar.liga.glif new file mode 100644 index 00000000..b8149dee --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_bar.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_bar_bar.end.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_bar_bar.end.glif new file mode 100644 index 00000000..39d160fe --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_bar_bar.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_bar_bar.liga.glif new file mode 100644 index 00000000..5754efcb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_bar_bar.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_bar_bar_equal.middle.glif new file mode 100644 index 00000000..7e04eb5d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_bar_bar_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_bar_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_bar_equal.middle.glif new file mode 100644 index 00000000..37cd143f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_bar_equal.middle.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_colon_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_colon_equal.middle.glif new file mode 100644 index 00000000..4fd38eb6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_colon_equal.middle.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_equal.liga.glif new file mode 100644 index 00000000..f7a06f10 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_equal.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_equal_equal.liga.glif new file mode 100644 index 00000000..06438b9b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_equal_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_exclam_equal.middle.glif new file mode 100644 index 00000000..7da9783e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_exclam_equal.middle.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_greater.end.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_greater.end.glif new file mode 100644 index 00000000..0cfa4a63 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_greater.end.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_greater.liga.glif new file mode 100644 index 00000000..9e6398b0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_greater_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_greater_equal.middle.glif new file mode 100644 index 00000000..1b5483d9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_greater_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_greater_greater.end.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_greater_greater.end.glif new file mode 100644 index 00000000..f3751a7d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_greater_greater.end.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_greater_greater.liga.glif new file mode 100644 index 00000000..78d20ebf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_greater_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_greater_greater_equal.m.glif new file mode 100644 index 00000000..5d510483 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_greater_greater_equal.m.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_less.end.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_less.end.glif new file mode 100644 index 00000000..eff92c19 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_less.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_less.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_less.liga.glif new file mode 100644 index 00000000..78b313ea --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_less.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_less_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_less_equal.middle.glif new file mode 100644 index 00000000..5b2ef431 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_less_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_less_less.end.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_less_less.end.glif new file mode 100644 index 00000000..696ff12b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_less_less.end.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_less_less.liga.glif new file mode 100644 index 00000000..0a54e4ce --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_less_less.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_less_less_equal.middle.glif new file mode 100644 index 00000000..1ef1bfa3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_less_less_equal.middle.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_slash.end.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_slash.end.glif new file mode 100644 index 00000000..7538e067 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_slash.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_slash.liga.glif new file mode 100644 index 00000000..a2be9f72 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_slash.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_slash_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_slash_equal.middle.glif new file mode 100644 index 00000000..a6a55f3b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_slash_equal.middle.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_slash_slash.end.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_slash_slash.end.glif new file mode 100644 index 00000000..560b5033 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_slash_slash.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_slash_slash.liga.glif new file mode 100644 index 00000000..41b2041c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_slash_slash.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_slash_slash_equal.middle.glif new file mode 100644 index 00000000..cfb82b7f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/equal_slash_slash_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/etilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/etilde.glif index 7eced16d..4270e672 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/etilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/etilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/exclam_asciitilde.liga.glif new file mode 100644 index 00000000..e8ddd714 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/exclam_asciitilde.liga.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/exclam_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/exclam_equal.liga.glif new file mode 100644 index 00000000..a0b85134 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/exclam_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/exclam_equal_equal.liga.glif new file mode 100644 index 00000000..e532b654 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/exclam_equal_equal.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/exclam_exclam.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/exclam_exclam.liga.glif new file mode 100644 index 00000000..92766d8a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/exclam_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/exclam_exclam_period.liga.glif new file mode 100644 index 00000000..d5bfd152 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/exclam_exclam_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/five.num.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/five.num.glif index 101e444c..c299993d 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/five.num.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/five.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/four.num.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/four.num.glif index 21b51dd4..e02b8324 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/four.num.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/four.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/fullblock.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/fullblock.glif new file mode 100644 index 00000000..2c547d1b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/fullblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gbreve.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gbreve.glif index 32d43b19..1b11133f 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gbreve.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gbreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gcaron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gcaron.glif index 36bf2ec0..bd6bfd44 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gcircumflex.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gcircumflex.glif index d1996904..00db7a01 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gcommaaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gcommaaccent.glif index 7c359960..25bd6502 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gdotaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gdotaccent.glif index 53beb21c..1b00c9c6 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gmacron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gmacron.glif index f6c769f2..ec9fa94f 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gmacron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gmacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gravecmb.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gravecmb.glif index 55b7938f..ebbe748f 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gravecmb.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/gravecmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_colon.liga.glif new file mode 100644 index 00000000..05708751 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_equal.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_equal.glif new file mode 100644 index 00000000..86d6dadc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_equal.liga.glif new file mode 100644 index 00000000..1f940632 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_equal.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_equal.start.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_equal.start.glif new file mode 100644 index 00000000..3158bc97 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_equal.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_equal_greater.liga.glif new file mode 100644 index 00000000..29c9acec --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_equal_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_greater.liga.glif new file mode 100644 index 00000000..a7208ce7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_greater_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_greater_equal.liga.glif new file mode 100644 index 00000000..e415624c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_greater_equal.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_greater_equal.start.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_greater_equal.start.glif new file mode 100644 index 00000000..6b97dd64 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_greater_equal.start.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_greater_greater.liga.glif new file mode 100644 index 00000000..c4289f69 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_greater_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_greater_hyphen.liga.glif new file mode 100644 index 00000000..b7192b94 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_greater_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_greater_hyphen.start.glif new file mode 100644 index 00000000..3150d0be --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_greater_hyphen.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_hyphen.liga.glif new file mode 100644 index 00000000..720a8ab5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_hyphen.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_hyphen.start.glif new file mode 100644 index 00000000..13123361 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_hyphen.start.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_hyphen_greater.liga.glif new file mode 100644 index 00000000..adaf876c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/greater_hyphen_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hbrevebelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hbrevebelow.glif index 5b4e67a0..e45650df 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hbrevebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hbrevebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hcircumflex.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hcircumflex.glif index 0e13adf4..7c7eb46a 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hdotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hdotbelow.glif index a4e99775..dfef2f8b 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavydbldashhorzbxd.glif new file mode 100644 index 00000000..c6d7708b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavydbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavydbldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavydbldashvertbxd.glif new file mode 100644 index 00000000..65b72b4e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavydbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavydnbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavydnbxd.glif new file mode 100644 index 00000000..55ebe382 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavydnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavydnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavydnhorzbxd.glif new file mode 100644 index 00000000..f1f24257 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavydnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavydnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavydnleftbxd.glif new file mode 100644 index 00000000..5b12d9bd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavydnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavydnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavydnrightbxd.glif new file mode 100644 index 00000000..11696dcc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavydnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyhorzbxd.glif new file mode 100644 index 00000000..e0367e4e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyhorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyleftbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyleftbxd.glif new file mode 100644 index 00000000..0f6de015 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyleftlightrightbxd.glif new file mode 100644 index 00000000..73e6885e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyleftlightrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyquaddashhorzbxd.glif new file mode 100644 index 00000000..42e55de1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyquaddashvertbxd.glif new file mode 100644 index 00000000..c45da1b6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyrightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyrightbxd.glif new file mode 100644 index 00000000..c10df1f4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavytrpldashhorzbxd.glif new file mode 100644 index 00000000..102309a3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavytrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavytrpldashvertbxd.glif new file mode 100644 index 00000000..3bfc4500 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavytrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyupbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyupbxd.glif new file mode 100644 index 00000000..707761f4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyuphorzbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyuphorzbxd.glif new file mode 100644 index 00000000..af2a7597 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyupleftbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyupleftbxd.glif new file mode 100644 index 00000000..d551278d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyuplightdnbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyuplightdnbxd.glif new file mode 100644 index 00000000..fc0d4b8d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyuplightdnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyuprightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyuprightbxd.glif new file mode 100644 index 00000000..d5335444 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyvertbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyvertbxd.glif new file mode 100644 index 00000000..e7b6f548 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyverthorzbxd.glif new file mode 100644 index 00000000..53fdd49f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyvertleftbxd.glif new file mode 100644 index 00000000..2376c0fa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyvertrightbxd.glif new file mode 100644 index 00000000..87236f5f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/heavyvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hlinebelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hlinebelow.glif index 936f1a1e..ba9adddd 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hookcmb.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hookcmb.glif index ba856a47..efb6b6f9 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hookcmb.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hookcmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/horizontalbar.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/horizontalbar.glif index 2c2b288d..ef4b3086 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/horizontalbar.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/horizontalbar.glif @@ -5,10 +5,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen.end.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen.end.glif new file mode 100644 index 00000000..88646adc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen.middle.glif new file mode 100644 index 00000000..27ed5640 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen.start.glif new file mode 100644 index 00000000..c650a49f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_asciitilde.liga.glif new file mode 100644 index 00000000..44d25601 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_asciitilde.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_bar.end.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_bar.end.glif new file mode 100644 index 00000000..9fe843b1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_bar.end.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_bar.liga.glif new file mode 100644 index 00000000..6810797f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_bar.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_bar.end.glif new file mode 100644 index 00000000..81bca1eb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_bar.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_bar.liga.glif new file mode 100644 index 00000000..cc1fda69 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif new file mode 100644 index 00000000..a9a7b55f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_hyphen.middle.glif new file mode 100644 index 00000000..eb7f4471 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_greater.end.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_greater.end.glif new file mode 100644 index 00000000..a2f757dc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_greater.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_greater.liga.glif new file mode 100644 index 00000000..f785cab1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_greater.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_greater.end.glif new file mode 100644 index 00000000..49050303 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_greater.end.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_greater.liga.glif new file mode 100644 index 00000000..3f504f25 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif new file mode 100644 index 00000000..f5593597 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_hyphen.middle.glif new file mode 100644 index 00000000..7fbef2f6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_hyphen.liga.glif new file mode 100644 index 00000000..4c49ab56 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_hyphen.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..52fb755c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_less.end.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_less.end.glif new file mode 100644 index 00000000..7421c1f6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_less.end.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_less.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_less.liga.glif new file mode 100644 index 00000000..e573fb32 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_less.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_less_hyphen.middle.glif new file mode 100644 index 00000000..875763b8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_less_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_less_less.end.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_less_less.end.glif new file mode 100644 index 00000000..2431de52 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_less_less.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_less_less.liga.glif new file mode 100644 index 00000000..0dc54bf5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_less_less.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif new file mode 100644 index 00000000..1fd6402c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/iacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/iacute.glif index 5d4a9aa1..66b02cea 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/iacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/iacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ibreve.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ibreve.glif index 68cc8dc2..1678b7e0 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ibreve.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ibreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/icaron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/icaron.glif index 97c35e76..eaea7b49 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/icaron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/icaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/icircumflex.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/icircumflex.glif index b9f32101..f1678f34 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/icircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/icircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/idieresis.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/idieresis.glif index b6f7767e..c75c0078 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/idieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/idieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/idotaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/idotaccent.glif index 93115a25..f9755096 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/idotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/idotaccent.glif @@ -5,10 +5,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/idotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/idotbelow.glif index e25ebfcd..2506bb5d 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/idotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/idotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/igrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/igrave.glif index 6d9e5bcc..63cad13e 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/igrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/igrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ihookabove.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ihookabove.glif index a64e49bc..2fbd65ca 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ihookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ihookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/imacron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/imacron.glif index 279baa76..264e1dc8 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/imacron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/imacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/itilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/itilde.glif index 824104a9..08998780 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/itilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/itilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/jcaron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/jcaron.glif index b46f134c..5d3190df 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/jcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/jcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/jcircumflex.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/jcircumflex.glif index eaf4b51b..b79dcb69 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/jcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/jcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/kcommaaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/kcommaaccent.glif index 1fdb47d3..fc8c70d8 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/kcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/kcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/kdotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/kdotbelow.glif index 25e7d229..c24ed5c1 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/kdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/kdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/klinebelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/klinebelow.glif index 8f9511e0..c2b98296 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/klinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/klinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/l.dot.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/l.dot.glif index 6d3679da..89764eec 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/l.dot.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/l.dot.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lacute.glif index 5989b49d..c4460061 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lcaron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lcaron.glif index 792759dd..c1ba9f0f 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lcircumflexbelow.glif index 5809cea1..ad863744 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lcircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lcircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lcommaaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lcommaaccent.glif index f5417b0d..0ba86a46 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ldotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ldotbelow.glif index 43be23cb..afaad087 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ldotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ldotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftdnheavyrightuplightbxd.glif new file mode 100644 index 00000000..f9a33a5a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftdnheavyrightuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lefteighthblock.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lefteighthblock.glif new file mode 100644 index 00000000..8d44dad4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lefteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftfiveeighthsblock.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftfiveeighthsblock.glif new file mode 100644 index 00000000..0eb9ccfc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lefthalfblock.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lefthalfblock.glif new file mode 100644 index 00000000..325c05f6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lefthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftheavyrightdnlightbxd.glif new file mode 100644 index 00000000..cd8979a4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftheavyrightuplightbxd.glif new file mode 100644 index 00000000..d19973b0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftheavyrightvertlightbxd.glif new file mode 100644 index 00000000..8e3b0cfe --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftheavyrightvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftlightrightdnheavybxd.glif new file mode 100644 index 00000000..d6fdf394 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftlightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftlightrightupheavybxd.glif new file mode 100644 index 00000000..54059e00 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftlightrightvertheavybxd.glif new file mode 100644 index 00000000..dd3c789c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftlightrightvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftquarterblock.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftquarterblock.glif new file mode 100644 index 00000000..036dad83 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftseveneighthsblock.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftseveneighthsblock.glif new file mode 100644 index 00000000..74b69747 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftthreeeighthsblock.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftthreeeighthsblock.glif new file mode 100644 index 00000000..e5c4283a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftthreequartersblock.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftthreequartersblock.glif new file mode 100644 index 00000000..5ae5b2e3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftupheavyrightdnlightbxd.glif new file mode 100644 index 00000000..fbdabb62 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/leftupheavyrightdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_asciitilde.liga.glif new file mode 100644 index 00000000..0047244f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_asciitilde.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..9130773d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_asciitilde_greater.liga.glif new file mode 100644 index 00000000..ff0ca756 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_asciitilde_greater.liga.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_asterisk.liga.glif new file mode 100644 index 00000000..1bc15f94 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_asterisk_greater.liga.glif new file mode 100644 index 00000000..a7ea9dec --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_asterisk_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_bar.liga.glif new file mode 100644 index 00000000..84105b29 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_bar.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_bar_bar.liga.glif new file mode 100644 index 00000000..953881bc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_bar_bar.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_bar_bar_bar.liga.glif new file mode 100644 index 00000000..de3404b1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_bar_bar_bar.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_bar_greater.liga.glif new file mode 100644 index 00000000..bf765f96 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_bar_greater.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_colon.liga.glif new file mode 100644 index 00000000..935703f6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_dollar.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_dollar.liga.glif new file mode 100644 index 00000000..510b5c66 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_dollar.liga.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_dollar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_dollar_greater.liga.glif new file mode 100644 index 00000000..e112fce2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_dollar_greater.liga.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_equal.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_equal.glif new file mode 100644 index 00000000..b437ae4c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_equal.liga.glif new file mode 100644 index 00000000..d233c475 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_equal.start.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_equal.start.glif new file mode 100644 index 00000000..c515e9ce --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_equal.start.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_equal_greater.liga.glif new file mode 100644 index 00000000..0df651b9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_equal_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_equal_less.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_equal_less.liga.glif new file mode 100644 index 00000000..c9e0581e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_equal_less.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..8231b477 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_greater.liga.glif new file mode 100644 index 00000000..b30aaba1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_greater.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_hyphen.liga.glif new file mode 100644 index 00000000..1b8f1d78 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_hyphen.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_hyphen.start.glif new file mode 100644 index 00000000..70391594 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_hyphen.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_hyphen_greater.liga.glif new file mode 100644 index 00000000..9cbadbcb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_hyphen_greater.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_hyphen_less.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_hyphen_less.liga.glif new file mode 100644 index 00000000..7842cad0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_hyphen_less.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_less.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_less.liga.glif new file mode 100644 index 00000000..8dedcdaf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_less.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_less_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_less_equal.liga.glif new file mode 100644 index 00000000..19b9f43b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_less_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_less_equal.start.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_less_equal.start.glif new file mode 100644 index 00000000..15304585 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_less_equal.start.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_less_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_less_hyphen.liga.glif new file mode 100644 index 00000000..b940153f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_less_hyphen.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_less_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_less_hyphen.start.glif new file mode 100644 index 00000000..9b1c9fa1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_less_hyphen.start.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_less_less.liga.glif new file mode 100644 index 00000000..40ad6dca --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_less_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_plus.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_plus.liga.glif new file mode 100644 index 00000000..8cdd8443 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_plus.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_plus_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_plus_greater.liga.glif new file mode 100644 index 00000000..5c4de59f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_plus_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_slash.liga.glif new file mode 100644 index 00000000..60a14888 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_slash.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_slash_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_slash_greater.liga.glif new file mode 100644 index 00000000..6f9aeabb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/less_slash_greater.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightarcdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightarcdnleftbxd.glif new file mode 100644 index 00000000..2aed0533 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightarcdnleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightarcdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightarcdnrightbxd.glif new file mode 100644 index 00000000..dd7e92d6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightarcdnrightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightarcupleftbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightarcupleftbxd.glif new file mode 100644 index 00000000..78721318 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightarcupleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightarcuprightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightarcuprightbxd.glif new file mode 100644 index 00000000..2888ca21 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightarcuprightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdbldashhorzbxd.glif new file mode 100644 index 00000000..57aa6481 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdbldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdbldashvertbxd.glif new file mode 100644 index 00000000..c64a3964 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdiagcrossbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdiagcrossbxd.glif new file mode 100644 index 00000000..8e7f9637 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdiagcrossbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdiagupleftdnrightbxd.glif new file mode 100644 index 00000000..da9d64ef --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdiagupleftdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdiaguprightdnleftbxd.glif new file mode 100644 index 00000000..f1a0e62e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdiaguprightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdnbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdnbxd.glif new file mode 100644 index 00000000..c761f349 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdnhorzbxd.glif new file mode 100644 index 00000000..e93b70c2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdnleftbxd.glif new file mode 100644 index 00000000..cf64c416 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdnrightbxd.glif new file mode 100644 index 00000000..958e2b6c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lighthorzbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lighthorzbxd.glif new file mode 100644 index 00000000..9da8ba0b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lighthorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightleftbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightleftbxd.glif new file mode 100644 index 00000000..4dd0d94d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightleftheavyrightbxd.glif new file mode 100644 index 00000000..66b0103f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightleftheavyrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightquaddashhorzbxd.glif new file mode 100644 index 00000000..f15d9e80 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightquaddashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightquaddashvertbxd.glif new file mode 100644 index 00000000..daf62d82 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightrightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightrightbxd.glif new file mode 100644 index 00000000..2cdf0919 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightshade.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightshade.glif new file mode 100644 index 00000000..156f38e4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightshade.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lighttrpldashhorzbxd.glif new file mode 100644 index 00000000..2e5dc3ca --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lighttrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lighttrpldashvertbxd.glif new file mode 100644 index 00000000..dd7195dc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lighttrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightupbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightupbxd.glif new file mode 100644 index 00000000..69c496ba --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightupheavydnbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightupheavydnbxd.glif new file mode 100644 index 00000000..7d5dd61d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightupheavydnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightuphorzbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightuphorzbxd.glif new file mode 100644 index 00000000..617e6c1f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightupleftbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightupleftbxd.glif new file mode 100644 index 00000000..c054c293 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightuprightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightuprightbxd.glif new file mode 100644 index 00000000..9ed787de --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightvertbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightvertbxd.glif new file mode 100644 index 00000000..10975f92 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightverthorzbxd.glif new file mode 100644 index 00000000..f12cbfc6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightvertleftbxd.glif new file mode 100644 index 00000000..84187942 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightvertrightbxd.glif new file mode 100644 index 00000000..952ab37f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lightvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ligspacer.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ligspacer.glif new file mode 100644 index 00000000..aaf0214e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ligspacer.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/llinebelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/llinebelow.glif index 30612641..590481c5 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/llinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/llinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lmacrondotbelow.glif index 119c7c72..58b14d6b 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lmacrondotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/lmacrondotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/macute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/macute.glif index 69b1f9e1..d8da0762 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/macute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/macute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/mdotaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/mdotaccent.glif index 62de5db3..7efa019f 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/mdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/mdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/mdotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/mdotbelow.glif index 856de70a..13d17c03 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/mdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/mdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/mediumshade.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/mediumshade.glif new file mode 100644 index 00000000..4e438ef8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/mediumshade.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/nacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/nacute.glif index d10c72a6..ef3f6092 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/nacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/nacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ncaron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ncaron.glif index 64417bdb..e28ca9bd 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ncaron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ncaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ncircumflexbelow.glif index 8cfa96c0..4068663c 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ncircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ncircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ncommaaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ncommaaccent.glif index 04de8efe..8a88be65 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ncommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ncommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ndotaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ndotaccent.glif index c8221033..92650cfd 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ndotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ndotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ndotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ndotbelow.glif index cab1123d..247555b0 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ngrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ngrave.glif index e740bbb8..dc1c7837 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ngrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/nine.num.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/nine.num.glif index f2d046c1..ebb0b622 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/nine.num.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/nine.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/nlinebelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/nlinebelow.glif index 4d07962a..ca2f59e5 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/nlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/nlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ntilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ntilde.glif index 844c572c..66cda983 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ntilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign.end.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign.end.glif new file mode 100644 index 00000000..99a96198 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign.end.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign.middle.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign.middle.glif new file mode 100644 index 00000000..94b6512e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign.start.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign.start.glif new file mode 100644 index 00000000..c14112f1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign.start.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_braceleft.liga.glif new file mode 100644 index 00000000..216b84fb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_braceleft.liga.glif @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_bracketleft.liga.glif new file mode 100644 index 00000000..9425a36b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_bracketleft.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_colon.liga.glif new file mode 100644 index 00000000..7302e3f2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_colon.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_equal.liga.glif new file mode 100644 index 00000000..caacc1bc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_equal.liga.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_exclam.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_exclam.liga.glif new file mode 100644 index 00000000..12127b00 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_parenleft.liga.glif new file mode 100644 index 00000000..6f817db1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_parenleft.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_question.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_question.liga.glif new file mode 100644 index 00000000..cbba0fff --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_underscore.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_underscore.liga.glif new file mode 100644 index 00000000..304bd39b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_underscore.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_underscore_parenleft.glif new file mode 100644 index 00000000..6ac5671a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/numbersign_underscore_parenleft.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/oacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/oacute.glif index 13bf5dd3..9111bbb4 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/oacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/oacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/obreve.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/obreve.glif index 2f34101c..b9ccea42 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/obreve.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/obreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocaron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocaron.glif index d8db3af8..59d804c6 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocaron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflex.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflex.glif index 63be1457..a79d5d18 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflexacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflexacute.glif index 0c1af7fe..c7d5d07e 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflexdotbelow.glif index 2a488c4c..6abfaae0 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflexgrave.glif index c0832640..9be7759b 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflexhookabove.glif index 06fb05ec..3a5475e5 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflextilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflextilde.glif index 3050fe16..3416e6e3 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ocircumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/odieresis.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/odieresis.glif index 4e3c5ef4..f2c87d00 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/odieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/odieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/odotaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/odotaccent.glif index 4d76837c..211f6c4c 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/odotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/odotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/odotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/odotbelow.glif index 2cea95cc..8d7d0312 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/odotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/odotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ograve.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ograve.glif index 42efffd5..1fc32818 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ograve.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ograve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohookabove.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohookabove.glif index e3486edf..4bfcb241 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohorn.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohorn.glif index f231ed45..28dae449 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohorn.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohorn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohornacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohornacute.glif index 7086971e..bbf1ef49 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohornacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohorndotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohorndotbelow.glif index 39f93ec0..efc6deab 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohorndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohorndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohorngrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohorngrave.glif index a59ba850..32469fc7 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohorngrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohorngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohornhookabove.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohornhookabove.glif index 90cee1d1..a60bb006 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohorntilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohorntilde.glif index 16288724..e838e44d 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohorntilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohorntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohungarumlaut.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohungarumlaut.glif index 00e72b71..246c0ab5 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohungarumlaut.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ohungarumlaut.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/omacron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/omacron.glif index 03111067..9d438a0c 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/omacron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/omacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/one.num.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/one.num.glif index b7c7edcc..b8fcdd09 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/one.num.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/one.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/otilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/otilde.glif index bb97291d..bf7008ed 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/otilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/otilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/percent_percent.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/percent_percent.liga.glif new file mode 100644 index 00000000..cce98635 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/percent_percent.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_equal.liga.glif new file mode 100644 index 00000000..80299351 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_hyphen.liga.glif new file mode 100644 index 00000000..a2e614bc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_period.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_period.liga.glif new file mode 100644 index 00000000..7040f36f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_period_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_period_equal.liga.glif new file mode 100644 index 00000000..346d5261 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_period_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_period_less.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_period_less.liga.glif new file mode 100644 index 00000000..8d662405 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_period_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_period_period.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_period_period.liga.glif new file mode 100644 index 00000000..25895b8b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_period_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_question.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_question.liga.glif new file mode 100644 index 00000000..41aab1b0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/period_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/plus_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/plus_greater.liga.glif new file mode 100644 index 00000000..21f36121 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/plus_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/plus_plus.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/plus_plus.liga.glif new file mode 100644 index 00000000..cdd97a95 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/plus_plus.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/plus_plus_plus.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/plus_plus_plus.liga.glif new file mode 100644 index 00000000..9551eae7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/plus_plus_plus.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/question_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/question_colon.liga.glif new file mode 100644 index 00000000..f5467224 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/question_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/question_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/question_equal.liga.glif new file mode 100644 index 00000000..2964232e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/question_equal.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/question_period.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/question_period.liga.glif new file mode 100644 index 00000000..c5330f1a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/question_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/question_question.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/question_question.liga.glif new file mode 100644 index 00000000..f83e514f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/question_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/racute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/racute.glif index 4a61ebf1..eeb50e5d 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/racute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/racute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rcaron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rcaron.glif index c2c182d2..05e8ba36 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rcommaaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rcommaaccent.glif index b3d1a7d7..bba5f3f4 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rdotaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rdotaccent.glif index c6481af4..efb21cc6 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rdotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rdotbelow.glif index a4a763f1..9744664f 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightdnheavyleftuplightbxd.glif new file mode 100644 index 00000000..dfeefee1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightdnheavyleftuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/righteighthblock.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/righteighthblock.glif new file mode 100644 index 00000000..9d954a40 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/righteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/righthalfblock.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/righthalfblock.glif new file mode 100644 index 00000000..7d4f8cef --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/righthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightheavyleftdnlightbxd.glif new file mode 100644 index 00000000..b81ffacc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightheavyleftuplightbxd.glif new file mode 100644 index 00000000..2114074f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightheavyleftvertlightbxd.glif new file mode 100644 index 00000000..6905b12d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightheavyleftvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightlightleftdnheavybxd.glif new file mode 100644 index 00000000..b54477ce --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightlightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightlightleftupheavybxd.glif new file mode 100644 index 00000000..124a2166 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightlightleftvertheavybxd.glif new file mode 100644 index 00000000..a3bdd289 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightlightleftvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightupheavyleftdnlightbxd.glif new file mode 100644 index 00000000..acdeea29 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rightupheavyleftdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ringcmb.cap.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ringcmb.cap.glif index 743aa706..c46b9a76 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ringcmb.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ringcmb.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rlinebelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rlinebelow.glif index 18a47c28..7e498234 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rmacrondotbelow.glif index 720736c5..9b9650be 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rmacrondotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/rmacrondotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/s.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/s.glif index e8b1ed92..8f27560d 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/s.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/s.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/sacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/sacute.glif index 3b93954f..434e4e31 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/sacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/sacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/scaron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/scaron.glif index 2b3f26e7..e138089d 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/scaron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/scaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/scircumflex.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/scircumflex.glif index 795f1858..64bec73d 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/scircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/scircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/scommaaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/scommaaccent.glif index 38178764..f1f9486a 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/scommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/scommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/sdotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/sdotbelow.glif index 41f57dde..788f7e3b 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/sdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/sdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/semicolon_semicolon.liga.glif new file mode 100644 index 00000000..fecb4442 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/semicolon_semicolon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/seven.num.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/seven.num.glif index dab83775..f4db09fd 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/seven.num.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/seven.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/six.num.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/six.num.glif index 831cf7ba..f366fc60 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/six.num.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/six.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_asterisk.liga.glif new file mode 100644 index 00000000..236aa3a9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_backslash.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_backslash.liga.glif new file mode 100644 index 00000000..2364ebf4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_backslash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_equal.liga.glif new file mode 100644 index 00000000..fed5eeee --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_equal.start.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_equal.start.glif new file mode 100644 index 00000000..3bbd94f1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_greater.liga.glif new file mode 100644 index 00000000..664f2e1c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_slash.liga.glif new file mode 100644 index 00000000..2bc4a71a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_slash_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_slash_equal.liga.glif new file mode 100644 index 00000000..87ae311c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_slash_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_slash_equal.start.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_slash_equal.start.glif new file mode 100644 index 00000000..8cd1c1ca --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_slash_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_slash_slash.liga.glif new file mode 100644 index 00000000..3f943989 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/slash_slash_slash.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/tcaron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/tcaron.glif index 0efb1b63..128e2e38 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/tcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/tcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/tcircumflexbelow.glif index 3eaf8b22..69a9d98d 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/tcircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/tcircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/tcommaaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/tcommaaccent.glif index 5e43a32e..5799863b 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/tcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/tcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/tdotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/tdotbelow.glif index 5c0c7e13..1e31f4c2 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/tdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/tdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/three.num.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/three.num.glif index 6fb8e189..2d2d9aa4 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/three.num.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/three.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/tlinebelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/tlinebelow.glif index dc02ff50..52e9569a 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/tlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/tlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/two.num.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/two.num.glif index 4cffc661..eef8aa1d 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/two.num.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/two.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uacute.glif index a5e10097..112377f7 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ubreve.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ubreve.glif index 6810c769..241a5d13 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ubreve.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ubreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ucaron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ucaron.glif index 43ee4a04..c9e7ef07 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ucaron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ucaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ucircumflex.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ucircumflex.glif index e89fb844..62078457 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ucircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ucircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udieresis.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udieresis.glif index e29e06bb..4b52d390 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udieresisacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udieresisacute.glif index f2b8b172..65f5fa2e 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udieresisacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udieresisacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udieresiscaron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udieresiscaron.glif index 4c954977..13e0f8c7 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udieresiscaron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udieresiscaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udieresisgrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udieresisgrave.glif index 1abb564d..9d58aafb 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udieresisgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udieresisgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udieresismacron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udieresismacron.glif index 6b9a8b82..d5fed35d 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udieresismacron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udieresismacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udotbelow.glif index 938758ae..e884f9d3 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/udotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ugrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ugrave.glif index c1cba5a8..ac9cc23f 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ugrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ugrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhookabove.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhookabove.glif index 1b048324..3e70b8b8 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhorn.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhorn.glif index 86aecc73..5d336c5d 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhorn.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhorn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhornacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhornacute.glif index 880c2c57..aaf1b969 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhornacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhorndotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhorndotbelow.glif index 870435ee..120ec20e 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhorndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhorndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhorngrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhorngrave.glif index 0d263613..130976e8 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhorngrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhorngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhornhookabove.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhornhookabove.glif index ff478d75..ea3aa43d 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhorntilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhorntilde.glif index 7bab266f..458f8c04 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhorntilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhorntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhungarumlaut.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhungarumlaut.glif index e7f0ea6e..ec131c5f 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhungarumlaut.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uhungarumlaut.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/umacron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/umacron.glif index 4a0f1d51..b9b8efde 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/umacron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/umacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/underscore.end.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/underscore.end.glif new file mode 100644 index 00000000..ccc43529 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/underscore.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/underscore.middle.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/underscore.middle.glif new file mode 100644 index 00000000..11fadc7f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/underscore.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/underscore.start.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/underscore.start.glif new file mode 100644 index 00000000..8480d30b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/underscore.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/underscore_bar_underscore.m.glif new file mode 100644 index 00000000..bee9ed64 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/underscore_bar_underscore.m.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uni2011.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uni2011.glif index 937026ea..33e0d4b6 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uni2011.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uni2011.glif @@ -5,10 +5,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uni2610.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uni2610.glif new file mode 100644 index 00000000..974a899c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uni2610.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uni2611.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uni2611.glif new file mode 100644 index 00000000..706702db --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uni2611.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uni2612.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uni2612.glif new file mode 100644 index 00000000..f5abaf5f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uni2612.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uni2713.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uni2713.glif new file mode 100644 index 00000000..7de3753b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uni2713.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0A_0.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0A_0.glif new file mode 100644 index 00000000..343b5385 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0A_0.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0A_1.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0A_1.glif new file mode 100644 index 00000000..758b475c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0A_1.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0A_2.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0A_2.glif new file mode 100644 index 00000000..9dada2b4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0A_2.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0B_0.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0B_0.glif new file mode 100644 index 00000000..6f394ac4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0B_0.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0B_1.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0B_1.glif new file mode 100644 index 00000000..ce9b1279 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0B_1.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0B_2.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0B_2.glif new file mode 100644 index 00000000..6a8e5ff9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0B_2.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0B_3.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0B_3.glif new file mode 100644 index 00000000..61b2fdf4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uniE_0B_3.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/updblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/updblhorzsngbxd.glif new file mode 100644 index 00000000..34ab7f3e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/updblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/updblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/updblleftsngbxd.glif new file mode 100644 index 00000000..d8160159 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/updblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/updblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/updblrightsngbxd.glif new file mode 100644 index 00000000..51b8970a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/updblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upeighthblock.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upeighthblock.glif new file mode 100644 index 00000000..87701940 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upeighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uphalfblock.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uphalfblock.glif new file mode 100644 index 00000000..018ed615 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uphalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upheavydnhorzlightbxd.glif new file mode 100644 index 00000000..d60f37d0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upheavydnhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upheavyhorzlightbxd.glif new file mode 100644 index 00000000..8a58aae7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upheavyleftdnlightbxd.glif new file mode 100644 index 00000000..6f56e67d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upheavyleftlightbxd.glif new file mode 100644 index 00000000..e9e2c2c4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upheavyrightdnlightbxd.glif new file mode 100644 index 00000000..071d1e39 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upheavyrightlightbxd.glif new file mode 100644 index 00000000..d7dce54a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upleftdnleftdnrightquadrant.glif new file mode 100644 index 00000000..91309b79 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upleftdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upleftdnrightquadrant.glif new file mode 100644 index 00000000..9bb17821 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upleftdnrightquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upleftquadrant.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upleftquadrant.glif new file mode 100644 index 00000000..ef21c49d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upleftuprightdnleftquadrant.glif new file mode 100644 index 00000000..0d5294c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upleftuprightdnleftquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upleftuprightdnrightquadrant.glif new file mode 100644 index 00000000..56cf6e14 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upleftuprightdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uplightdnhorzheavybxd.glif new file mode 100644 index 00000000..b9ec0e3b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uplightdnhorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uplighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uplighthorzheavybxd.glif new file mode 100644 index 00000000..c712f7a0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uplighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uplightleftdnheavybxd.glif new file mode 100644 index 00000000..81578c73 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uplightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uplightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uplightleftheavybxd.glif new file mode 100644 index 00000000..b045bd0a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uplightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uplightrightdnheavybxd.glif new file mode 100644 index 00000000..427fd591 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uplightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uplightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uplightrightheavybxd.glif new file mode 100644 index 00000000..b70f3c25 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uplightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uprightdnleftdnrightquadrant.glif new file mode 100644 index 00000000..df5a022e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uprightdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uprightdnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uprightdnleftquadrant.glif new file mode 100644 index 00000000..93cbe757 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uprightdnleftquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uprightquadrant.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uprightquadrant.glif new file mode 100644 index 00000000..de8b454f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uprightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upsnghorzdblbxd.glif new file mode 100644 index 00000000..5065c752 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upsngleftdblbxd.glif new file mode 100644 index 00000000..ee0cd26b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upsngrightdblbxd.glif new file mode 100644 index 00000000..776d328d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/upsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uring.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uring.glif index f1c8a0de..7d21db0e 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uring.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/uring.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/utilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/utilde.glif index 4c653764..523d20bb 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/utilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/utilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vdotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vdotbelow.glif index 073ddf83..93a9c351 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertdblhorzsngbxd.glif new file mode 100644 index 00000000..e08f69c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertdblhorzsngbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertdblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertdblleftsngbxd.glif new file mode 100644 index 00000000..17c9d927 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertdblleftsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertdblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertdblrightsngbxd.glif new file mode 100644 index 00000000..b45d79b3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertdblrightsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertheavyhorzlightbxd.glif new file mode 100644 index 00000000..06413495 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertheavyhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertheavyleftlightbxd.glif new file mode 100644 index 00000000..1c81bdad --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertheavyleftlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertheavyrightlightbxd.glif new file mode 100644 index 00000000..61c97480 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertheavyrightlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertlighthorzheavybxd.glif new file mode 100644 index 00000000..44d942a7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertlighthorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertlightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertlightleftheavybxd.glif new file mode 100644 index 00000000..2d9792c0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertlightleftheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertlightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertlightrightheavybxd.glif new file mode 100644 index 00000000..111b19ed --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertlightrightheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertsnghorzdblbxd.glif new file mode 100644 index 00000000..3e97304e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertsnghorzdblbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertsngleftdblbxd.glif new file mode 100644 index 00000000..935d0336 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertsngleftdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertsngrightdblbxd.glif new file mode 100644 index 00000000..4fc34453 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/vertsngrightdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/w_w_w.liga.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/w_w_w.liga.glif new file mode 100644 index 00000000..e06e20c3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/w_w_w.liga.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/wacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/wacute.glif index 098d8dbd..9ea05c2e 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/wacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/wacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/wcircumflex.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/wcircumflex.glif index 57d8cc75..7b1e5b04 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/wcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/wcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/wdieresis.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/wdieresis.glif index 6aa720e1..4baaede8 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/wdieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/wdieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/wgrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/wgrave.glif index b4b52668..36c1afe1 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/wgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/wgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/xdieresis.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/xdieresis.glif index 35d08922..d72e89c4 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/xdieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/xdieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/yacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/yacute.glif index c02ace7f..7a203b1e 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/yacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/yacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ycircumflex.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ycircumflex.glif index d9d8ff4c..7c7b0ca2 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ycircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ycircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ydieresis.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ydieresis.glif index 8415e61c..15be164b 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ydieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ydieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ydotaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ydotaccent.glif index e19a5065..a236a29f 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ydotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ydotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ydotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ydotbelow.glif index 119bbd40..369bda7d 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ydotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ydotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ygrave.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ygrave.glif index 5e7a9bb4..541cbb97 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ygrave.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ygrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/yhookabove.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/yhookabove.glif index 04f4276d..dae69601 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/yhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/yhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ymacron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ymacron.glif index 379fc179..47640277 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ymacron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ymacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ytilde.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ytilde.glif index 5314fc83..9b3060ab 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ytilde.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/ytilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zacute.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zacute.glif index de9b19c4..1ee5e646 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zacute.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zcaron.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zcaron.glif index a6ccc067..ae4b4720 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zcircumflex.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zcircumflex.glif index cb3f0410..7eb1d5ec 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zdotaccent.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zdotaccent.glif index b4f68d77..5416ae60 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zdotbelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zdotbelow.glif index a8c0f27f..41ded788 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zero.num.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zero.num.glif index bf03111e..e1ec4bd5 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zero.num.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zero.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zlinebelow.glif b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zlinebelow.glif index 45a78577..0888dff3 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/glyphs/zlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Italic.ufo/lib.plist b/sources/instances/postscript/IntelOneMono-Italic.ufo/lib.plist index 047cc547..29a765f7 100644 --- a/sources/instances/postscript/IntelOneMono-Italic.ufo/lib.plist +++ b/sources/instances/postscript/IntelOneMono-Italic.ufo/lib.plist @@ -710,6 +710,365 @@ circumflexgrave.cap circumflexhook.cap circumflextilde.cap + lighthorzbxd + heavyhorzbxd + lightvertbxd + heavyvertbxd + lighttrpldashhorzbxd + heavytrpldashhorzbxd + lighttrpldashvertbxd + heavytrpldashvertbxd + lightquaddashhorzbxd + heavyquaddashhorzbxd + lightquaddashvertbxd + heavyquaddashvertbxd + lightdnrightbxd + dnlightrightheavybxd + dnheavyrightlightbxd + heavydnrightbxd + lightdnleftbxd + dnlightleftheavybxd + dnheavyleftlightbxd + heavydnleftbxd + lightuprightbxd + uplightrightheavybxd + upheavyrightlightbxd + heavyuprightbxd + lightupleftbxd + uplightleftheavybxd + upheavyleftlightbxd + heavyupleftbxd + lightvertrightbxd + vertlightrightheavybxd + upheavyrightdnlightbxd + dnheavyrightuplightbxd + vertheavyrightlightbxd + dnlightrightupheavybxd + uplightrightdnheavybxd + heavyvertrightbxd + lightvertleftbxd + vertlightleftheavybxd + upheavyleftdnlightbxd + dnheavyleftuplightbxd + vertheavyleftlightbxd + dnlightleftupheavybxd + uplightleftdnheavybxd + heavyvertleftbxd + lightdnhorzbxd + leftheavyrightdnlightbxd + rightheavyleftdnlightbxd + dnlighthorzheavybxd + dnheavyhorzlightbxd + rightlightleftdnheavybxd + leftlightrightdnheavybxd + heavydnhorzbxd + lightuphorzbxd + leftheavyrightuplightbxd + rightheavyleftuplightbxd + uplighthorzheavybxd + upheavyhorzlightbxd + rightlightleftupheavybxd + leftlightrightupheavybxd + heavyuphorzbxd + lightverthorzbxd + leftheavyrightvertlightbxd + rightheavyleftvertlightbxd + vertlighthorzheavybxd + upheavydnhorzlightbxd + dnheavyuphorzlightbxd + vertheavyhorzlightbxd + leftupheavyrightdnlightbxd + rightupheavyleftdnlightbxd + leftdnheavyrightuplightbxd + rightdnheavyleftuplightbxd + dnlightuphorzheavybxd + uplightdnhorzheavybxd + rightlightleftvertheavybxd + leftlightrightvertheavybxd + heavyverthorzbxd + lightdbldashhorzbxd + heavydbldashhorzbxd + lightdbldashvertbxd + heavydbldashvertbxd + dblhorzbxd + dblvertbxd + dnsngrightdblbxd + dndblrightsngbxd + dbldnrightbxd + dnsngleftdblbxd + dndblleftsngbxd + dbldnleftbxd + upsngrightdblbxd + updblrightsngbxd + dbluprightbxd + upsngleftdblbxd + updblleftsngbxd + dblupleftbxd + vertsngrightdblbxd + vertdblrightsngbxd + dblvertrightbxd + vertsngleftdblbxd + vertdblleftsngbxd + dblvertleftbxd + dnsnghorzdblbxd + dndblhorzsngbxd + dbldnhorzbxd + upsnghorzdblbxd + updblhorzsngbxd + dbluphorzbxd + vertsnghorzdblbxd + vertdblhorzsngbxd + dblverthorzbxd + lightarcdnrightbxd + lightarcdnleftbxd + lightarcupleftbxd + lightarcuprightbxd + lightdiaguprightdnleftbxd + lightdiagupleftdnrightbxd + lightdiagcrossbxd + lightleftbxd + lightupbxd + lightrightbxd + lightdnbxd + heavyleftbxd + heavyupbxd + heavyrightbxd + heavydnbxd + lightleftheavyrightbxd + lightupheavydnbxd + heavyleftlightrightbxd + heavyuplightdnbxd + uphalfblock + dneighthblock + dnquarterblock + dnthreeeighthsblock + dnhalfblock + dnfiveeighthsblock + dnthreequartersblock + dnseveneighthsblock + fullblock + leftseveneighthsblock + leftthreequartersblock + leftfiveeighthsblock + lefthalfblock + leftthreeeighthsblock + leftquarterblock + lefteighthblock + righthalfblock + lightshade + mediumshade + darkshade + upeighthblock + righteighthblock + dnleftquadrant + dnrightquadrant + upleftquadrant + upleftdnleftdnrightquadrant + upleftdnrightquadrant + upleftuprightdnleftquadrant + upleftuprightdnrightquadrant + uprightquadrant + uprightdnleftquadrant + uprightdnleftdnrightquadrant + ligspacer + equal.start + equal.middle + equal.end + hyphen.start + hyphen.middle + hyphen.end + underscore.start + underscore.middle + underscore.end + numbersign.start + numbersign.middle + numbersign.end + period_equal.liga + period_period_equal.liga + period_hyphen.liga + colon_equal.liga + equal_equal.liga + exclam_equal.liga + equal_equal_equal.liga + exclam_equal_equal.liga + less_hyphen_less.liga + less_less_hyphen.liga + less_hyphen.liga + less_hyphen_greater.liga + hyphen_greater.liga + hyphen_greater_greater.liga + greater_hyphen_greater.liga + less_equal_less.liga + less_less_equal.liga + less_equal_greater.liga + equal_greater.liga + less_equal.liga + equal_greater_greater.liga + greater_equal_greater.liga + greater_equal.liga + greater_greater_equal.liga + greater_greater_hyphen.liga + greater_hyphen.liga + less_asciitilde_greater.liga + hyphen_less.liga + hyphen_less_less.liga + equal_less.liga + equal_less_less.liga + less_asciitilde_asciitilde.liga + less_asciitilde.liga + asciitilde_asciitilde.liga + asciitilde_greater.liga + asciitilde_asciitilde_greater + less_exclam_hyphen_hyphen.liga + slash_equal.liga + hyphen_bar.liga + bar_hyphen.liga + bar_equal.liga + hyphen_bar_bar.liga + bar_bar_hyphen.liga + equal_bar_bar.liga + bar_bar_equal.liga + equal_bar.liga + slash_slash_equal.liga + equal_slash.liga + equal_slash_slash.liga + equal_colon_equal.middle + equal_exclam_equal.middle + underscore_bar_underscore.m + hyphen_bar_hyphen.middle + equal_bar_equal.middle + hyphen_greater_hyphen.middle + hyphen_greater_greater_hyphen.m + equal_slash_slash_equal.middle + equal_slash_equal.middle + hyphen_bar_bar_hyphen.middle + equal_bar_bar_equal.middle + hyphen_less_hyphen.middle + hyphen_less_less_hyphen.middle + equal_greater_equal.middle + equal_less_equal.middle + equal_greater_greater_equal.m + equal_less_less_equal.middle + less_hyphen.start + greater_hyphen.start + bar_hyphen.start + less_equal.start + greater_equal.start + bar_equal.start + slash_equal.start + slash_slash_equal.start + less_less_hyphen.start + greater_greater_hyphen.start + bar_bar_hyphen.start + less_less_equal.start + greater_greater_equal.start + bar_bar_equal.start + hyphen_less.end + hyphen_greater.end + hyphen_bar.end + equal_less.end + equal_greater.end + equal_bar.end + hyphen_less_less.end + hyphen_greater_greater.end + hyphen_bar_bar.end + equal_less_less.end + equal_greater_greater.end + equal_bar_bar.end + equal_slash.end + equal_slash_slash.end + less_less_less.liga + less_less.liga + less_equal + less_greater.liga + greater_equal + greater_greater.liga + greater_greater_greater.liga + braceleft_bar.liga + bracketleft_bar.liga + less_colon.liga + colon_less.liga + greater_colon.liga + colon_greater.liga + bar_braceright.liga + bar_bracketright.liga + less_bar_bar_bar.liga + less_bar_bar.liga + less_bar.liga + less_bar_greater.liga + bar_greater.liga + bar_bar_greater.liga + bar_bar_bar_greater.liga + less_dollar.liga + less_dollar_greater.liga + dollar_greater.liga + less_plus.liga + less_plus_greater.liga + plus_greater.liga + less_asterisk.liga + less_asterisk_greater.liga + asterisk_greater.liga + slash_asterisk.liga + asterisk_slash.liga + slash_slash_slash.liga + slash_slash.liga + less_slash.liga + less_slash_greater.liga + slash_greater.liga + semicolon_semicolon.liga + colon_colon.liga + colon_colon_colon.liga + period_period.liga + period_period_period.liga + period_period_less.liga + exclam_exclam.liga + question_question.liga + percent_percent.liga + ampersand_ampersand.liga + bar_bar.liga + question_period.liga + question_colon.liga + plus_plus.liga + plus_plus_plus.liga + hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga + asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga + equal_asciitilde.liga + exclam_asciitilde.liga + asciitilde_hyphen.liga + w_w_w.liga + hyphen_asciitilde.liga + asciitilde_at.liga + asciicircum_equal.liga + question_equal.liga + numbersign_exclam.liga + numbersign_equal.liga + numbersign_colon.liga + numbersign_braceleft.liga + numbersign_bracketleft.liga + bracketright_numbersign.liga + numbersign_parenleft.liga + numbersign_question.liga + numbersign_underscore.liga + numbersign_underscore_parenleft + backslash_slash.liga + bar_bar_bar.liga + colon_colon_equal.liga + exclam_exclam_period.liga + period_question.liga + slash_backslash.liga + uniE0A0 + uniE0A1 + uniE0A2 + uniE0B0 + uniE0B1 + uniE0B2 + uniE0B3 + uni2610 + uni2611 + uni2612 + uni2713 public.postscriptNames diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/features.fea b/sources/instances/postscript/IntelOneMono-Light.ufo/features.fea index a1caa755..a4caf8e4 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/features.fea +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/features.fea @@ -1,368 +1,6 @@ -# ---------------------------- -# INTEL ONE MONO OPENTYPE CODE -# ---------------------------- -# ---------------- -# Language Systems -# ---------------- +include(../../features/shared.fea); -languagesystem DFLT dflt; -languagesystem latn dflt; -languagesystem latn TRK; -languagesystem latn AZE; -languagesystem latn CRT; -languagesystem latn CAT; +include(../../features/mark/IntelOneMono-Light mark.fea); - -# ------- -# Classes -# ------- - -# Base Letters -@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; -@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; - -# Figures -@fig = [zero one two three four five six seven eight nine]; -@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; -@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; -@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; -@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; - -# Marks Above -@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; -@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; - -# Marks Below -@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; - - -# --------------- -# Localized Forms -# --------------- - -feature locl { - script latn; - language TRK; - lookup iTurkish { - sub i by idotaccent; - } iTurkish; - language AZE; - lookup iTurkish; - language CRT; - lookup iTurkish; - language CAT; - sub l periodcentered' l by middotcat; - sub L periodcentered' L by middotcat.cap; - # try fusing them - sub L middotcat.cap by L.dot; - sub L middotcat by L.dot; - sub l middotcat by l.dot; -} locl; - - -# --------------------------------- -# Glyph Composition / Decomposition -# --------------------------------- - -feature ccmp { - - # Decompose unicode lowercase characters whose uppercase counterparts have no unicode. - lookup Decomp { - sub hlinebelow by h macronlowmod; - sub jcaron by j caron; - } Decomp; - - # Replace double above accents by combined drawings. - lookup DblMarks { - sub dieresiscmb acutecmb by dieresisacute; - sub dieresiscmb gravecmb by dieresisgrave; - sub dieresiscmb caroncmb by dieresiscaron; - sub dieresiscmb macroncmb by dieresismacron; - sub brevecmb acutecmb by breveacute; - sub brevecmb gravecmb by brevegrave; - sub brevecmb hookcmb by brevehook; - sub brevecmb tildecmb by brevetilde; - sub circumflexcmb acutecmb by circumflexacute; - sub circumflexcmb gravecmb by circumflexgrave; - sub circumflexcmb hookcmb by circumflexhook; - sub circumflexcmb tildecmb by circumflextilde; - # capital forms - sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; - sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; - sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; - sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; - sub brevecmb.cap acutecmb.cap by breveacute.cap; - sub brevecmb.cap gravecmb.cap by brevegrave.cap; - sub brevecmb.cap hookcmb.cap by brevehook.cap; - sub brevecmb.cap tildecmb.cap by brevetilde.cap; - sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; - sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; - sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; - sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; - } DblMarks; - - # Replace combining marks that follow a uppercase letter by their uppercase form - lookup CapitalMarks { - sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; - sub [@ltrUC] [@lcMarks]' by [@ucMarks]; - } CapitalMarks; - - # Replace letters with dotless counterparts when followed by a combining mark - lookup Dotless { - sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; - sub [i j]' [@lcMarks] by [dotlessi dotlessj]; - } Dotless; - - # Replace e ogonek with pre-drawn eogonek - lookup eogonek { - sub e ogonekcmb by eogonek; - } eogonek; - -} ccmp; - - -# ---------- -# Numerators -# ---------- - -feature numr { - sub @fig by @figNum; -} numr; - -# ------------ -# Denominators -# ------------ - -feature dnom { - sub @fig by @figDen; -} dnom; - -# ----------- -# Superscript -# ----------- - -feature sups { - sub @fig by @figSup; -} sups; - -# --------------------- -# Subscript & Inferiors -# --------------------- - -feature subs { - sub @fig by @figInf; -} subs; - -feature sinf { - sub @fig by @figInf; -} sinf; - - -# --------------------- -# Contextual Alternates -# --------------------- - -feature calt { - # shifts colon to align with math symbols when used together - - sub colon' [plus equal greater less hyphen] by colon.fig; - sub [plus equal less greater hyphen] colon' by colon.fig; - - sub colon' [colon colon.fig] by colon.fig; - sub colon.fig colon' by colon.fig; - -} calt; - - -# -------------- -# Stylistic Sets -# -------------- - -feature ss11 { - featureNames { - name "Raised Colon (Figures Only)"; # Windows English - name 1 0 0 "Raised Colon (Figures Only)"; # Mac English - }; - lookup FigureColonContextual { - sub @fig colon' @fig by colon.fig; - } FigureColonContextual; -} ss11; - -feature ss12 { - featureNames { - name "Raised Colon (Global)"; # Windows English - name 1 0 0 "Raised Colon (Global)"; # Mac English - }; - lookup FigureColon { - sub colon by colon.fig; - } FigureColon; -} ss12; - - -# -------------------- -# Stylistic Alternates -# -------------------- - -feature salt { - lookup FigureColon; # SS12 -} salt; - - -# --------------------------------------------------------------------- -# MARK | Generated: November 23, 2022 - 02:37:56 PM by 'markFeature.py' -# --------------------------------------------------------------------- - -markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; -markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; -markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; -markClass [cedillacmb] @mark_belowcedilla; -markClass [ogonekcmb] @mark_belowogonek; - -feature mark { - - lookup aboveLC{ - pos base [a] mark @mark_aboveLC; - pos base [c] mark @mark_aboveLC; - pos base [dotlessi] mark @mark_aboveLC; - pos base [dotlessj] mark @mark_aboveLC; - pos base [e] mark @mark_aboveLC; - pos base [eogonek] mark @mark_aboveLC; - pos base [g] mark @mark_aboveLC; - pos base [m] mark @mark_aboveLC; - pos base [n] mark @mark_aboveLC; - pos base [o] mark @mark_aboveLC; - pos base [p] mark @mark_aboveLC; - pos base [s] mark @mark_aboveLC; - pos base [u] mark @mark_aboveLC; - pos base [z] mark @mark_aboveLC; - } aboveLC; - - lookup aboveUC{ - pos base [A] mark @mark_aboveUC; - pos base [C] mark @mark_aboveUC; - pos base [E] mark @mark_aboveUC; - pos base [Eogonek] mark @mark_aboveUC; - pos base [G] mark @mark_aboveUC; - pos base [I] mark @mark_aboveUC; - pos base [J] mark @mark_aboveUC; - pos base [M] mark @mark_aboveUC; - pos base [N] mark @mark_aboveUC; - pos base [O] mark @mark_aboveUC; - pos base [P] mark @mark_aboveUC; - pos base [S] mark @mark_aboveUC; - pos base [U] mark @mark_aboveUC; - pos base [Z] mark @mark_aboveUC; - } aboveUC; - - lookup below{ - pos base [C] mark @mark_below; - pos base [Dcroat] mark @mark_below; - pos base [E] mark @mark_below; - pos base [H] mark @mark_below; - pos base [I] mark @mark_below; - pos base [O] mark @mark_below; - pos base [S] mark @mark_below; - pos base [U] mark @mark_below; - pos base [X] mark @mark_below; - pos base [Z] mark @mark_below; - pos base [c] mark @mark_below; - pos base [dcroat] mark @mark_below; - pos base [dotlessi] mark @mark_below; - pos base [e] mark @mark_below; - pos base [h] mark @mark_below; - pos base [o] mark @mark_below; - pos base [s] mark @mark_below; - pos base [u] mark @mark_below; - pos base [x] mark @mark_below; - pos base [z] mark @mark_below; - } below; - - lookup belowcedilla{ - pos base [Z] mark @mark_belowcedilla; - pos base [z] mark @mark_belowcedilla; - } belowcedilla; - - lookup belowogonek{ - pos base [A] mark @mark_belowogonek; - pos base [E] mark @mark_belowogonek; - pos base [I] mark @mark_belowogonek; - pos base [O] mark @mark_belowogonek; - pos base [U] mark @mark_belowogonek; - pos base [a] mark @mark_belowogonek; - pos base [dotlessi] mark @mark_belowogonek; - pos base [e] mark @mark_belowogonek; - pos base [o] mark @mark_belowogonek; - pos base [u] mark @mark_belowogonek; - } belowogonek; - -} mark; - -@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; -@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; - -table GDEF { - GlyphClassDef @BASES,,@MARKS,; -} GDEF; - - -# -------------- -# All Alternates -# -------------- - -feature aalt { - sub germandbls from [germandbls uni1E9E]; - sub uni1E9E from [uni1E9E germandbls]; - sub colon from [colon colon.fig]; - sub colon.fig from [colon.fig colon]; - sub eight from [eight eight.den eight.sup eight.num eight.inf]; - sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; - sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; - sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; - sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; - sub five from [five five.inf five.num five.den five.sup]; - sub five.sup from [five.sup five five.inf five.num five.den]; - sub five.den from [five.den five.sup five five.inf five.num]; - sub five.num from [five.num five.den five.sup five five.inf]; - sub five.inf from [five.inf five.num five.den five.sup five]; - sub four from [four four.sup four.num four.den four.inf]; - sub four.inf from [four.inf four four.sup four.num four.den]; - sub four.den from [four.den four.inf four four.sup four.num]; - sub four.num from [four.num four.den four.inf four four.sup]; - sub four.sup from [four.sup four.num four.den four.inf four]; - sub nine from [nine nine.den nine.inf nine.num nine.sup]; - sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; - sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; - sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; - sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; - sub one from [one one.den one.num one.inf one.sup]; - sub one.sup from [one.sup one one.den one.num one.inf]; - sub one.inf from [one.inf one.sup one one.den one.num]; - sub one.num from [one.num one.inf one.sup one one.den]; - sub one.den from [one.den one.num one.inf one.sup one]; - sub seven from [seven seven.inf seven.num seven.sup seven.den]; - sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; - sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; - sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; - sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; - sub six from [six six.num six.sup six.den six.inf]; - sub six.inf from [six.inf six six.num six.sup six.den]; - sub six.den from [six.den six.inf six six.num six.sup]; - sub six.sup from [six.sup six.den six.inf six six.num]; - sub six.num from [six.num six.sup six.den six.inf six]; - sub three from [three three.inf three.den three.num three.sup]; - sub three.sup from [three.sup three three.inf three.den three.num]; - sub three.num from [three.num three.sup three three.inf three.den]; - sub three.den from [three.den three.num three.sup three three.inf]; - sub three.inf from [three.inf three.den three.num three.sup three]; - sub two from [two two.inf two.sup two.num two.den]; - sub two.den from [two.den two two.inf two.sup two.num]; - sub two.num from [two.num two.den two two.inf two.sup]; - sub two.sup from [two.sup two.num two.den two two.inf]; - sub two.inf from [two.inf two.sup two.num two.den two]; - sub zero from [zero zero.sup zero.num zero.den zero.inf]; - sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; - sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; - sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; - sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; -} aalt; +include(../../features/aalt.fea); diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/fontinfo.plist b/sources/instances/postscript/IntelOneMono-Light.ufo/fontinfo.plist index 0abd564e..4e72688a 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/fontinfo.plist +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/fontinfo.plist @@ -7,7 +7,7 @@ capHeight 655 copyright - Copyright 2023 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) descender -260 familyName @@ -57,7 +57,7 @@ platformID 1 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -69,7 +69,7 @@ platformID 3 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -402,7 +402,7 @@ versionMajor 1 versionMinor - 3 + 4 xHeight 460 diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/L_.dot.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/L_.dot.glif index 6a1d4b01..d6032389 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/L_.dot.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/L_.dot.glif @@ -8,7 +8,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_breve.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_breve.glif index 984047ed..7e12cf5e 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_breve.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_breve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_caron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_caron.glif index 6e35b005..5af071a0 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflex.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflex.glif index da3c35d9..6a3eb8b4 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflexacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflexacute.glif index 34050763..78811a4c 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflexdotbelow.glif index f314ba9b..5ce7667f 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflexgrave.glif index e42d5382..10c2e807 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflexhookabove.glif index 94ddcf06..16136d20 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflextilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflextilde.glif index 48383a2d..68aeb395 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_circumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_dieresis.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_dieresis.glif index 38bdd410..0a9e8725 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_dotaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_dotaccent.glif index ae866bae..14c297f8 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_dotbelow.glif index c30b7c9a..0ceb1922 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_hookabove.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_hookabove.glif index e3bb01c1..0da85244 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_horn.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_horn.glif index a82ec3c1..4ee691f9 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_horn.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_horn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_hornacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_hornacute.glif index 8e934731..a6e66066 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_hornacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_hornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_horndotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_horndotbelow.glif index 98617cd0..10cd597d 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_horndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_horndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_horngrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_horngrave.glif index cf6a7b63..23ee1fef 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_horngrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_horngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_hornhookabove.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_hornhookabove.glif index ecce5a93..c9497cd7 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_hornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_hornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_horntilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_horntilde.glif index 5d3c9673..79c11284 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_horntilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_horntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_macron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_macron.glif index 59d23061..ebc99b21 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_macron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_tilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_tilde.glif index c0c3d7a0..91a94f52 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/O_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_acute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_acute.glif index 07d1d42b..f2d952e5 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_caron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_caron.glif index c921e9e8..d2dc80bc 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_commaaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_commaaccent.glif index c9f7325c..0f4055ef 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_dotaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_dotaccent.glif index e050ef41..439ef413 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_dotbelow.glif index 25c076ae..9b3c5943 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_linebelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_linebelow.glif index 9b5c53b3..c3e78a70 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_macrondotbelow.glif index b928ec1c..25cc748c 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_macrondotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/R_macrondotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/S_acute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/S_acute.glif index 7e9a46f6..84939c1d 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/S_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/S_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/S_caron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/S_caron.glif index 1b02b174..16afee9b 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/S_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/S_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/S_circumflex.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/S_circumflex.glif index d9a9c19b..7dad0fd1 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/S_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/S_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/S_commaaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/S_commaaccent.glif index b886cbb1..f0017542 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/S_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/S_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/S_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/S_dotbelow.glif index 33bbb5a7..3094b469 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/S_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/S_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/T_caron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/T_caron.glif index 8601d63e..23d20008 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/T_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/T_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/T_circumflexbelow.glif index 8408b0fc..04e62723 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/T_circumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/T_circumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/T_commaaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/T_commaaccent.glif index f6a0d2b9..8efd5833 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/T_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/T_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/T_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/T_dotbelow.glif index eb1d86db..3d102e5d 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/T_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/T_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/T_linebelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/T_linebelow.glif index ec706e83..7c07de34 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/T_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/T_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_acute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_acute.glif index 699b86c5..b0b6e168 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_breve.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_breve.glif index 84b2f57e..9eba3d7f 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_breve.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_breve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_caron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_caron.glif index 5262e314..be0f3c37 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_circumflex.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_circumflex.glif index ca6250bc..56808f64 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dieresis.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dieresis.glif index 90fdbd07..c558bf10 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dieresisacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dieresisacute.glif index f02c4dd4..e5cbbe3c 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dieresisacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dieresisacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dieresiscaron.glif index dd6e65f6..dc2ff1ac 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dieresiscaron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dieresiscaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dieresisgrave.glif index 8923d6b3..b227a449 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dieresisgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dieresisgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dieresismacron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dieresismacron.glif index 402a3184..3d8c49b3 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dieresismacron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dieresismacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dotbelow.glif index 52acf8a9..d2f0ef86 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_grave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_grave.glif index 94988506..debff763 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_grave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_hookabove.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_hookabove.glif index 3ad554df..fccb10eb 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_horn.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_horn.glif index 83498c0d..e7d87620 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_horn.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_horn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_hornacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_hornacute.glif index 2790a00b..7e948009 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_hornacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_hornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_horndotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_horndotbelow.glif index 01d51edb..eb199a1c 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_horndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_horndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_horngrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_horngrave.glif index ba862ad5..e2fae54b 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_horngrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_horngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_hornhookabove.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_hornhookabove.glif index 9f80ac8b..fd1cf394 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_hornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_hornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_horntilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_horntilde.glif index b8cfe8f7..a348994a 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_horntilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_horntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_hungarumlaut.glif index 8e6b258f..f97071b4 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_hungarumlaut.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_hungarumlaut.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_macron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_macron.glif index 44534a2b..f40fd627 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_macron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_ring.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_ring.glif index 46254435..f5aa731d 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_ring.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_ring.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_tilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_tilde.glif index 756b63b8..7a348d5c 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/U_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/V_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/V_dotbelow.glif index 385a12d8..9d585952 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/V_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/V_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/W_acute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/W_acute.glif index 3844aaff..e279689d 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/W_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/W_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/W_circumflex.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/W_circumflex.glif index ccd6c067..0593fed6 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/W_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/W_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/W_dieresis.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/W_dieresis.glif index 3c58443f..a513fa2d 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/W_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/W_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/W_grave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/W_grave.glif index aa72974e..b7532bf3 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/W_grave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/W_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/X_dieresis.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/X_dieresis.glif index 7cd8fc67..812f5e70 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/X_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/X_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_acute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_acute.glif index 46046b4e..846e3aef 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_circumflex.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_circumflex.glif index ea421bca..5c4451fe 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_dieresis.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_dieresis.glif index b208822f..051bf59a 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_dotaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_dotaccent.glif index 38dabc2e..704ef311 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_dotbelow.glif index b401245b..1c53ebab 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_grave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_grave.glif index 574d80b5..528fea8b 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_grave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_hookabove.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_hookabove.glif index 14449524..6923487f 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_macron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_macron.glif index 1975f258..62a98467 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_macron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_tilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_tilde.glif index 57f880c8..b43dfe48 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Y_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_acute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_acute.glif index e2c56fa9..2b3a535d 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_caron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_caron.glif index 547d71a4..12b6cf12 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_circumflex.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_circumflex.glif index 7a5daaf3..4ac0cd6f 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_dotaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_dotaccent.glif index d3ffce2e..bd30fee0 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_dotbelow.glif index 43f1a562..debeb16d 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_linebelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_linebelow.glif index 81cdc604..4de7aa11 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/Z_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/aacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/aacute.glif index 3ac2ad5f..6ec2bb3e 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/aacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/aacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abreve.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abreve.glif index 79cb2c5e..e310ab41 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abreve.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abreveacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abreveacute.glif index 1c60b01e..3702a84f 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abreveacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abreveacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abrevedotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abrevedotbelow.glif index 77f7e412..c068ee13 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abrevedotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abrevedotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abrevegrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abrevegrave.glif index fe053763..f331d058 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abrevegrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abrevegrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abrevehookabove.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abrevehookabove.glif index 7edf69fd..f48ec024 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abrevehookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abrevehookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abrevetilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abrevetilde.glif index ca13b045..ef1d0891 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abrevetilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/abrevetilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acaron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acaron.glif index 6307e34f..cc1af59f 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acaron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflex.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflex.glif index 8f900078..11c405fe 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflexacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflexacute.glif index 2849acbc..79a43bad 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflexdotbelow.glif index f1fab7cc..3c43ea5c 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflexgrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflexgrave.glif index ad039ed1..7d93503f 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflexhookabove.glif index 9c110b5a..7358f8c3 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflextilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflextilde.glif index 54981b0d..976e0c63 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/acircumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/adieresis.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/adieresis.glif index de180220..58374846 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/adieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/adieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/adotaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/adotaccent.glif index 585cb8da..0ece23ac 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/adotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/adotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/adotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/adotbelow.glif index a42e09b3..7a69aeb8 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/adotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/adotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/agrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/agrave.glif index 1828aedf..a6568770 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/agrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/agrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ahookabove.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ahookabove.glif index 604ebd35..263e8963 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ahookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ahookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/amacron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/amacron.glif index be9def27..0bf2f142 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/amacron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/amacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ampersand_ampersand.liga.glif new file mode 100644 index 00000000..544ff7f5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ampersand_ampersand.liga.glif @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/aring.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/aring.glif index 926c4c60..144c7ed9 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/aring.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/aring.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asciicircum_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asciicircum_equal.liga.glif new file mode 100644 index 00000000..8dd25f55 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asciicircum_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..ae92e737 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asciitilde_asciitilde.liga.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asciitilde_asciitilde_greater.glif new file mode 100644 index 00000000..a6abe14f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asciitilde_asciitilde_greater.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asciitilde_at.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asciitilde_at.liga.glif new file mode 100644 index 00000000..d302619d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asciitilde_at.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asciitilde_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asciitilde_greater.liga.glif new file mode 100644 index 00000000..61782bb4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asciitilde_greater.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asciitilde_hyphen.liga.glif new file mode 100644 index 00000000..e6a77254 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asciitilde_hyphen.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asterisk_asterisk.liga.glif new file mode 100644 index 00000000..fa994cdc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asterisk_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif new file mode 100644 index 00000000..b73033c9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asterisk_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asterisk_greater.liga.glif new file mode 100644 index 00000000..4161bf75 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asterisk_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asterisk_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asterisk_slash.liga.glif new file mode 100644 index 00000000..82b419d8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/asterisk_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/atilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/atilde.glif index 473f1b20..2f6ec511 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/atilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/atilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/backslash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/backslash_slash.liga.glif new file mode 100644 index 00000000..ca49ed8d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/backslash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar.liga.glif new file mode 100644 index 00000000..6e09a289 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_bar.liga.glif new file mode 100644 index 00000000..dc1b5564 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_bar.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_bar_greater.liga.glif new file mode 100644 index 00000000..bf4c1cfe --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_bar_greater.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_equal.liga.glif new file mode 100644 index 00000000..41e160ef --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_equal.start.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_equal.start.glif new file mode 100644 index 00000000..b07485d7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_greater.liga.glif new file mode 100644 index 00000000..5f5d3436 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_greater.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_hyphen.liga.glif new file mode 100644 index 00000000..ed24ca93 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_hyphen.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_hyphen.start.glif new file mode 100644 index 00000000..51029b7c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bar_hyphen.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_braceright.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_braceright.liga.glif new file mode 100644 index 00000000..8db587b3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_braceright.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bracketright.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bracketright.liga.glif new file mode 100644 index 00000000..e58ff702 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_bracketright.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_equal.liga.glif new file mode 100644 index 00000000..eeb764ea --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_equal.start.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_equal.start.glif new file mode 100644 index 00000000..8a290dfc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_greater.liga.glif new file mode 100644 index 00000000..265e75e9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_hyphen.liga.glif new file mode 100644 index 00000000..dbc445cd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_hyphen.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_hyphen.start.glif new file mode 100644 index 00000000..dbe83242 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bar_hyphen.start.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/blinebelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/blinebelow.glif index 87e95885..bfcd2eef 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/blinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/blinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/braceleft_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/braceleft_bar.liga.glif new file mode 100644 index 00000000..5af8a101 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/braceleft_bar.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bracketleft_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bracketleft_bar.liga.glif new file mode 100644 index 00000000..353232a2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bracketleft_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bracketright_numbersign.liga.glif new file mode 100644 index 00000000..6d05a40b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/bracketright_numbersign.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/breveacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/breveacute.glif index 957b65db..8bb99aac 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/breveacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/breveacute.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/brevegrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/brevegrave.glif index 53163c7d..8934ba4e 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/brevegrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/brevegrave.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/brevehook.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/brevehook.glif index c8ab222f..f371a62c 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/brevehook.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/brevehook.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/brevetilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/brevetilde.glif index 45ce84b9..4c6139d0 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/brevetilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/brevetilde.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/cacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/cacute.glif index 00c7b015..1358ca2c 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/cacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/cacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ccaron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ccaron.glif index 50fa807e..f44f206f 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ccaron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ccaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ccircumflex.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ccircumflex.glif index 12776ced..c2aee288 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ccircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ccircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/cdotaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/cdotaccent.glif index 902e8d9d..509a270b 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/cdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/cdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/circumflexacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/circumflexacute.glif index 72de68e4..522cfb8c 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/circumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/circumflexacute.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/circumflexgrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/circumflexgrave.glif index 908268a9..cf06fa8e 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/circumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/circumflexgrave.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/circumflexhook.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/circumflexhook.glif index 0fca9f4d..0ac532ea 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/circumflexhook.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/circumflexhook.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/circumflextilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/circumflextilde.glif index 72f88c46..afddb58c 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/circumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/circumflextilde.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/colon_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/colon_colon.liga.glif new file mode 100644 index 00000000..f92822aa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/colon_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/colon_colon_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/colon_colon_colon.liga.glif new file mode 100644 index 00000000..b91d9647 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/colon_colon_colon.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/colon_colon_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/colon_colon_equal.liga.glif new file mode 100644 index 00000000..ef886a33 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/colon_colon_equal.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/colon_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/colon_equal.liga.glif new file mode 100644 index 00000000..29983321 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/colon_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/colon_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/colon_greater.liga.glif new file mode 100644 index 00000000..414a50f6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/colon_greater.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/colon_less.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/colon_less.liga.glif new file mode 100644 index 00000000..86ba83e1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/colon_less.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/commaturnedabovecmb.glif index 94afe2dd..ea81c619 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/commaturnedabovecmb.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/commaturnedabovecmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/contents.plist b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/contents.plist index 9b3fa25c..10a2ded8 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/contents.plist +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/contents.plist @@ -498,6 +498,8 @@ amacron.glif ampersand ampersand.glif + ampersand_ampersand.liga + ampersand_ampersand.liga.glif aogonek aogonek.glif apostrophemod @@ -508,10 +510,30 @@ aring.glif asciicircum asciicircum.glif + asciicircum_equal.liga + asciicircum_equal.liga.glif asciitilde asciitilde.glif + asciitilde_asciitilde.liga + asciitilde_asciitilde.liga.glif + asciitilde_asciitilde_greater + asciitilde_asciitilde_greater.glif + asciitilde_at.liga + asciitilde_at.liga.glif + asciitilde_greater.liga + asciitilde_greater.liga.glif + asciitilde_hyphen.liga + asciitilde_hyphen.liga.glif asterisk asterisk.glif + asterisk_asterisk.liga + asterisk_asterisk.liga.glif + asterisk_asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga.glif + asterisk_greater.liga + asterisk_greater.liga.glif + asterisk_slash.liga + asterisk_slash.liga.glif at at.glif atilde @@ -520,20 +542,58 @@ b.glif backslash backslash.glif + backslash_slash.liga + backslash_slash.liga.glif bahtthai bahtthai.glif bar bar.glif + bar_bar.liga + bar_bar.liga.glif + bar_bar_bar.liga + bar_bar_bar.liga.glif + bar_bar_bar_greater.liga + bar_bar_bar_greater.liga.glif + bar_bar_equal.liga + bar_bar_equal.liga.glif + bar_bar_equal.start + bar_bar_equal.start.glif + bar_bar_greater.liga + bar_bar_greater.liga.glif + bar_bar_hyphen.liga + bar_bar_hyphen.liga.glif + bar_bar_hyphen.start + bar_bar_hyphen.start.glif + bar_braceright.liga + bar_braceright.liga.glif + bar_bracketright.liga + bar_bracketright.liga.glif + bar_equal.liga + bar_equal.liga.glif + bar_equal.start + bar_equal.start.glif + bar_greater.liga + bar_greater.liga.glif + bar_hyphen.liga + bar_hyphen.liga.glif + bar_hyphen.start + bar_hyphen.start.glif blinebelow blinebelow.glif braceleft braceleft.glif + braceleft_bar.liga + braceleft_bar.liga.glif braceright braceright.glif bracketleft bracketleft.glif + bracketleft_bar.liga + bracketleft_bar.liga.glif bracketright bracketright.glif + bracketright_numbersign.liga + bracketright_numbersign.liga.glif breve breve.glif breveacute @@ -612,6 +672,18 @@ colon.glif colon.fig colon.fig.glif + colon_colon.liga + colon_colon.liga.glif + colon_colon_colon.liga + colon_colon_colon.liga.glif + colon_colon_equal.liga + colon_colon_equal.liga.glif + colon_equal.liga + colon_equal.liga.glif + colon_greater.liga + colon_greater.liga.glif + colon_less.liga + colon_less.liga.glif comma comma.glif commaaboverightcmb @@ -628,8 +700,32 @@ dagger.glif daggerdbl daggerdbl.glif + darkshade + darkshade.glif + dbldnhorzbxd + dbldnhorzbxd.glif + dbldnleftbxd + dbldnleftbxd.glif + dbldnrightbxd + dbldnrightbxd.glif + dblhorzbxd + dblhorzbxd.glif dblprimemod dblprimemod.glif + dbluphorzbxd + dbluphorzbxd.glif + dblupleftbxd + dblupleftbxd.glif + dbluprightbxd + dbluprightbxd.glif + dblvertbxd + dblvertbxd.glif + dblverthorzbxd + dblverthorzbxd.glif + dblvertleftbxd + dblvertleftbxd.glif + dblvertrightbxd + dblvertrightbxd.glif dcaron dcaron.glif dcircumflexbelow @@ -668,8 +764,64 @@ divide.glif dlinebelow dlinebelow.glif + dndblhorzsngbxd + dndblhorzsngbxd.glif + dndblleftsngbxd + dndblleftsngbxd.glif + dndblrightsngbxd + dndblrightsngbxd.glif + dneighthblock + dneighthblock.glif + dnfiveeighthsblock + dnfiveeighthsblock.glif + dnhalfblock + dnhalfblock.glif + dnheavyhorzlightbxd + dnheavyhorzlightbxd.glif + dnheavyleftlightbxd + dnheavyleftlightbxd.glif + dnheavyleftuplightbxd + dnheavyleftuplightbxd.glif + dnheavyrightlightbxd + dnheavyrightlightbxd.glif + dnheavyrightuplightbxd + dnheavyrightuplightbxd.glif + dnheavyuphorzlightbxd + dnheavyuphorzlightbxd.glif + dnleftquadrant + dnleftquadrant.glif + dnlighthorzheavybxd + dnlighthorzheavybxd.glif + dnlightleftheavybxd + dnlightleftheavybxd.glif + dnlightleftupheavybxd + dnlightleftupheavybxd.glif + dnlightrightheavybxd + dnlightrightheavybxd.glif + dnlightrightupheavybxd + dnlightrightupheavybxd.glif + dnlightuphorzheavybxd + dnlightuphorzheavybxd.glif + dnquarterblock + dnquarterblock.glif + dnrightquadrant + dnrightquadrant.glif + dnseveneighthsblock + dnseveneighthsblock.glif + dnsnghorzdblbxd + dnsnghorzdblbxd.glif + dnsngleftdblbxd + dnsngleftdblbxd.glif + dnsngrightdblbxd + dnsngrightdblbxd.glif + dnthreeeighthsblock + dnthreeeighthsblock.glif + dnthreequartersblock + dnthreequartersblock.glif dollar dollar.glif + dollar_greater.liga + dollar_greater.liga.glif dong dong.glif dotaccent @@ -738,12 +890,86 @@ eogonek.glif equal equal.glif + equal.end + equal.end.glif + equal.middle + equal.middle.glif + equal.start + equal.start.glif + equal_asciitilde.liga + equal_asciitilde.liga.glif + equal_bar.end + equal_bar.end.glif + equal_bar.liga + equal_bar.liga.glif + equal_bar_bar.end + equal_bar_bar.end.glif + equal_bar_bar.liga + equal_bar_bar.liga.glif + equal_bar_bar_equal.middle + equal_bar_bar_equal.middle.glif + equal_bar_equal.middle + equal_bar_equal.middle.glif + equal_colon_equal.middle + equal_colon_equal.middle.glif + equal_equal.liga + equal_equal.liga.glif + equal_equal_equal.liga + equal_equal_equal.liga.glif + equal_exclam_equal.middle + equal_exclam_equal.middle.glif + equal_greater.end + equal_greater.end.glif + equal_greater.liga + equal_greater.liga.glif + equal_greater_equal.middle + equal_greater_equal.middle.glif + equal_greater_greater.end + equal_greater_greater.end.glif + equal_greater_greater.liga + equal_greater_greater.liga.glif + equal_greater_greater_equal.m + equal_greater_greater_equal.m.glif + equal_less.end + equal_less.end.glif + equal_less.liga + equal_less.liga.glif + equal_less_equal.middle + equal_less_equal.middle.glif + equal_less_less.end + equal_less_less.end.glif + equal_less_less.liga + equal_less_less.liga.glif + equal_less_less_equal.middle + equal_less_less_equal.middle.glif + equal_slash.end + equal_slash.end.glif + equal_slash.liga + equal_slash.liga.glif + equal_slash_equal.middle + equal_slash_equal.middle.glif + equal_slash_slash.end + equal_slash_slash.end.glif + equal_slash_slash.liga + equal_slash_slash.liga.glif + equal_slash_slash_equal.middle + equal_slash_slash_equal.middle.glif eth eth.glif etilde etilde.glif exclam exclam.glif + exclam_asciitilde.liga + exclam_asciitilde.liga.glif + exclam_equal.liga + exclam_equal.liga.glif + exclam_equal_equal.liga + exclam_equal_equal.liga.glif + exclam_exclam.liga + exclam_exclam.liga.glif + exclam_exclam_period.liga + exclam_exclam_period.liga.glif exclamdown exclamdown.glif f @@ -778,6 +1004,8 @@ fracbar.glif fraction fraction.glif + fullblock + fullblock.glif g g.glif gbreve @@ -802,6 +1030,34 @@ gravecmb.cap.glif greater greater.glif + greater_colon.liga + greater_colon.liga.glif + greater_equal + greater_equal.glif + greater_equal.liga + greater_equal.liga.glif + greater_equal.start + greater_equal.start.glif + greater_equal_greater.liga + greater_equal_greater.liga.glif + greater_greater.liga + greater_greater.liga.glif + greater_greater_equal.liga + greater_greater_equal.liga.glif + greater_greater_equal.start + greater_greater_equal.start.glif + greater_greater_greater.liga + greater_greater_greater.liga.glif + greater_greater_hyphen.liga + greater_greater_hyphen.liga.glif + greater_greater_hyphen.start + greater_greater_hyphen.start.glif + greater_hyphen.liga + greater_hyphen.liga.glif + greater_hyphen.start + greater_hyphen.start.glif + greater_hyphen_greater.liga + greater_hyphen_greater.liga.glif greaterequal greaterequal.glif guillemetleft @@ -824,6 +1080,52 @@ hcircumflex.glif hdotbelow hdotbelow.glif + heavydbldashhorzbxd + heavydbldashhorzbxd.glif + heavydbldashvertbxd + heavydbldashvertbxd.glif + heavydnbxd + heavydnbxd.glif + heavydnhorzbxd + heavydnhorzbxd.glif + heavydnleftbxd + heavydnleftbxd.glif + heavydnrightbxd + heavydnrightbxd.glif + heavyhorzbxd + heavyhorzbxd.glif + heavyleftbxd + heavyleftbxd.glif + heavyleftlightrightbxd + heavyleftlightrightbxd.glif + heavyquaddashhorzbxd + heavyquaddashhorzbxd.glif + heavyquaddashvertbxd + heavyquaddashvertbxd.glif + heavyrightbxd + heavyrightbxd.glif + heavytrpldashhorzbxd + heavytrpldashhorzbxd.glif + heavytrpldashvertbxd + heavytrpldashvertbxd.glif + heavyupbxd + heavyupbxd.glif + heavyuphorzbxd + heavyuphorzbxd.glif + heavyupleftbxd + heavyupleftbxd.glif + heavyuplightdnbxd + heavyuplightdnbxd.glif + heavyuprightbxd + heavyuprightbxd.glif + heavyvertbxd + heavyvertbxd.glif + heavyverthorzbxd + heavyverthorzbxd.glif + heavyvertleftbxd + heavyvertleftbxd.glif + heavyvertrightbxd + heavyvertrightbxd.glif hlinebelow hlinebelow.glif hookcmb @@ -840,6 +1142,54 @@ hungarumlautcmb.cap.glif hyphen hyphen.glif + hyphen.end + hyphen.end.glif + hyphen.middle + hyphen.middle.glif + hyphen.start + hyphen.start.glif + hyphen_asciitilde.liga + hyphen_asciitilde.liga.glif + hyphen_bar.end + hyphen_bar.end.glif + hyphen_bar.liga + hyphen_bar.liga.glif + hyphen_bar_bar.end + hyphen_bar_bar.end.glif + hyphen_bar_bar.liga + hyphen_bar_bar.liga.glif + hyphen_bar_bar_hyphen.middle + hyphen_bar_bar_hyphen.middle.glif + hyphen_bar_hyphen.middle + hyphen_bar_hyphen.middle.glif + hyphen_greater.end + hyphen_greater.end.glif + hyphen_greater.liga + hyphen_greater.liga.glif + hyphen_greater_greater.end + hyphen_greater_greater.end.glif + hyphen_greater_greater.liga + hyphen_greater_greater.liga.glif + hyphen_greater_greater_hyphen.m + hyphen_greater_greater_hyphen.m.glif + hyphen_greater_hyphen.middle + hyphen_greater_hyphen.middle.glif + hyphen_hyphen.liga + hyphen_hyphen.liga.glif + hyphen_hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga.glif + hyphen_less.end + hyphen_less.end.glif + hyphen_less.liga + hyphen_less.liga.glif + hyphen_less_hyphen.middle + hyphen_less_hyphen.middle.glif + hyphen_less_less.end + hyphen_less_less.end.glif + hyphen_less_less.liga + hyphen_less_less.liga.glif + hyphen_less_less_hyphen.middle + hyphen_less_less_hyphen.middle.glif i i.glif iacute @@ -894,10 +1244,170 @@ lcommaaccent.glif ldotbelow ldotbelow.glif + leftdnheavyrightuplightbxd + leftdnheavyrightuplightbxd.glif + lefteighthblock + lefteighthblock.glif + leftfiveeighthsblock + leftfiveeighthsblock.glif + lefthalfblock + lefthalfblock.glif + leftheavyrightdnlightbxd + leftheavyrightdnlightbxd.glif + leftheavyrightuplightbxd + leftheavyrightuplightbxd.glif + leftheavyrightvertlightbxd + leftheavyrightvertlightbxd.glif + leftlightrightdnheavybxd + leftlightrightdnheavybxd.glif + leftlightrightupheavybxd + leftlightrightupheavybxd.glif + leftlightrightvertheavybxd + leftlightrightvertheavybxd.glif + leftquarterblock + leftquarterblock.glif + leftseveneighthsblock + leftseveneighthsblock.glif + leftthreeeighthsblock + leftthreeeighthsblock.glif + leftthreequartersblock + leftthreequartersblock.glif + leftupheavyrightdnlightbxd + leftupheavyrightdnlightbxd.glif less less.glif + less_asciitilde.liga + less_asciitilde.liga.glif + less_asciitilde_asciitilde.liga + less_asciitilde_asciitilde.liga.glif + less_asciitilde_greater.liga + less_asciitilde_greater.liga.glif + less_asterisk.liga + less_asterisk.liga.glif + less_asterisk_greater.liga + less_asterisk_greater.liga.glif + less_bar.liga + less_bar.liga.glif + less_bar_bar.liga + less_bar_bar.liga.glif + less_bar_bar_bar.liga + less_bar_bar_bar.liga.glif + less_bar_greater.liga + less_bar_greater.liga.glif + less_colon.liga + less_colon.liga.glif + less_dollar.liga + less_dollar.liga.glif + less_dollar_greater.liga + less_dollar_greater.liga.glif + less_equal + less_equal.glif + less_equal.liga + less_equal.liga.glif + less_equal.start + less_equal.start.glif + less_equal_greater.liga + less_equal_greater.liga.glif + less_equal_less.liga + less_equal_less.liga.glif + less_exclam_hyphen_hyphen.liga + less_exclam_hyphen_hyphen.liga.glif + less_greater.liga + less_greater.liga.glif + less_hyphen.liga + less_hyphen.liga.glif + less_hyphen.start + less_hyphen.start.glif + less_hyphen_greater.liga + less_hyphen_greater.liga.glif + less_hyphen_less.liga + less_hyphen_less.liga.glif + less_less.liga + less_less.liga.glif + less_less_equal.liga + less_less_equal.liga.glif + less_less_equal.start + less_less_equal.start.glif + less_less_hyphen.liga + less_less_hyphen.liga.glif + less_less_hyphen.start + less_less_hyphen.start.glif + less_less_less.liga + less_less_less.liga.glif + less_plus.liga + less_plus.liga.glif + less_plus_greater.liga + less_plus_greater.liga.glif + less_slash.liga + less_slash.liga.glif + less_slash_greater.liga + less_slash_greater.liga.glif lessequal lessequal.glif + lightarcdnleftbxd + lightarcdnleftbxd.glif + lightarcdnrightbxd + lightarcdnrightbxd.glif + lightarcupleftbxd + lightarcupleftbxd.glif + lightarcuprightbxd + lightarcuprightbxd.glif + lightdbldashhorzbxd + lightdbldashhorzbxd.glif + lightdbldashvertbxd + lightdbldashvertbxd.glif + lightdiagcrossbxd + lightdiagcrossbxd.glif + lightdiagupleftdnrightbxd + lightdiagupleftdnrightbxd.glif + lightdiaguprightdnleftbxd + lightdiaguprightdnleftbxd.glif + lightdnbxd + lightdnbxd.glif + lightdnhorzbxd + lightdnhorzbxd.glif + lightdnleftbxd + lightdnleftbxd.glif + lightdnrightbxd + lightdnrightbxd.glif + lighthorzbxd + lighthorzbxd.glif + lightleftbxd + lightleftbxd.glif + lightleftheavyrightbxd + lightleftheavyrightbxd.glif + lightquaddashhorzbxd + lightquaddashhorzbxd.glif + lightquaddashvertbxd + lightquaddashvertbxd.glif + lightrightbxd + lightrightbxd.glif + lightshade + lightshade.glif + lighttrpldashhorzbxd + lighttrpldashhorzbxd.glif + lighttrpldashvertbxd + lighttrpldashvertbxd.glif + lightupbxd + lightupbxd.glif + lightupheavydnbxd + lightupheavydnbxd.glif + lightuphorzbxd + lightuphorzbxd.glif + lightupleftbxd + lightupleftbxd.glif + lightuprightbxd + lightuprightbxd.glif + lightvertbxd + lightvertbxd.glif + lightverthorzbxd + lightverthorzbxd.glif + lightvertleftbxd + lightvertleftbxd.glif + lightvertrightbxd + lightvertrightbxd.glif + ligspacer + ligspacer.glif llinebelow llinebelow.glif lmacrondotbelow @@ -922,6 +1432,8 @@ mdotaccent.glif mdotbelow mdotbelow.glif + mediumshade + mediumshade.glif middotcat middotcat.glif middotcat.cap @@ -968,6 +1480,30 @@ ntilde.glif numbersign numbersign.glif + numbersign.end + numbersign.end.glif + numbersign.middle + numbersign.middle.glif + numbersign.start + numbersign.start.glif + numbersign_braceleft.liga + numbersign_braceleft.liga.glif + numbersign_bracketleft.liga + numbersign_bracketleft.liga.glif + numbersign_colon.liga + numbersign_colon.liga.glif + numbersign_equal.liga + numbersign_equal.liga.glif + numbersign_exclam.liga + numbersign_exclam.liga.glif + numbersign_parenleft.liga + numbersign_parenleft.liga.glif + numbersign_question.liga + numbersign_question.liga.glif + numbersign_underscore.liga + numbersign_underscore.liga.glif + numbersign_underscore_parenleft + numbersign_underscore_parenleft.glif o o.glif oacute @@ -1062,14 +1598,36 @@ parenright.glif percent percent.glif + percent_percent.liga + percent_percent.liga.glif period period.glif + period_equal.liga + period_equal.liga.glif + period_hyphen.liga + period_hyphen.liga.glif + period_period.liga + period_period.liga.glif + period_period_equal.liga + period_period_equal.liga.glif + period_period_less.liga + period_period_less.liga.glif + period_period_period.liga + period_period_period.liga.glif + period_question.liga + period_question.liga.glif periodcentered periodcentered.glif peso peso.glif plus plus.glif + plus_greater.liga + plus_greater.liga.glif + plus_plus.liga + plus_plus.liga.glif + plus_plus_plus.liga + plus_plus_plus.liga.glif plusminus plusminus.glif primemod @@ -1080,6 +1638,14 @@ q.glif question question.glif + question_colon.liga + question_colon.liga.glif + question_equal.liga + question_equal.liga.glif + question_period.liga + question_period.liga.glif + question_question.liga + question_question.liga.glif questiondown questiondown.glif quotedbl @@ -1112,6 +1678,26 @@ rdotbelow.glif registered registered.glif + rightdnheavyleftuplightbxd + rightdnheavyleftuplightbxd.glif + righteighthblock + righteighthblock.glif + righthalfblock + righthalfblock.glif + rightheavyleftdnlightbxd + rightheavyleftdnlightbxd.glif + rightheavyleftuplightbxd + rightheavyleftuplightbxd.glif + rightheavyleftvertlightbxd + rightheavyleftvertlightbxd.glif + rightlightleftdnheavybxd + rightlightleftdnheavybxd.glif + rightlightleftupheavybxd + rightlightleftupheavybxd.glif + rightlightleftvertheavybxd + rightlightleftvertheavybxd.glif + rightupheavyleftdnlightbxd + rightupheavyleftdnlightbxd.glif ring ring.glif ringcmb @@ -1146,6 +1732,8 @@ section.glif semicolon semicolon.glif + semicolon_semicolon.liga + semicolon_semicolon.liga.glif servicemark servicemark.glif seven @@ -1172,6 +1760,24 @@ six.sup.glif slash slash.glif + slash_asterisk.liga + slash_asterisk.liga.glif + slash_backslash.liga + slash_backslash.liga.glif + slash_equal.liga + slash_equal.liga.glif + slash_equal.start + slash_equal.start.glif + slash_greater.liga + slash_greater.liga.glif + slash_slash.liga + slash_slash.liga.glif + slash_slash_equal.liga + slash_slash_equal.liga.glif + slash_slash_equal.start + slash_slash_equal.start.glif + slash_slash_slash.liga + slash_slash_slash.liga.glif space space.glif sterling @@ -1278,6 +1884,14 @@ umacron.glif underscore underscore.glif + underscore.end + underscore.end.glif + underscore.middle + underscore.middle.glif + underscore.start + underscore.start.glif + underscore_bar_underscore.m + underscore_bar_underscore.m.glif uni00A0 uni00A_0.glif uni0326 @@ -1292,10 +1906,88 @@ uni20B_A_.glif uni20BD uni20B_D_.glif + uni2610 + uni2610.glif + uni2611 + uni2611.glif + uni2612 + uni2612.glif + uni2713 + uni2713.glif uniA788 uniA_788.glif + uniE0A0 + uniE_0A_0.glif + uniE0A1 + uniE_0A_1.glif + uniE0A2 + uniE_0A_2.glif + uniE0B0 + uniE_0B_0.glif + uniE0B1 + uniE_0B_1.glif + uniE0B2 + uniE_0B_2.glif + uniE0B3 + uniE_0B_3.glif uogonek uogonek.glif + updblhorzsngbxd + updblhorzsngbxd.glif + updblleftsngbxd + updblleftsngbxd.glif + updblrightsngbxd + updblrightsngbxd.glif + upeighthblock + upeighthblock.glif + uphalfblock + uphalfblock.glif + upheavydnhorzlightbxd + upheavydnhorzlightbxd.glif + upheavyhorzlightbxd + upheavyhorzlightbxd.glif + upheavyleftdnlightbxd + upheavyleftdnlightbxd.glif + upheavyleftlightbxd + upheavyleftlightbxd.glif + upheavyrightdnlightbxd + upheavyrightdnlightbxd.glif + upheavyrightlightbxd + upheavyrightlightbxd.glif + upleftdnleftdnrightquadrant + upleftdnleftdnrightquadrant.glif + upleftdnrightquadrant + upleftdnrightquadrant.glif + upleftquadrant + upleftquadrant.glif + upleftuprightdnleftquadrant + upleftuprightdnleftquadrant.glif + upleftuprightdnrightquadrant + upleftuprightdnrightquadrant.glif + uplightdnhorzheavybxd + uplightdnhorzheavybxd.glif + uplighthorzheavybxd + uplighthorzheavybxd.glif + uplightleftdnheavybxd + uplightleftdnheavybxd.glif + uplightleftheavybxd + uplightleftheavybxd.glif + uplightrightdnheavybxd + uplightrightdnheavybxd.glif + uplightrightheavybxd + uplightrightheavybxd.glif + uprightdnleftdnrightquadrant + uprightdnleftdnrightquadrant.glif + uprightdnleftquadrant + uprightdnleftquadrant.glif + uprightquadrant + uprightquadrant.glif + upsnghorzdblbxd + upsnghorzdblbxd.glif + upsngleftdblbxd + upsngleftdblbxd.glif + upsngrightdblbxd + upsngrightdblbxd.glif uring uring.glif utilde @@ -1304,12 +1996,38 @@ v.glif vdotbelow vdotbelow.glif + vertdblhorzsngbxd + vertdblhorzsngbxd.glif + vertdblleftsngbxd + vertdblleftsngbxd.glif + vertdblrightsngbxd + vertdblrightsngbxd.glif + vertheavyhorzlightbxd + vertheavyhorzlightbxd.glif + vertheavyleftlightbxd + vertheavyleftlightbxd.glif + vertheavyrightlightbxd + vertheavyrightlightbxd.glif verticallinelowmod verticallinelowmod.glif verticallinemod verticallinemod.glif + vertlighthorzheavybxd + vertlighthorzheavybxd.glif + vertlightleftheavybxd + vertlightleftheavybxd.glif + vertlightrightheavybxd + vertlightrightheavybxd.glif + vertsnghorzdblbxd + vertsnghorzdblbxd.glif + vertsngleftdblbxd + vertsngleftdblbxd.glif + vertsngrightdblbxd + vertsngrightdblbxd.glif w w.glif + w_w_w.liga + w_w_w.liga.glif wacute wacute.glif wcircumflex diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/darkshade.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/darkshade.glif new file mode 100644 index 00000000..fd2eb1c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/darkshade.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dbldnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dbldnhorzbxd.glif new file mode 100644 index 00000000..c9659c7d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dbldnhorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dbldnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dbldnleftbxd.glif new file mode 100644 index 00000000..c1cb1a5d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dbldnleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dbldnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dbldnrightbxd.glif new file mode 100644 index 00000000..b0eb33d0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dbldnrightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dblhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dblhorzbxd.glif new file mode 100644 index 00000000..e43c87cc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dblhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dbluphorzbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dbluphorzbxd.glif new file mode 100644 index 00000000..a90d518d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dbluphorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dblupleftbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dblupleftbxd.glif new file mode 100644 index 00000000..44c1f08d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dblupleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dbluprightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dbluprightbxd.glif new file mode 100644 index 00000000..acaeaa92 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dbluprightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dblvertbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dblvertbxd.glif new file mode 100644 index 00000000..63ba3930 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dblvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dblverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dblverthorzbxd.glif new file mode 100644 index 00000000..4f0b225b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dblverthorzbxd.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dblvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dblvertleftbxd.glif new file mode 100644 index 00000000..b60eb844 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dblvertleftbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dblvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dblvertrightbxd.glif new file mode 100644 index 00000000..3e169b8f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dblvertrightbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dcaron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dcaron.glif index b7ee8872..f1cc2c61 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dcircumflexbelow.glif index 48f1b075..92ef65dd 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dcircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dcircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dcroat.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dcroat.glif index 3b85ad9f..7ac63f10 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dcroat.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dcroat.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ddotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ddotbelow.glif index 75f9bac2..7171a339 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ddotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ddotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresisacute.cap.glif index d6c7f8a8..cc07effa 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresisacute.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresisacute.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresisacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresisacute.glif index 6706d6b0..64d62ffb 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresisacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresisacute.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresisbelowcmb.glif index be791a11..60aea435 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresisbelowcmb.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresisbelowcmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresiscaron.cap.glif index 8dc4920c..49763fb5 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresiscaron.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresiscaron.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresiscaron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresiscaron.glif index c3c1e36c..3691e865 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresiscaron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresiscaron.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresisgrave.cap.glif index 8cac00a7..d4edfdff 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresisgrave.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresisgrave.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresisgrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresisgrave.glif index a9706af3..8c628d62 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresisgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresisgrave.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresismacron.cap.glif index 85b064ed..1ccb8913 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresismacron.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresismacron.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresismacron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresismacron.glif index 7af00f93..b2f6acb1 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresismacron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dieresismacron.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dlinebelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dlinebelow.glif index fc919b5f..b883d02f 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dndblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dndblhorzsngbxd.glif new file mode 100644 index 00000000..fa4f58c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dndblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dndblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dndblleftsngbxd.glif new file mode 100644 index 00000000..f5e60866 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dndblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dndblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dndblrightsngbxd.glif new file mode 100644 index 00000000..f299a0ec --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dndblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dneighthblock.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dneighthblock.glif new file mode 100644 index 00000000..ff791c74 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dneighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnfiveeighthsblock.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnfiveeighthsblock.glif new file mode 100644 index 00000000..99bd1498 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnhalfblock.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnhalfblock.glif new file mode 100644 index 00000000..001cf3fb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnhalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnheavyhorzlightbxd.glif new file mode 100644 index 00000000..37f7e2ee --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnheavyleftlightbxd.glif new file mode 100644 index 00000000..04054543 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnheavyleftuplightbxd.glif new file mode 100644 index 00000000..a720dcc7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnheavyrightlightbxd.glif new file mode 100644 index 00000000..9ba6704c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnheavyrightuplightbxd.glif new file mode 100644 index 00000000..815a695d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnheavyuphorzlightbxd.glif new file mode 100644 index 00000000..f5ba7604 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnheavyuphorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnleftquadrant.glif new file mode 100644 index 00000000..42729338 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnlighthorzheavybxd.glif new file mode 100644 index 00000000..28b25c49 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnlighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnlightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnlightleftheavybxd.glif new file mode 100644 index 00000000..59a51b0f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnlightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnlightleftupheavybxd.glif new file mode 100644 index 00000000..70904268 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnlightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnlightrightheavybxd.glif new file mode 100644 index 00000000..b4c6c636 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnlightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnlightrightupheavybxd.glif new file mode 100644 index 00000000..c5576d28 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnlightuphorzheavybxd.glif new file mode 100644 index 00000000..22f12436 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnlightuphorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnquarterblock.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnquarterblock.glif new file mode 100644 index 00000000..c2180b50 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnrightquadrant.glif new file mode 100644 index 00000000..9858382e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnrightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnseveneighthsblock.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnseveneighthsblock.glif new file mode 100644 index 00000000..ecdac3da --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnsnghorzdblbxd.glif new file mode 100644 index 00000000..ecff9c4d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnsngleftdblbxd.glif new file mode 100644 index 00000000..9053ebaf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnsngrightdblbxd.glif new file mode 100644 index 00000000..d9699e08 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnthreeeighthsblock.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnthreeeighthsblock.glif new file mode 100644 index 00000000..7febe2aa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnthreequartersblock.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnthreequartersblock.glif new file mode 100644 index 00000000..a79dae14 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dnthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dollar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dollar_greater.liga.glif new file mode 100644 index 00000000..2ce55707 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dollar_greater.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dotlessi.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dotlessi.glif index 4687a9fd..d01cff6a 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dotlessi.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dotlessi.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dotlessj.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dotlessj.glif index 0ca47627..370bf7e2 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dotlessj.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/dotlessj.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/eacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/eacute.glif index 2822ed2d..52dfa8c5 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/eacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/eacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ebreve.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ebreve.glif index 58c02944..bd560fd6 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ebreve.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ebreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecaron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecaron.glif index 3fed65d9..ef9eb414 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecaron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflex.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflex.glif index 81ed98c7..2ac4ea80 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflexacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflexacute.glif index 4f2549b8..2af7d68d 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflexdotbelow.glif index d1fbe842..c98cb466 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflexgrave.glif index de0fd03a..3f06d5a8 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflexhookabove.glif index 7a3a4a01..f5ef32a9 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflextilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflextilde.glif index b351e741..e8545ce2 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ecircumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/edieresis.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/edieresis.glif index c9e1608e..23246012 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/edieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/edieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/edotaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/edotaccent.glif index 6cf98259..c211ffb6 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/edotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/edotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/edotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/edotbelow.glif index 72a51e7f..43307427 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/edotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/edotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/egrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/egrave.glif index 88aa73db..981228a6 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/egrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/egrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ehookabove.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ehookabove.glif index 850597db..a002ec64 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ehookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ehookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/eight.num.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/eight.num.glif index 483e4107..b8fc65b8 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/eight.num.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/eight.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/emacron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/emacron.glif index 343f3a2f..81d274da 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/emacron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/emacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/eogonek.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/eogonek.glif index 98483913..7d08de53 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/eogonek.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/eogonek.glif @@ -2,8 +2,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal.end.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal.end.glif new file mode 100644 index 00000000..258d51bc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal.middle.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal.middle.glif new file mode 100644 index 00000000..8f81d447 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal.start.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal.start.glif new file mode 100644 index 00000000..759a2367 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_asciitilde.liga.glif new file mode 100644 index 00000000..772359c3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_asciitilde.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_bar.end.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_bar.end.glif new file mode 100644 index 00000000..25204b21 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_bar.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_bar.liga.glif new file mode 100644 index 00000000..f20bd40d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_bar.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_bar_bar.end.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_bar_bar.end.glif new file mode 100644 index 00000000..4234fccf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_bar_bar.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_bar_bar.liga.glif new file mode 100644 index 00000000..55724314 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_bar_bar.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_bar_bar_equal.middle.glif new file mode 100644 index 00000000..51b58298 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_bar_bar_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_bar_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_bar_equal.middle.glif new file mode 100644 index 00000000..7574deee --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_bar_equal.middle.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_colon_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_colon_equal.middle.glif new file mode 100644 index 00000000..ab116b10 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_colon_equal.middle.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_equal.liga.glif new file mode 100644 index 00000000..6a9bdc0e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_equal.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_equal_equal.liga.glif new file mode 100644 index 00000000..8ac8d054 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_equal_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_exclam_equal.middle.glif new file mode 100644 index 00000000..a4541fe8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_exclam_equal.middle.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_greater.end.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_greater.end.glif new file mode 100644 index 00000000..5c674f6f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_greater.end.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_greater.liga.glif new file mode 100644 index 00000000..6d30b036 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_greater_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_greater_equal.middle.glif new file mode 100644 index 00000000..cb4e7072 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_greater_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_greater_greater.end.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_greater_greater.end.glif new file mode 100644 index 00000000..2db8d751 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_greater_greater.end.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_greater_greater.liga.glif new file mode 100644 index 00000000..42287b6a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_greater_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_greater_greater_equal.m.glif new file mode 100644 index 00000000..8ec0e564 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_greater_greater_equal.m.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_less.end.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_less.end.glif new file mode 100644 index 00000000..cd10fdf5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_less.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_less.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_less.liga.glif new file mode 100644 index 00000000..447a57a3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_less.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_less_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_less_equal.middle.glif new file mode 100644 index 00000000..1cc830e4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_less_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_less_less.end.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_less_less.end.glif new file mode 100644 index 00000000..05ba9263 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_less_less.end.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_less_less.liga.glif new file mode 100644 index 00000000..ffd8067c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_less_less.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_less_less_equal.middle.glif new file mode 100644 index 00000000..01b57a57 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_less_less_equal.middle.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_slash.end.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_slash.end.glif new file mode 100644 index 00000000..b1770705 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_slash.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_slash.liga.glif new file mode 100644 index 00000000..831ef73d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_slash.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_slash_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_slash_equal.middle.glif new file mode 100644 index 00000000..0851dd06 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_slash_equal.middle.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_slash_slash.end.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_slash_slash.end.glif new file mode 100644 index 00000000..773cac9d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_slash_slash.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_slash_slash.liga.glif new file mode 100644 index 00000000..150e0ee8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_slash_slash.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_slash_slash_equal.middle.glif new file mode 100644 index 00000000..7905303b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/equal_slash_slash_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/etilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/etilde.glif index 066cbfc2..e1399a0e 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/etilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/etilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/exclam_asciitilde.liga.glif new file mode 100644 index 00000000..0846ceaf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/exclam_asciitilde.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/exclam_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/exclam_equal.liga.glif new file mode 100644 index 00000000..444ba3fc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/exclam_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/exclam_equal_equal.liga.glif new file mode 100644 index 00000000..66726a83 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/exclam_equal_equal.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/exclam_exclam.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/exclam_exclam.liga.glif new file mode 100644 index 00000000..92766d8a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/exclam_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/exclam_exclam_period.liga.glif new file mode 100644 index 00000000..11d9559b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/exclam_exclam_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/five.num.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/five.num.glif index 62693608..1e32166f 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/five.num.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/five.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/four.num.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/four.num.glif index dd11af3b..62ef719b 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/four.num.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/four.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/fullblock.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/fullblock.glif new file mode 100644 index 00000000..2c547d1b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/fullblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gbreve.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gbreve.glif index 76fc2f45..f142f0df 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gbreve.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gbreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gcaron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gcaron.glif index cdd7e1d9..52b707bd 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gcircumflex.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gcircumflex.glif index cfdc9957..811fb639 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gcommaaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gcommaaccent.glif index 281f6983..112a9ba5 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gdotaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gdotaccent.glif index 666d40d8..e49df7e0 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gmacron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gmacron.glif index 182eff05..41bdd865 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gmacron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gmacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gravecmb.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gravecmb.glif index de1b6d07..8fe17ade 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gravecmb.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/gravecmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_colon.liga.glif new file mode 100644 index 00000000..655d6653 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_equal.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_equal.glif new file mode 100644 index 00000000..2b2c4cd3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_equal.liga.glif new file mode 100644 index 00000000..9ba67c8f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_equal.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_equal.start.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_equal.start.glif new file mode 100644 index 00000000..64a7e19c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_equal.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_equal_greater.liga.glif new file mode 100644 index 00000000..b92aaada --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_equal_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_greater.liga.glif new file mode 100644 index 00000000..9abe077b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_greater_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_greater_equal.liga.glif new file mode 100644 index 00000000..062bbcaf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_greater_equal.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_greater_equal.start.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_greater_equal.start.glif new file mode 100644 index 00000000..81a7986f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_greater_equal.start.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_greater_greater.liga.glif new file mode 100644 index 00000000..ec3f5fa3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_greater_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_greater_hyphen.liga.glif new file mode 100644 index 00000000..c7eb9b8f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_greater_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_greater_hyphen.start.glif new file mode 100644 index 00000000..7a04c592 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_greater_hyphen.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_hyphen.liga.glif new file mode 100644 index 00000000..5b95c594 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_hyphen.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_hyphen.start.glif new file mode 100644 index 00000000..1e746ccf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_hyphen.start.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_hyphen_greater.liga.glif new file mode 100644 index 00000000..6faa39f5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/greater_hyphen_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hbrevebelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hbrevebelow.glif index 3d80f28f..321c2fc5 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hbrevebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hbrevebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hcircumflex.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hcircumflex.glif index f66e06a4..ce6d5951 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hdotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hdotbelow.glif index e1d222d7..cbc5ac0b 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavydbldashhorzbxd.glif new file mode 100644 index 00000000..702827d8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavydbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavydbldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavydbldashvertbxd.glif new file mode 100644 index 00000000..6aa8055f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavydbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavydnbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavydnbxd.glif new file mode 100644 index 00000000..f44369da --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavydnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavydnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavydnhorzbxd.glif new file mode 100644 index 00000000..1a9c562c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavydnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavydnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavydnleftbxd.glif new file mode 100644 index 00000000..dddb8d03 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavydnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavydnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavydnrightbxd.glif new file mode 100644 index 00000000..22a584aa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavydnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyhorzbxd.glif new file mode 100644 index 00000000..618372ad --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyhorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyleftbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyleftbxd.glif new file mode 100644 index 00000000..aa0ed90a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyleftlightrightbxd.glif new file mode 100644 index 00000000..abd61ef5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyleftlightrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyquaddashhorzbxd.glif new file mode 100644 index 00000000..42e19747 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyquaddashvertbxd.glif new file mode 100644 index 00000000..04e9430a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyrightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyrightbxd.glif new file mode 100644 index 00000000..d6b930a4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavytrpldashhorzbxd.glif new file mode 100644 index 00000000..8c33263a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavytrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavytrpldashvertbxd.glif new file mode 100644 index 00000000..332aa0b7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavytrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyupbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyupbxd.glif new file mode 100644 index 00000000..88706f34 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyuphorzbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyuphorzbxd.glif new file mode 100644 index 00000000..644bd3c1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyupleftbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyupleftbxd.glif new file mode 100644 index 00000000..88a43f59 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyuplightdnbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyuplightdnbxd.glif new file mode 100644 index 00000000..98585f3c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyuplightdnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyuprightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyuprightbxd.glif new file mode 100644 index 00000000..12eebf8b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyvertbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyvertbxd.glif new file mode 100644 index 00000000..91405da0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyverthorzbxd.glif new file mode 100644 index 00000000..b8d84bd3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyvertleftbxd.glif new file mode 100644 index 00000000..dcb956bc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyvertrightbxd.glif new file mode 100644 index 00000000..4d6049c0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/heavyvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hlinebelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hlinebelow.glif index 40e818fe..dcb5fa6a 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hookcmb.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hookcmb.glif index 2c6b735b..6106cc83 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hookcmb.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hookcmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/horizontalbar.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/horizontalbar.glif index 2c2b288d..ef4b3086 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/horizontalbar.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/horizontalbar.glif @@ -5,10 +5,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen.end.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen.end.glif new file mode 100644 index 00000000..01fb51c1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen.middle.glif new file mode 100644 index 00000000..7c0177ae --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen.start.glif new file mode 100644 index 00000000..9abbab34 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_asciitilde.liga.glif new file mode 100644 index 00000000..58642007 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_asciitilde.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_bar.end.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_bar.end.glif new file mode 100644 index 00000000..589d7467 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_bar.end.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_bar.liga.glif new file mode 100644 index 00000000..18eda1b7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_bar.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_bar_bar.end.glif new file mode 100644 index 00000000..4fb09391 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_bar_bar.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_bar_bar.liga.glif new file mode 100644 index 00000000..003373b8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_bar_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif new file mode 100644 index 00000000..c09f0153 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_bar_hyphen.middle.glif new file mode 100644 index 00000000..e85ad4f6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_bar_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_greater.end.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_greater.end.glif new file mode 100644 index 00000000..d922ff19 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_greater.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_greater.liga.glif new file mode 100644 index 00000000..e0729045 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_greater.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_greater_greater.end.glif new file mode 100644 index 00000000..27926fab --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_greater_greater.end.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_greater_greater.liga.glif new file mode 100644 index 00000000..4afef1b2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_greater_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif new file mode 100644 index 00000000..3cbd2b8f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_greater_hyphen.middle.glif new file mode 100644 index 00000000..b55fe85b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_greater_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_hyphen.liga.glif new file mode 100644 index 00000000..4c49ab56 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_hyphen.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..52fb755c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_less.end.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_less.end.glif new file mode 100644 index 00000000..369a400c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_less.end.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_less.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_less.liga.glif new file mode 100644 index 00000000..31065d86 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_less.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_less_hyphen.middle.glif new file mode 100644 index 00000000..d8f2e921 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_less_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_less_less.end.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_less_less.end.glif new file mode 100644 index 00000000..e56ab33c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_less_less.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_less_less.liga.glif new file mode 100644 index 00000000..b3848bc9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_less_less.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_less_less_hyphen.middle.glif new file mode 100644 index 00000000..07f2036e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/hyphen_less_less_hyphen.middle.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/iacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/iacute.glif index 062ea298..6c35b468 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/iacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/iacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ibreve.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ibreve.glif index 95a178db..b87825a9 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ibreve.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ibreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/icaron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/icaron.glif index 71f292d3..4728b70a 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/icaron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/icaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/icircumflex.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/icircumflex.glif index 903cbb5e..7c4b1f81 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/icircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/icircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/idieresis.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/idieresis.glif index 51f07f6d..8e6ff019 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/idieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/idieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/idotaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/idotaccent.glif index 92c9f961..ef883f98 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/idotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/idotaccent.glif @@ -5,10 +5,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/idotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/idotbelow.glif index cd0db694..0b0d760a 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/idotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/idotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/igrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/igrave.glif index 0796c8af..3a9ceed0 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/igrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/igrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ihookabove.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ihookabove.glif index b271f530..75721d6f 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ihookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ihookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/imacron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/imacron.glif index 1206e1d1..0dd3c5cb 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/imacron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/imacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/itilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/itilde.glif index 8cf5576f..87383742 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/itilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/itilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/jcaron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/jcaron.glif index 552d090b..dbc8d0e1 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/jcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/jcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/jcircumflex.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/jcircumflex.glif index fab42809..de5fd04b 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/jcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/jcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/kcommaaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/kcommaaccent.glif index 6e968a5e..5dad0931 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/kcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/kcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/kdotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/kdotbelow.glif index 41f09a19..be867cce 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/kdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/kdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/klinebelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/klinebelow.glif index 271bb020..8ae03991 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/klinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/klinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/l.dot.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/l.dot.glif index c088d7ad..d8633117 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/l.dot.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/l.dot.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lacute.glif index dc6f7aab..c54e9145 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lcaron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lcaron.glif index d5928c5e..ca4c3976 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lcircumflexbelow.glif index 653c9d0f..2261b7b2 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lcircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lcircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lcommaaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lcommaaccent.glif index 01303bdd..682b4642 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ldotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ldotbelow.glif index e3a0e765..b3e40737 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ldotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ldotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftdnheavyrightuplightbxd.glif new file mode 100644 index 00000000..2a51a287 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftdnheavyrightuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lefteighthblock.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lefteighthblock.glif new file mode 100644 index 00000000..8d44dad4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lefteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftfiveeighthsblock.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftfiveeighthsblock.glif new file mode 100644 index 00000000..0eb9ccfc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lefthalfblock.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lefthalfblock.glif new file mode 100644 index 00000000..325c05f6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lefthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftheavyrightdnlightbxd.glif new file mode 100644 index 00000000..caada6c8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftheavyrightuplightbxd.glif new file mode 100644 index 00000000..8b33bec2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftheavyrightvertlightbxd.glif new file mode 100644 index 00000000..3b56b96e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftheavyrightvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftlightrightdnheavybxd.glif new file mode 100644 index 00000000..f32d07c0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftlightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftlightrightupheavybxd.glif new file mode 100644 index 00000000..9fc34b5b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftlightrightvertheavybxd.glif new file mode 100644 index 00000000..598f7689 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftlightrightvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftquarterblock.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftquarterblock.glif new file mode 100644 index 00000000..036dad83 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftseveneighthsblock.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftseveneighthsblock.glif new file mode 100644 index 00000000..74b69747 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftthreeeighthsblock.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftthreeeighthsblock.glif new file mode 100644 index 00000000..e5c4283a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftthreequartersblock.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftthreequartersblock.glif new file mode 100644 index 00000000..5ae5b2e3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftupheavyrightdnlightbxd.glif new file mode 100644 index 00000000..0ac6ddaf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/leftupheavyrightdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_asciitilde.liga.glif new file mode 100644 index 00000000..5fc9d0e6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_asciitilde.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..ec9df4c8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_asciitilde_asciitilde.liga.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_asciitilde_greater.liga.glif new file mode 100644 index 00000000..a10306fb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_asciitilde_greater.liga.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_asterisk.liga.glif new file mode 100644 index 00000000..f855718f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_asterisk_greater.liga.glif new file mode 100644 index 00000000..e3204627 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_asterisk_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_bar.liga.glif new file mode 100644 index 00000000..e39f5a57 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_bar.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_bar_bar.liga.glif new file mode 100644 index 00000000..59fec2b6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_bar_bar.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_bar_bar_bar.liga.glif new file mode 100644 index 00000000..bc229471 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_bar_bar_bar.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_bar_greater.liga.glif new file mode 100644 index 00000000..d852b249 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_bar_greater.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_colon.liga.glif new file mode 100644 index 00000000..af595ba8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_dollar.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_dollar.liga.glif new file mode 100644 index 00000000..6a88608a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_dollar.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_dollar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_dollar_greater.liga.glif new file mode 100644 index 00000000..605f4c47 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_dollar_greater.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_equal.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_equal.glif new file mode 100644 index 00000000..b1c30eae --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_equal.liga.glif new file mode 100644 index 00000000..5ff993e7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_equal.start.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_equal.start.glif new file mode 100644 index 00000000..8ba00426 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_equal.start.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_equal_greater.liga.glif new file mode 100644 index 00000000..a329e37c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_equal_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_equal_less.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_equal_less.liga.glif new file mode 100644 index 00000000..958ba0fb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_equal_less.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..ce07e7db --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_greater.liga.glif new file mode 100644 index 00000000..d1a5eec2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_greater.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_hyphen.liga.glif new file mode 100644 index 00000000..54773894 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_hyphen.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_hyphen.start.glif new file mode 100644 index 00000000..41cf4cbe --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_hyphen.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_hyphen_greater.liga.glif new file mode 100644 index 00000000..aebbb113 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_hyphen_greater.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_hyphen_less.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_hyphen_less.liga.glif new file mode 100644 index 00000000..c33ab140 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_hyphen_less.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_less.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_less.liga.glif new file mode 100644 index 00000000..4bbc8055 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_less.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_less_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_less_equal.liga.glif new file mode 100644 index 00000000..61495cc0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_less_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_less_equal.start.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_less_equal.start.glif new file mode 100644 index 00000000..f29878bd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_less_equal.start.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_less_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_less_hyphen.liga.glif new file mode 100644 index 00000000..000e7c97 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_less_hyphen.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_less_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_less_hyphen.start.glif new file mode 100644 index 00000000..0e63f761 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_less_hyphen.start.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_less_less.liga.glif new file mode 100644 index 00000000..0bc0122e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_less_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_plus.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_plus.liga.glif new file mode 100644 index 00000000..4faf5922 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_plus.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_plus_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_plus_greater.liga.glif new file mode 100644 index 00000000..3f842213 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_plus_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_slash.liga.glif new file mode 100644 index 00000000..8b92ecad --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_slash.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_slash_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_slash_greater.liga.glif new file mode 100644 index 00000000..2af8c018 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/less_slash_greater.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightarcdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightarcdnleftbxd.glif new file mode 100644 index 00000000..d6c590bf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightarcdnleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightarcdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightarcdnrightbxd.glif new file mode 100644 index 00000000..2c2ef6c9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightarcdnrightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightarcupleftbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightarcupleftbxd.glif new file mode 100644 index 00000000..c0cfb520 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightarcupleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightarcuprightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightarcuprightbxd.glif new file mode 100644 index 00000000..307503ea --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightarcuprightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdbldashhorzbxd.glif new file mode 100644 index 00000000..eab523b6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdbldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdbldashvertbxd.glif new file mode 100644 index 00000000..7d1904ca --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdiagcrossbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdiagcrossbxd.glif new file mode 100644 index 00000000..5aca66b5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdiagcrossbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdiagupleftdnrightbxd.glif new file mode 100644 index 00000000..7332aef6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdiagupleftdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdiaguprightdnleftbxd.glif new file mode 100644 index 00000000..1add8c62 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdiaguprightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdnbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdnbxd.glif new file mode 100644 index 00000000..ad43789a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdnhorzbxd.glif new file mode 100644 index 00000000..0dea7b7d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdnleftbxd.glif new file mode 100644 index 00000000..d19b9caf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdnrightbxd.glif new file mode 100644 index 00000000..bdad23ca --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lighthorzbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lighthorzbxd.glif new file mode 100644 index 00000000..6f0b2756 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lighthorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightleftbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightleftbxd.glif new file mode 100644 index 00000000..7d12fe60 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightleftheavyrightbxd.glif new file mode 100644 index 00000000..621504d4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightleftheavyrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightquaddashhorzbxd.glif new file mode 100644 index 00000000..8ba84c9e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightquaddashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightquaddashvertbxd.glif new file mode 100644 index 00000000..739f14c0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightrightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightrightbxd.glif new file mode 100644 index 00000000..86414804 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightshade.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightshade.glif new file mode 100644 index 00000000..156f38e4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightshade.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lighttrpldashhorzbxd.glif new file mode 100644 index 00000000..44a74bf6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lighttrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lighttrpldashvertbxd.glif new file mode 100644 index 00000000..133c2d16 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lighttrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightupbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightupbxd.glif new file mode 100644 index 00000000..c5da75fa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightupheavydnbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightupheavydnbxd.glif new file mode 100644 index 00000000..b9ee6c1d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightupheavydnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightuphorzbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightuphorzbxd.glif new file mode 100644 index 00000000..6812b83f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightupleftbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightupleftbxd.glif new file mode 100644 index 00000000..1e47c266 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightuprightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightuprightbxd.glif new file mode 100644 index 00000000..f06b42c0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightvertbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightvertbxd.glif new file mode 100644 index 00000000..16a9f0d1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightverthorzbxd.glif new file mode 100644 index 00000000..62c52c58 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightvertleftbxd.glif new file mode 100644 index 00000000..ff055c1e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightvertrightbxd.glif new file mode 100644 index 00000000..f2f8ef17 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lightvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ligspacer.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ligspacer.glif new file mode 100644 index 00000000..ae7011c5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ligspacer.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/llinebelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/llinebelow.glif index 4d9b5125..e948d48f 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/llinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/llinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lmacrondotbelow.glif index de888b97..d75e2965 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lmacrondotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/lmacrondotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/macute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/macute.glif index 70c47115..3ed5f455 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/macute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/macute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/mdotaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/mdotaccent.glif index 89a554be..8e7bd82d 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/mdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/mdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/mdotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/mdotbelow.glif index 653113e7..ecb83f72 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/mdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/mdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/mediumshade.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/mediumshade.glif new file mode 100644 index 00000000..4e438ef8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/mediumshade.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/nacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/nacute.glif index d10c72a6..ef3f6092 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/nacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/nacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ncaron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ncaron.glif index 64417bdb..e28ca9bd 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ncaron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ncaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ncircumflexbelow.glif index 8cfa96c0..4068663c 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ncircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ncircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ncommaaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ncommaaccent.glif index 04de8efe..8a88be65 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ncommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ncommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ndotaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ndotaccent.glif index c8221033..92650cfd 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ndotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ndotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ndotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ndotbelow.glif index cab1123d..247555b0 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ngrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ngrave.glif index e740bbb8..dc1c7837 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ngrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/nine.num.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/nine.num.glif index 177b7e98..36a7e399 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/nine.num.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/nine.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/nlinebelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/nlinebelow.glif index 4d07962a..ca2f59e5 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/nlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/nlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ntilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ntilde.glif index 844c572c..66cda983 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ntilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign.end.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign.end.glif new file mode 100644 index 00000000..cac809e8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign.end.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign.middle.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign.middle.glif new file mode 100644 index 00000000..a3fe52aa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign.start.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign.start.glif new file mode 100644 index 00000000..dc6e73ee --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign.start.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_braceleft.liga.glif new file mode 100644 index 00000000..516f4a39 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_braceleft.liga.glif @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_bracketleft.liga.glif new file mode 100644 index 00000000..2db4e21a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_bracketleft.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_colon.liga.glif new file mode 100644 index 00000000..ac942aee --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_colon.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_equal.liga.glif new file mode 100644 index 00000000..61683046 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_equal.liga.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_exclam.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_exclam.liga.glif new file mode 100644 index 00000000..a5077402 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_parenleft.liga.glif new file mode 100644 index 00000000..1f04fcbd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_parenleft.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_question.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_question.liga.glif new file mode 100644 index 00000000..1ddf82f2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_underscore.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_underscore.liga.glif new file mode 100644 index 00000000..9101103d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_underscore.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_underscore_parenleft.glif new file mode 100644 index 00000000..fe478b9c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/numbersign_underscore_parenleft.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/oacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/oacute.glif index ee847b53..03550f50 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/oacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/oacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/obreve.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/obreve.glif index b6e886e4..6f103a35 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/obreve.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/obreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocaron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocaron.glif index 6c0c38c9..14d5f183 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocaron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflex.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflex.glif index fdbaa655..eda210a4 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflexacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflexacute.glif index 579f6f4a..6960a74b 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflexdotbelow.glif index 01c4a699..4fac7a3e 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflexgrave.glif index 710a562a..474f822f 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflexhookabove.glif index 1452756e..0f89a1e3 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflextilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflextilde.glif index e2ea111f..d56b145d 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ocircumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/odieresis.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/odieresis.glif index 79d89256..30227154 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/odieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/odieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/odotaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/odotaccent.glif index 03bb57c0..d6b6f476 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/odotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/odotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/odotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/odotbelow.glif index 810c8153..59c1de4c 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/odotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/odotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ograve.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ograve.glif index 5a549ae6..8dbc8574 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ograve.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ograve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohookabove.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohookabove.glif index 3c1d04f8..1d0ba12a 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohorn.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohorn.glif index 7ee00e79..b55a7fdd 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohorn.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohorn.glif @@ -2,9 +2,6 @@ - - - @@ -15,7 +12,7 @@ - + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohornacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohornacute.glif index 63abb2e6..db1ac6e1 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohornacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohorndotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohorndotbelow.glif index 5d010c80..aea32dcd 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohorndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohorndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohorngrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohorngrave.glif index 25c3b258..4b1344fe 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohorngrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohorngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohornhookabove.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohornhookabove.glif index bd44589a..153e0418 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohorntilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohorntilde.glif index 41d5abbb..c377e78d 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohorntilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohorntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohungarumlaut.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohungarumlaut.glif index 6c82b791..75d64db0 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohungarumlaut.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ohungarumlaut.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/omacron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/omacron.glif index 02f808f1..67fad8ad 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/omacron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/omacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/one.num.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/one.num.glif index d27ef069..33b01843 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/one.num.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/one.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/otilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/otilde.glif index 4f5eca84..0d5b24e6 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/otilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/otilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/percent_percent.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/percent_percent.liga.glif new file mode 100644 index 00000000..5abf794b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/percent_percent.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_equal.liga.glif new file mode 100644 index 00000000..042084b9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_hyphen.liga.glif new file mode 100644 index 00000000..208d135e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_period.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_period.liga.glif new file mode 100644 index 00000000..7040f36f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_period_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_period_equal.liga.glif new file mode 100644 index 00000000..a5e08b21 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_period_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_period_less.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_period_less.liga.glif new file mode 100644 index 00000000..10eb7b3d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_period_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_period_period.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_period_period.liga.glif new file mode 100644 index 00000000..0495ed42 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_period_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_question.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_question.liga.glif new file mode 100644 index 00000000..64e98fba --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/period_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/plus_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/plus_greater.liga.glif new file mode 100644 index 00000000..be748e20 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/plus_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/plus_plus.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/plus_plus.liga.glif new file mode 100644 index 00000000..b4fdb41f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/plus_plus.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/plus_plus_plus.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/plus_plus_plus.liga.glif new file mode 100644 index 00000000..dc06f79b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/plus_plus_plus.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/question_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/question_colon.liga.glif new file mode 100644 index 00000000..bc6aa95c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/question_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/question_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/question_equal.liga.glif new file mode 100644 index 00000000..9d54b875 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/question_equal.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/question_period.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/question_period.liga.glif new file mode 100644 index 00000000..a50382ca --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/question_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/question_question.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/question_question.liga.glif new file mode 100644 index 00000000..47df2d1f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/question_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/racute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/racute.glif index 9f0117e2..c9dfa490 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/racute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/racute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rcaron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rcaron.glif index eac17548..3aed1f96 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rcommaaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rcommaaccent.glif index cbd12224..469c3240 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rdotaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rdotaccent.glif index bb3f0038..215cba07 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rdotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rdotbelow.glif index fc257723..e47dbefd 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightdnheavyleftuplightbxd.glif new file mode 100644 index 00000000..e10e5fc2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightdnheavyleftuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/righteighthblock.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/righteighthblock.glif new file mode 100644 index 00000000..9d954a40 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/righteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/righthalfblock.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/righthalfblock.glif new file mode 100644 index 00000000..7d4f8cef --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/righthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightheavyleftdnlightbxd.glif new file mode 100644 index 00000000..644f5a5b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightheavyleftuplightbxd.glif new file mode 100644 index 00000000..4814e346 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightheavyleftvertlightbxd.glif new file mode 100644 index 00000000..7127b25f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightheavyleftvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightlightleftdnheavybxd.glif new file mode 100644 index 00000000..7f69d482 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightlightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightlightleftupheavybxd.glif new file mode 100644 index 00000000..1ca14f37 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightlightleftvertheavybxd.glif new file mode 100644 index 00000000..6035ef73 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightlightleftvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightupheavyleftdnlightbxd.glif new file mode 100644 index 00000000..dba9270c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rightupheavyleftdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ringcmb.cap.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ringcmb.cap.glif index 3a35842e..0ecb766f 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ringcmb.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ringcmb.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rlinebelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rlinebelow.glif index caa54e03..2897bc87 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rmacrondotbelow.glif index 4c5e107f..e7ac8cbf 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rmacrondotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/rmacrondotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/sacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/sacute.glif index 339a4cd0..d4bb4f85 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/sacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/sacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/scaron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/scaron.glif index 326b5aa4..8115c750 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/scaron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/scaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/scircumflex.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/scircumflex.glif index 27bf4155..1b6101a0 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/scircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/scircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/scommaaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/scommaaccent.glif index 38178764..f1f9486a 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/scommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/scommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/sdotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/sdotbelow.glif index 41f57dde..788f7e3b 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/sdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/sdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/semicolon_semicolon.liga.glif new file mode 100644 index 00000000..d21923b8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/semicolon_semicolon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/seven.num.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/seven.num.glif index b58b725e..16a9c596 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/seven.num.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/seven.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/six.num.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/six.num.glif index e558ebc3..50b656e5 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/six.num.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/six.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_asterisk.liga.glif new file mode 100644 index 00000000..ae23ebb3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_backslash.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_backslash.liga.glif new file mode 100644 index 00000000..53fad663 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_backslash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_equal.liga.glif new file mode 100644 index 00000000..a48519d5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_equal.start.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_equal.start.glif new file mode 100644 index 00000000..4ab4b1a5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_greater.liga.glif new file mode 100644 index 00000000..0b46f2c5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_slash.liga.glif new file mode 100644 index 00000000..2bc4a71a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_slash_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_slash_equal.liga.glif new file mode 100644 index 00000000..04b57e6c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_slash_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_slash_equal.start.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_slash_equal.start.glif new file mode 100644 index 00000000..91934123 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_slash_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_slash_slash.liga.glif new file mode 100644 index 00000000..3f943989 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/slash_slash_slash.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/tcaron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/tcaron.glif index d4da28d7..b4273737 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/tcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/tcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/tcircumflexbelow.glif index 03c2aa26..bbc463d1 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/tcircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/tcircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/tcommaaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/tcommaaccent.glif index 4161712f..12f01242 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/tcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/tcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/tdotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/tdotbelow.glif index 1853e524..cc580d68 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/tdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/tdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/three.num.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/three.num.glif index 13de2a77..cfc019ee 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/three.num.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/three.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/tlinebelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/tlinebelow.glif index 3ffa258b..7769d010 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/tlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/tlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/two.num.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/two.num.glif index 14c3fed6..631bd1e0 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/two.num.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/two.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uacute.glif index 6ebd0ee0..4a05ee93 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ubreve.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ubreve.glif index 6810c769..241a5d13 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ubreve.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ubreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ucaron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ucaron.glif index 2480f519..65cbba98 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ucaron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ucaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ucircumflex.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ucircumflex.glif index e89fb844..62078457 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ucircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ucircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udieresis.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udieresis.glif index e29e06bb..4b52d390 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udieresisacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udieresisacute.glif index f2b8b172..65f5fa2e 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udieresisacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udieresisacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udieresiscaron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udieresiscaron.glif index 4c954977..13e0f8c7 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udieresiscaron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udieresiscaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udieresisgrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udieresisgrave.glif index 1abb564d..9d58aafb 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udieresisgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udieresisgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udieresismacron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udieresismacron.glif index 6b9a8b82..d5fed35d 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udieresismacron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udieresismacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udotbelow.glif index ef8e13e2..b960182b 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/udotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ugrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ugrave.glif index a4d404de..456e40f9 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ugrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ugrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhookabove.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhookabove.glif index 4d52e190..287b3c6c 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhorn.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhorn.glif index 2882970c..b17abc13 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhorn.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhorn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhornacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhornacute.glif index 72cf4ed8..cd126a99 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhornacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhorndotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhorndotbelow.glif index d46e5bb3..aae3410f 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhorndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhorndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhorngrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhorngrave.glif index 5b05f814..370cda65 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhorngrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhorngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhornhookabove.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhornhookabove.glif index b942cb36..5fa24200 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhorntilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhorntilde.glif index 76b0076d..938cc6a6 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhorntilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhorntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhungarumlaut.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhungarumlaut.glif index e7f0ea6e..ec131c5f 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhungarumlaut.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uhungarumlaut.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/umacron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/umacron.glif index 4a0f1d51..b9b8efde 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/umacron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/umacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/underscore.end.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/underscore.end.glif new file mode 100644 index 00000000..9f0d4df5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/underscore.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/underscore.middle.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/underscore.middle.glif new file mode 100644 index 00000000..93623d07 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/underscore.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/underscore.start.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/underscore.start.glif new file mode 100644 index 00000000..9dc664c3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/underscore.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/underscore_bar_underscore.m.glif new file mode 100644 index 00000000..55b8eb9e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/underscore_bar_underscore.m.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uni2011.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uni2011.glif index 937026ea..33e0d4b6 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uni2011.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uni2011.glif @@ -5,10 +5,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uni2610.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uni2610.glif new file mode 100644 index 00000000..944f5a35 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uni2610.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uni2611.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uni2611.glif new file mode 100644 index 00000000..27198e8c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uni2611.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uni2612.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uni2612.glif new file mode 100644 index 00000000..37a4b5c5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uni2612.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uni2713.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uni2713.glif new file mode 100644 index 00000000..7697a0cf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uni2713.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0A_0.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0A_0.glif new file mode 100644 index 00000000..3b6a8733 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0A_0.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0A_1.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0A_1.glif new file mode 100644 index 00000000..299a1025 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0A_1.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0A_2.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0A_2.glif new file mode 100644 index 00000000..63bf0901 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0A_2.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0B_0.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0B_0.glif new file mode 100644 index 00000000..94854e00 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0B_0.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0B_1.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0B_1.glif new file mode 100644 index 00000000..dcdd4198 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0B_1.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0B_2.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0B_2.glif new file mode 100644 index 00000000..b894df86 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0B_2.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0B_3.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0B_3.glif new file mode 100644 index 00000000..11118cb9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uniE_0B_3.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/updblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/updblhorzsngbxd.glif new file mode 100644 index 00000000..d61821f8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/updblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/updblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/updblleftsngbxd.glif new file mode 100644 index 00000000..8cb39189 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/updblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/updblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/updblrightsngbxd.glif new file mode 100644 index 00000000..25c707f4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/updblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upeighthblock.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upeighthblock.glif new file mode 100644 index 00000000..87701940 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upeighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uphalfblock.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uphalfblock.glif new file mode 100644 index 00000000..018ed615 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uphalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upheavydnhorzlightbxd.glif new file mode 100644 index 00000000..158b497a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upheavydnhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upheavyhorzlightbxd.glif new file mode 100644 index 00000000..d77692f9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upheavyleftdnlightbxd.glif new file mode 100644 index 00000000..8b5d48ff --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upheavyleftlightbxd.glif new file mode 100644 index 00000000..3fb7a207 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upheavyrightdnlightbxd.glif new file mode 100644 index 00000000..0adfdfad --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upheavyrightlightbxd.glif new file mode 100644 index 00000000..2037d8de --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upleftdnleftdnrightquadrant.glif new file mode 100644 index 00000000..91309b79 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upleftdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upleftdnrightquadrant.glif new file mode 100644 index 00000000..9bb17821 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upleftdnrightquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upleftquadrant.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upleftquadrant.glif new file mode 100644 index 00000000..ef21c49d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upleftuprightdnleftquadrant.glif new file mode 100644 index 00000000..0d5294c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upleftuprightdnleftquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upleftuprightdnrightquadrant.glif new file mode 100644 index 00000000..56cf6e14 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upleftuprightdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uplightdnhorzheavybxd.glif new file mode 100644 index 00000000..489d430a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uplightdnhorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uplighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uplighthorzheavybxd.glif new file mode 100644 index 00000000..b54fecb4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uplighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uplightleftdnheavybxd.glif new file mode 100644 index 00000000..8c12ca2f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uplightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uplightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uplightleftheavybxd.glif new file mode 100644 index 00000000..168ac26f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uplightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uplightrightdnheavybxd.glif new file mode 100644 index 00000000..f8f71088 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uplightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uplightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uplightrightheavybxd.glif new file mode 100644 index 00000000..55aad623 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uplightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uprightdnleftdnrightquadrant.glif new file mode 100644 index 00000000..df5a022e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uprightdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uprightdnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uprightdnleftquadrant.glif new file mode 100644 index 00000000..93cbe757 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uprightdnleftquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uprightquadrant.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uprightquadrant.glif new file mode 100644 index 00000000..de8b454f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uprightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upsnghorzdblbxd.glif new file mode 100644 index 00000000..8aa48edf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upsngleftdblbxd.glif new file mode 100644 index 00000000..f67179a7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upsngrightdblbxd.glif new file mode 100644 index 00000000..44defda2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/upsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uring.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uring.glif index 049b9f62..eddb2dfa 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uring.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/uring.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/utilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/utilde.glif index 4c653764..523d20bb 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/utilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/utilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vdotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vdotbelow.glif index 073ddf83..93a9c351 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertdblhorzsngbxd.glif new file mode 100644 index 00000000..4d815b5b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertdblhorzsngbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertdblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertdblleftsngbxd.glif new file mode 100644 index 00000000..ed0b8dcd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertdblleftsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertdblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertdblrightsngbxd.glif new file mode 100644 index 00000000..374166b2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertdblrightsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertheavyhorzlightbxd.glif new file mode 100644 index 00000000..6f98a0d2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertheavyhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertheavyleftlightbxd.glif new file mode 100644 index 00000000..a7ae7c83 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertheavyleftlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertheavyrightlightbxd.glif new file mode 100644 index 00000000..3577b6f4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertheavyrightlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertlighthorzheavybxd.glif new file mode 100644 index 00000000..514e0d7b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertlighthorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertlightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertlightleftheavybxd.glif new file mode 100644 index 00000000..04acbcf3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertlightleftheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertlightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertlightrightheavybxd.glif new file mode 100644 index 00000000..3341b6e3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertlightrightheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertsnghorzdblbxd.glif new file mode 100644 index 00000000..f9f4757d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertsnghorzdblbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertsngleftdblbxd.glif new file mode 100644 index 00000000..9d9c65d6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertsngleftdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertsngrightdblbxd.glif new file mode 100644 index 00000000..85458814 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/vertsngrightdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/w_w_w.liga.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/w_w_w.liga.glif new file mode 100644 index 00000000..d24b4f7f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/w_w_w.liga.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/wacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/wacute.glif index ae7564ee..8be47257 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/wacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/wacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/wcircumflex.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/wcircumflex.glif index 602a9605..6c5ed098 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/wcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/wcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/wdieresis.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/wdieresis.glif index bcc1c0fe..48780a49 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/wdieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/wdieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/wgrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/wgrave.glif index c9e9c204..ac0dfb13 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/wgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/wgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/xdieresis.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/xdieresis.glif index 35d08922..d72e89c4 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/xdieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/xdieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/yacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/yacute.glif index 727cd7f3..5c8c4081 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/yacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/yacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ycircumflex.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ycircumflex.glif index 21843654..1ceea23a 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ycircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ycircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ydieresis.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ydieresis.glif index 0becf106..c224c922 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ydieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ydieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ydotaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ydotaccent.glif index 2cda8b4d..65c93c2e 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ydotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ydotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ydotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ydotbelow.glif index c4cf935f..123f7706 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ydotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ydotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ygrave.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ygrave.glif index 57050b8b..1bde8ee0 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ygrave.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ygrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/yhookabove.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/yhookabove.glif index c38f1a47..117d67b4 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/yhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/yhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ymacron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ymacron.glif index ab5aad95..07b1e435 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ymacron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ymacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ytilde.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ytilde.glif index 51b21f12..bb89b49c 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ytilde.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/ytilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zacute.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zacute.glif index 6a926f32..2245dfa8 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zacute.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zcaron.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zcaron.glif index 51bb8a2b..d96b0ea6 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zcircumflex.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zcircumflex.glif index 38d20f1c..f8c328ad 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zdotaccent.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zdotaccent.glif index 31e8d576..ea3c654e 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zdotbelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zdotbelow.glif index c77e747b..d2554bdf 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zero.num.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zero.num.glif index 9a64cd0e..79b7d898 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zero.num.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zero.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zlinebelow.glif b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zlinebelow.glif index b452bff3..094273d1 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/glyphs/zlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Light.ufo/lib.plist b/sources/instances/postscript/IntelOneMono-Light.ufo/lib.plist index 047cc547..eabdd4b6 100644 --- a/sources/instances/postscript/IntelOneMono-Light.ufo/lib.plist +++ b/sources/instances/postscript/IntelOneMono-Light.ufo/lib.plist @@ -2,6 +2,17 @@ + com.defcon.sortDescriptor + + + allowPseudoUnicode + 0 + ascending + Intel Mono 1.4 + type + characterSet + + com.typemytype.robofont.compileSettings.MacRomanFirst com.typemytype.robofont.compileSettings.autohint @@ -710,6 +721,365 @@ circumflexgrave.cap circumflexhook.cap circumflextilde.cap + lighthorzbxd + heavyhorzbxd + lightvertbxd + heavyvertbxd + lighttrpldashhorzbxd + heavytrpldashhorzbxd + lighttrpldashvertbxd + heavytrpldashvertbxd + lightquaddashhorzbxd + heavyquaddashhorzbxd + lightquaddashvertbxd + heavyquaddashvertbxd + lightdnrightbxd + dnlightrightheavybxd + dnheavyrightlightbxd + heavydnrightbxd + lightdnleftbxd + dnlightleftheavybxd + dnheavyleftlightbxd + heavydnleftbxd + lightuprightbxd + uplightrightheavybxd + upheavyrightlightbxd + heavyuprightbxd + lightupleftbxd + uplightleftheavybxd + upheavyleftlightbxd + heavyupleftbxd + lightvertrightbxd + vertlightrightheavybxd + upheavyrightdnlightbxd + dnheavyrightuplightbxd + vertheavyrightlightbxd + dnlightrightupheavybxd + uplightrightdnheavybxd + heavyvertrightbxd + lightvertleftbxd + vertlightleftheavybxd + upheavyleftdnlightbxd + dnheavyleftuplightbxd + vertheavyleftlightbxd + dnlightleftupheavybxd + uplightleftdnheavybxd + heavyvertleftbxd + lightdnhorzbxd + leftheavyrightdnlightbxd + rightheavyleftdnlightbxd + dnlighthorzheavybxd + dnheavyhorzlightbxd + rightlightleftdnheavybxd + leftlightrightdnheavybxd + heavydnhorzbxd + lightuphorzbxd + leftheavyrightuplightbxd + rightheavyleftuplightbxd + uplighthorzheavybxd + upheavyhorzlightbxd + rightlightleftupheavybxd + leftlightrightupheavybxd + heavyuphorzbxd + lightverthorzbxd + leftheavyrightvertlightbxd + rightheavyleftvertlightbxd + vertlighthorzheavybxd + upheavydnhorzlightbxd + dnheavyuphorzlightbxd + vertheavyhorzlightbxd + leftupheavyrightdnlightbxd + rightupheavyleftdnlightbxd + leftdnheavyrightuplightbxd + rightdnheavyleftuplightbxd + dnlightuphorzheavybxd + uplightdnhorzheavybxd + rightlightleftvertheavybxd + leftlightrightvertheavybxd + heavyverthorzbxd + lightdbldashhorzbxd + heavydbldashhorzbxd + lightdbldashvertbxd + heavydbldashvertbxd + dblhorzbxd + dblvertbxd + dnsngrightdblbxd + dndblrightsngbxd + dbldnrightbxd + dnsngleftdblbxd + dndblleftsngbxd + dbldnleftbxd + upsngrightdblbxd + updblrightsngbxd + dbluprightbxd + upsngleftdblbxd + updblleftsngbxd + dblupleftbxd + vertsngrightdblbxd + vertdblrightsngbxd + dblvertrightbxd + vertsngleftdblbxd + vertdblleftsngbxd + dblvertleftbxd + dnsnghorzdblbxd + dndblhorzsngbxd + dbldnhorzbxd + upsnghorzdblbxd + updblhorzsngbxd + dbluphorzbxd + vertsnghorzdblbxd + vertdblhorzsngbxd + dblverthorzbxd + lightarcdnrightbxd + lightarcdnleftbxd + lightarcupleftbxd + lightarcuprightbxd + lightdiaguprightdnleftbxd + lightdiagupleftdnrightbxd + lightdiagcrossbxd + lightleftbxd + lightupbxd + lightrightbxd + lightdnbxd + heavyleftbxd + heavyupbxd + heavyrightbxd + heavydnbxd + lightleftheavyrightbxd + lightupheavydnbxd + heavyleftlightrightbxd + heavyuplightdnbxd + uphalfblock + dneighthblock + dnquarterblock + dnthreeeighthsblock + dnhalfblock + dnfiveeighthsblock + dnthreequartersblock + dnseveneighthsblock + fullblock + leftseveneighthsblock + leftthreequartersblock + leftfiveeighthsblock + lefthalfblock + leftthreeeighthsblock + leftquarterblock + lefteighthblock + righthalfblock + lightshade + mediumshade + darkshade + upeighthblock + righteighthblock + dnleftquadrant + dnrightquadrant + upleftquadrant + upleftdnleftdnrightquadrant + upleftdnrightquadrant + upleftuprightdnleftquadrant + upleftuprightdnrightquadrant + uprightquadrant + uprightdnleftquadrant + uprightdnleftdnrightquadrant + ligspacer + equal.start + equal.middle + equal.end + hyphen.start + hyphen.middle + hyphen.end + underscore.start + underscore.middle + underscore.end + numbersign.start + numbersign.middle + numbersign.end + period_equal.liga + period_period_equal.liga + period_hyphen.liga + colon_equal.liga + equal_equal.liga + exclam_equal.liga + equal_equal_equal.liga + exclam_equal_equal.liga + less_hyphen_less.liga + less_less_hyphen.liga + less_hyphen.liga + less_hyphen_greater.liga + hyphen_greater.liga + hyphen_greater_greater.liga + greater_hyphen_greater.liga + less_equal_less.liga + less_less_equal.liga + less_equal_greater.liga + equal_greater.liga + less_equal.liga + equal_greater_greater.liga + greater_equal_greater.liga + greater_equal.liga + greater_greater_equal.liga + greater_greater_hyphen.liga + greater_hyphen.liga + less_asciitilde_greater.liga + hyphen_less.liga + hyphen_less_less.liga + equal_less.liga + equal_less_less.liga + less_asciitilde_asciitilde.liga + less_asciitilde.liga + asciitilde_asciitilde.liga + asciitilde_greater.liga + asciitilde_asciitilde_greater + less_exclam_hyphen_hyphen.liga + slash_equal.liga + hyphen_bar.liga + bar_hyphen.liga + bar_equal.liga + hyphen_bar_bar.liga + bar_bar_hyphen.liga + equal_bar_bar.liga + bar_bar_equal.liga + equal_bar.liga + slash_slash_equal.liga + equal_slash.liga + equal_slash_slash.liga + equal_colon_equal.middle + equal_exclam_equal.middle + underscore_bar_underscore.m + hyphen_bar_hyphen.middle + equal_bar_equal.middle + hyphen_greater_hyphen.middle + hyphen_greater_greater_hyphen.m + equal_slash_slash_equal.middle + equal_slash_equal.middle + hyphen_bar_bar_hyphen.middle + equal_bar_bar_equal.middle + hyphen_less_hyphen.middle + hyphen_less_less_hyphen.middle + equal_greater_equal.middle + equal_less_equal.middle + equal_greater_greater_equal.m + equal_less_less_equal.middle + less_hyphen.start + greater_hyphen.start + bar_hyphen.start + less_equal.start + greater_equal.start + bar_equal.start + slash_equal.start + slash_slash_equal.start + less_less_hyphen.start + greater_greater_hyphen.start + bar_bar_hyphen.start + less_less_equal.start + greater_greater_equal.start + bar_bar_equal.start + hyphen_less.end + hyphen_greater.end + hyphen_bar.end + equal_less.end + equal_greater.end + equal_bar.end + hyphen_less_less.end + hyphen_greater_greater.end + hyphen_bar_bar.end + equal_less_less.end + equal_greater_greater.end + equal_bar_bar.end + equal_slash.end + equal_slash_slash.end + less_less_less.liga + less_less.liga + less_equal + less_greater.liga + greater_equal + greater_greater.liga + greater_greater_greater.liga + braceleft_bar.liga + bracketleft_bar.liga + less_colon.liga + colon_less.liga + greater_colon.liga + colon_greater.liga + bar_braceright.liga + bar_bracketright.liga + less_bar_bar_bar.liga + less_bar_bar.liga + less_bar.liga + less_bar_greater.liga + bar_greater.liga + bar_bar_greater.liga + bar_bar_bar_greater.liga + less_dollar.liga + less_dollar_greater.liga + dollar_greater.liga + less_plus.liga + less_plus_greater.liga + plus_greater.liga + less_asterisk.liga + less_asterisk_greater.liga + asterisk_greater.liga + slash_asterisk.liga + asterisk_slash.liga + slash_slash_slash.liga + slash_slash.liga + less_slash.liga + less_slash_greater.liga + slash_greater.liga + semicolon_semicolon.liga + colon_colon.liga + colon_colon_colon.liga + period_period.liga + period_period_period.liga + period_period_less.liga + exclam_exclam.liga + question_question.liga + percent_percent.liga + ampersand_ampersand.liga + bar_bar.liga + question_period.liga + question_colon.liga + plus_plus.liga + plus_plus_plus.liga + hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga + asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga + equal_asciitilde.liga + exclam_asciitilde.liga + asciitilde_hyphen.liga + w_w_w.liga + hyphen_asciitilde.liga + asciitilde_at.liga + asciicircum_equal.liga + question_equal.liga + numbersign_exclam.liga + numbersign_equal.liga + numbersign_colon.liga + numbersign_braceleft.liga + numbersign_bracketleft.liga + bracketright_numbersign.liga + numbersign_parenleft.liga + numbersign_question.liga + numbersign_underscore.liga + numbersign_underscore_parenleft + backslash_slash.liga + bar_bar_bar.liga + colon_colon_equal.liga + exclam_exclam_period.liga + period_question.liga + slash_backslash.liga + uniE0A0 + uniE0A1 + uniE0A2 + uniE0B0 + uniE0B1 + uniE0B2 + uniE0B3 + uni2610 + uni2611 + uni2612 + uni2713 public.postscriptNames diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/features.fea b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/features.fea index 237879b6..d5380bdf 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/features.fea +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/features.fea @@ -1,368 +1,6 @@ -# ---------------------------- -# INTEL ONE MONO OPENTYPE CODE -# ---------------------------- -# ---------------- -# Language Systems -# ---------------- +include(../../features/shared.fea); -languagesystem DFLT dflt; -languagesystem latn dflt; -languagesystem latn TRK; -languagesystem latn AZE; -languagesystem latn CRT; -languagesystem latn CAT; +include(../../features/mark/IntelOneMono-LightItalic mark.fea); - -# ------- -# Classes -# ------- - -# Base Letters -@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; -@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; - -# Figures -@fig = [zero one two three four five six seven eight nine]; -@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; -@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; -@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; -@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; - -# Marks Above -@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; -@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; - -# Marks Below -@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; - - -# --------------- -# Localized Forms -# --------------- - -feature locl { - script latn; - language TRK; - lookup iTurkish { - sub i by idotaccent; - } iTurkish; - language AZE; - lookup iTurkish; - language CRT; - lookup iTurkish; - language CAT; - sub l periodcentered' l by middotcat; - sub L periodcentered' L by middotcat.cap; - # try fusing them - sub L middotcat.cap by L.dot; - sub L middotcat by L.dot; - sub l middotcat by l.dot; -} locl; - - -# --------------------------------- -# Glyph Composition / Decomposition -# --------------------------------- - -feature ccmp { - - # Decompose unicode lowercase characters whose uppercase counterparts have no unicode. - lookup Decomp { - sub hlinebelow by h macronlowmod; - sub jcaron by j caron; - } Decomp; - - # Replace double above accents by combined drawings. - lookup DblMarks { - sub dieresiscmb acutecmb by dieresisacute; - sub dieresiscmb gravecmb by dieresisgrave; - sub dieresiscmb caroncmb by dieresiscaron; - sub dieresiscmb macroncmb by dieresismacron; - sub brevecmb acutecmb by breveacute; - sub brevecmb gravecmb by brevegrave; - sub brevecmb hookcmb by brevehook; - sub brevecmb tildecmb by brevetilde; - sub circumflexcmb acutecmb by circumflexacute; - sub circumflexcmb gravecmb by circumflexgrave; - sub circumflexcmb hookcmb by circumflexhook; - sub circumflexcmb tildecmb by circumflextilde; - # capital forms - sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; - sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; - sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; - sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; - sub brevecmb.cap acutecmb.cap by breveacute.cap; - sub brevecmb.cap gravecmb.cap by brevegrave.cap; - sub brevecmb.cap hookcmb.cap by brevehook.cap; - sub brevecmb.cap tildecmb.cap by brevetilde.cap; - sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; - sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; - sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; - sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; - } DblMarks; - - # Replace combining marks that follow a uppercase letter by their uppercase form - lookup CapitalMarks { - sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; - sub [@ltrUC] [@lcMarks]' by [@ucMarks]; - } CapitalMarks; - - # Replace letters with dotless counterparts when followed by a combining mark - lookup Dotless { - sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; - sub [i j]' [@lcMarks] by [dotlessi dotlessj]; - } Dotless; - - # Replace e ogonek with pre-drawn eogonek - lookup eogonek { - sub e ogonekcmb by eogonek; - } eogonek; - -} ccmp; - - -# ---------- -# Numerators -# ---------- - -feature numr { - sub @fig by @figNum; -} numr; - -# ------------ -# Denominators -# ------------ - -feature dnom { - sub @fig by @figDen; -} dnom; - -# ----------- -# Superscript -# ----------- - -feature sups { - sub @fig by @figSup; -} sups; - -# --------------------- -# Subscript & Inferiors -# --------------------- - -feature subs { - sub @fig by @figInf; -} subs; - -feature sinf { - sub @fig by @figInf; -} sinf; - - -# --------------------- -# Contextual Alternates -# --------------------- - -feature calt { - # shifts colon to align with math symbols when used together - - sub colon' [plus equal greater less hyphen] by colon.fig; - sub [plus equal less greater hyphen] colon' by colon.fig; - - sub colon' [colon colon.fig] by colon.fig; - sub colon.fig colon' by colon.fig; - -} calt; - - -# -------------- -# Stylistic Sets -# -------------- - -feature ss11 { - featureNames { - name "Raised Colon (Figures Only)"; # Windows English - name 1 0 0 "Raised Colon (Figures Only)"; # Mac English - }; - lookup FigureColonContextual { - sub @fig colon' @fig by colon.fig; - } FigureColonContextual; -} ss11; - -feature ss12 { - featureNames { - name "Raised Colon (Global)"; # Windows English - name 1 0 0 "Raised Colon (Global)"; # Mac English - }; - lookup FigureColon { - sub colon by colon.fig; - } FigureColon; -} ss12; - - -# -------------------- -# Stylistic Alternates -# -------------------- - -feature salt { - lookup FigureColon; # SS12 -} salt; - - -# --------------------------------------------------------------------- -# MARK | Generated: November 23, 2022 - 02:37:54 PM by 'markFeature.py' -# --------------------------------------------------------------------- - -markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; -markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; -markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; -markClass [cedillacmb] @mark_belowcedilla; -markClass [ogonekcmb] @mark_belowogonek; - -feature mark { - - lookup aboveLC{ - pos base [a] mark @mark_aboveLC; - pos base [c] mark @mark_aboveLC; - pos base [dotlessi] mark @mark_aboveLC; - pos base [dotlessj] mark @mark_aboveLC; - pos base [e] mark @mark_aboveLC; - pos base [eogonek] mark @mark_aboveLC; - pos base [g] mark @mark_aboveLC; - pos base [m] mark @mark_aboveLC; - pos base [n] mark @mark_aboveLC; - pos base [o] mark @mark_aboveLC; - pos base [p] mark @mark_aboveLC; - pos base [s] mark @mark_aboveLC; - pos base [u] mark @mark_aboveLC; - pos base [z] mark @mark_aboveLC; - } aboveLC; - - lookup aboveUC{ - pos base [A] mark @mark_aboveUC; - pos base [C] mark @mark_aboveUC; - pos base [E] mark @mark_aboveUC; - pos base [Eogonek] mark @mark_aboveUC; - pos base [G] mark @mark_aboveUC; - pos base [I] mark @mark_aboveUC; - pos base [J] mark @mark_aboveUC; - pos base [M] mark @mark_aboveUC; - pos base [N] mark @mark_aboveUC; - pos base [O] mark @mark_aboveUC; - pos base [P] mark @mark_aboveUC; - pos base [S] mark @mark_aboveUC; - pos base [U] mark @mark_aboveUC; - pos base [Z] mark @mark_aboveUC; - } aboveUC; - - lookup below{ - pos base [C] mark @mark_below; - pos base [Dcroat] mark @mark_below; - pos base [E] mark @mark_below; - pos base [H] mark @mark_below; - pos base [I] mark @mark_below; - pos base [O] mark @mark_below; - pos base [S] mark @mark_below; - pos base [U] mark @mark_below; - pos base [X] mark @mark_below; - pos base [Z] mark @mark_below; - pos base [c] mark @mark_below; - pos base [dcroat] mark @mark_below; - pos base [dotlessi] mark @mark_below; - pos base [e] mark @mark_below; - pos base [h] mark @mark_below; - pos base [o] mark @mark_below; - pos base [s] mark @mark_below; - pos base [u] mark @mark_below; - pos base [x] mark @mark_below; - pos base [z] mark @mark_below; - } below; - - lookup belowcedilla{ - pos base [Z] mark @mark_belowcedilla; - pos base [z] mark @mark_belowcedilla; - } belowcedilla; - - lookup belowogonek{ - pos base [A] mark @mark_belowogonek; - pos base [E] mark @mark_belowogonek; - pos base [I] mark @mark_belowogonek; - pos base [O] mark @mark_belowogonek; - pos base [U] mark @mark_belowogonek; - pos base [a] mark @mark_belowogonek; - pos base [dotlessi] mark @mark_belowogonek; - pos base [e] mark @mark_belowogonek; - pos base [o] mark @mark_belowogonek; - pos base [u] mark @mark_belowogonek; - } belowogonek; - -} mark; - -@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; -@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; - -table GDEF { - GlyphClassDef @BASES,,@MARKS,; -} GDEF; - - -# -------------- -# All Alternates -# -------------- - -feature aalt { - sub germandbls from [germandbls uni1E9E]; - sub uni1E9E from [uni1E9E germandbls]; - sub colon from [colon colon.fig]; - sub colon.fig from [colon.fig colon]; - sub eight from [eight eight.den eight.sup eight.num eight.inf]; - sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; - sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; - sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; - sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; - sub five from [five five.inf five.num five.den five.sup]; - sub five.sup from [five.sup five five.inf five.num five.den]; - sub five.den from [five.den five.sup five five.inf five.num]; - sub five.num from [five.num five.den five.sup five five.inf]; - sub five.inf from [five.inf five.num five.den five.sup five]; - sub four from [four four.sup four.num four.den four.inf]; - sub four.inf from [four.inf four four.sup four.num four.den]; - sub four.den from [four.den four.inf four four.sup four.num]; - sub four.num from [four.num four.den four.inf four four.sup]; - sub four.sup from [four.sup four.num four.den four.inf four]; - sub nine from [nine nine.den nine.inf nine.num nine.sup]; - sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; - sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; - sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; - sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; - sub one from [one one.den one.num one.inf one.sup]; - sub one.sup from [one.sup one one.den one.num one.inf]; - sub one.inf from [one.inf one.sup one one.den one.num]; - sub one.num from [one.num one.inf one.sup one one.den]; - sub one.den from [one.den one.num one.inf one.sup one]; - sub seven from [seven seven.inf seven.num seven.sup seven.den]; - sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; - sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; - sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; - sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; - sub six from [six six.num six.sup six.den six.inf]; - sub six.inf from [six.inf six six.num six.sup six.den]; - sub six.den from [six.den six.inf six six.num six.sup]; - sub six.sup from [six.sup six.den six.inf six six.num]; - sub six.num from [six.num six.sup six.den six.inf six]; - sub three from [three three.inf three.den three.num three.sup]; - sub three.sup from [three.sup three three.inf three.den three.num]; - sub three.num from [three.num three.sup three three.inf three.den]; - sub three.den from [three.den three.num three.sup three three.inf]; - sub three.inf from [three.inf three.den three.num three.sup three]; - sub two from [two two.inf two.sup two.num two.den]; - sub two.den from [two.den two two.inf two.sup two.num]; - sub two.num from [two.num two.den two two.inf two.sup]; - sub two.sup from [two.sup two.num two.den two two.inf]; - sub two.inf from [two.inf two.sup two.num two.den two]; - sub zero from [zero zero.sup zero.num zero.den zero.inf]; - sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; - sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; - sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; - sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; -} aalt; +include(../../features/aalt.fea); diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/fontinfo.plist b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/fontinfo.plist index fb88b3a5..5b07868e 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/fontinfo.plist +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/fontinfo.plist @@ -7,7 +7,7 @@ capHeight 655 copyright - Copyright 2023 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) descender -260 familyName @@ -57,7 +57,7 @@ platformID 1 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -69,7 +69,7 @@ platformID 3 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -402,7 +402,7 @@ versionMajor 1 versionMinor - 3 + 4 xHeight 460 diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/L_.dot.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/L_.dot.glif index 6724e835..dcf66a6b 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/L_.dot.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/L_.dot.glif @@ -5,7 +5,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_breve.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_breve.glif index a936d3b1..46839978 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_breve.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_breve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_caron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_caron.glif index c68d6ffc..0e351ec9 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_caron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflex.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflex.glif index 44364fc5..315e124d 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexacute.glif index 49dfe899..4294d22b 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexdotbelow.glif index c8a072c0..f6ec7865 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexgrave.glif index 0dafec85..f54794c1 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexhookabove.glif index ebf1defd..1a206eb2 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflextilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflextilde.glif index 9d54e5b9..b0fdf4a8 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_circumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_dieresis.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_dieresis.glif index e7a708a5..d187f4c6 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_dotaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_dotaccent.glif index 94e56dfb..9b93a997 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_dotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_dotbelow.glif index 5a5b1e4a..38d740fc 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_hookabove.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_hookabove.glif index 80284722..2b6c36ee 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_horn.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_horn.glif index 290a1b7d..4309604a 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_horn.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_horn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_hornacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_hornacute.glif index 6eb63fd8..cc82a681 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_hornacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_hornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_horndotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_horndotbelow.glif index 8f67b60f..16d87c21 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_horndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_horndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_horngrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_horngrave.glif index 8e245dda..0ea02943 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_horngrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_horngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_hornhookabove.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_hornhookabove.glif index eef1fe20..909c5b45 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_hornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_hornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_horntilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_horntilde.glif index 91617e0f..3eaa05f5 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_horntilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_horntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_macron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_macron.glif index 92382eee..edb3db83 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_macron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_tilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_tilde.glif index d23bc27c..bdef7524 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/O_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_.glif index 597af503..f0b38128 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_acute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_acute.glif index 8f87330a..a156def6 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_acute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_caron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_caron.glif index 2772f14c..45ee6617 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_caron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_commaaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_commaaccent.glif index 2a8b1b0c..60bbae27 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_dotaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_dotaccent.glif index dca75737..76c8d757 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_dotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_dotbelow.glif index 36188b90..93636b85 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_linebelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_linebelow.glif index bca08943..94ecf9e8 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_macrondotbelow.glif index dee30662..aca89e2c 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_macrondotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/R_macrondotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_.glif index 8c185286..3d86b093 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_acute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_acute.glif index 3f3f6def..c353de86 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_acute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_caron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_caron.glif index a0c28976..fec81152 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_caron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_circumflex.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_circumflex.glif index eafed002..aa19cc55 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_commaaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_commaaccent.glif index 617b294a..d741e037 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_dotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_dotbelow.glif index 2d7a7bcd..5d00bc07 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/S_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/T_caron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/T_caron.glif index 92ee2f6f..f9fdaec5 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/T_caron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/T_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/T_circumflexbelow.glif index db05f78c..2d1216cd 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/T_circumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/T_circumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/T_commaaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/T_commaaccent.glif index 1a9a8eac..9267d88a 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/T_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/T_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/T_dotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/T_dotbelow.glif index f724e73e..6a58e51c 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/T_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/T_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/T_linebelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/T_linebelow.glif index 60e28a63..3d2667c5 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/T_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/T_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_acute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_acute.glif index 0e864ae6..559c98f1 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_acute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_breve.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_breve.glif index 0737c67b..1fca1b9a 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_breve.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_breve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_caron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_caron.glif index 3d07b78e..7a0b3cd6 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_caron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_circumflex.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_circumflex.glif index ca6250bc..56808f64 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dieresis.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dieresis.glif index 90fdbd07..c558bf10 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dieresisacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dieresisacute.glif index f02c4dd4..e5cbbe3c 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dieresisacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dieresisacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dieresiscaron.glif index dd6e65f6..dc2ff1ac 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dieresiscaron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dieresiscaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dieresisgrave.glif index 8923d6b3..b227a449 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dieresisgrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dieresisgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dieresismacron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dieresismacron.glif index 402a3184..3d8c49b3 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dieresismacron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dieresismacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dotbelow.glif index 82edfbb5..e5734611 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_grave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_grave.glif index 473b6200..b70eee33 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_grave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_hookabove.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_hookabove.glif index b863d430..57be8c61 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_horn.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_horn.glif index a5c40ff6..0cb1e7fc 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_horn.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_horn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_hornacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_hornacute.glif index bcfa3849..c92a5573 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_hornacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_hornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_horndotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_horndotbelow.glif index 1b3ca83b..261148a5 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_horndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_horndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_horngrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_horngrave.glif index 5a39e1bb..f8844811 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_horngrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_horngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_hornhookabove.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_hornhookabove.glif index 7f877d1c..e91c29d4 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_hornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_hornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_horntilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_horntilde.glif index b8cfe8f7..a348994a 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_horntilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_horntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_hungarumlaut.glif index 8e6b258f..f97071b4 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_hungarumlaut.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_hungarumlaut.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_macron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_macron.glif index 44534a2b..f40fd627 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_macron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_ring.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_ring.glif index f697668b..acecf09a 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_ring.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_ring.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_tilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_tilde.glif index 756b63b8..7a348d5c 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/U_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/V_dotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/V_dotbelow.glif index b132b4a9..27ada561 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/V_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/V_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/W_acute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/W_acute.glif index 0ac9810f..72c69526 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/W_acute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/W_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/W_circumflex.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/W_circumflex.glif index ccd6c067..0593fed6 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/W_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/W_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/W_dieresis.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/W_dieresis.glif index 3c58443f..a513fa2d 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/W_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/W_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/W_grave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/W_grave.glif index 62fb5f65..d25a854b 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/W_grave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/W_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/X_dieresis.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/X_dieresis.glif index 7cd8fc67..812f5e70 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/X_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/X_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_acute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_acute.glif index 0c347749..db378680 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_acute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_circumflex.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_circumflex.glif index c199841b..752da153 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_dieresis.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_dieresis.glif index 79de0798..8da43ce5 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_dotaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_dotaccent.glif index 209da0ee..cc0436a0 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_dotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_dotbelow.glif index 300d3b8c..b0c7e405 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_grave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_grave.glif index 4a04a1cf..9d870af4 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_grave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_hookabove.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_hookabove.glif index e4a4bcd2..f2f93c9a 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_macron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_macron.glif index 5dbcfc0e..ba4b25d8 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_macron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_tilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_tilde.glif index 373328d8..ff896e22 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Y_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_acute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_acute.glif index e2c56fa9..2b3a535d 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_acute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_caron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_caron.glif index 547d71a4..12b6cf12 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_caron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_circumflex.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_circumflex.glif index 7a5daaf3..4ac0cd6f 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_dotaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_dotaccent.glif index d3ffce2e..bd30fee0 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_dotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_dotbelow.glif index e6d9cc69..5ccec17e 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_linebelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_linebelow.glif index d7d3a069..182e20f4 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/Z_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/aacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/aacute.glif index e6719038..f9b7fadf 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/aacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/aacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abreve.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abreve.glif index 80cf7905..28b46a85 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abreve.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abreveacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abreveacute.glif index 4c127ad2..e1913fa0 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abreveacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abreveacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abrevedotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abrevedotbelow.glif index 8954d05e..6a9c8fd1 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abrevedotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abrevedotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abrevegrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abrevegrave.glif index 2b3b2ac7..353963ba 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abrevegrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abrevegrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abrevehookabove.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abrevehookabove.glif index 6ed78c03..7af41271 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abrevehookabove.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abrevehookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abrevetilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abrevetilde.glif index a09dc44d..ba2244ba 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abrevetilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/abrevetilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acaron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acaron.glif index 010cd4e6..4507e0fc 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acaron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflex.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflex.glif index 9533b2f2..c2160b9e 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflexacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflexacute.glif index bf8b7bea..686d9251 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflexdotbelow.glif index d777fc97..526b71ba 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflexgrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflexgrave.glif index 2d9ed438..e6e731d4 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflexhookabove.glif index 6badd23b..6e448630 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflextilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflextilde.glif index be1dee39..521966d6 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acircumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acutecmb.cap.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acutecmb.cap.glif index 1c64bd30..678db015 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acutecmb.cap.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/acutecmb.cap.glif @@ -1,6 +1,5 @@ - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/adieresis.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/adieresis.glif index ce1439ab..86719b0f 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/adieresis.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/adieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/adotaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/adotaccent.glif index 15794029..35902a19 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/adotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/adotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/adotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/adotbelow.glif index de530027..3d390b21 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/adotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/adotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/agrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/agrave.glif index 7f814138..1e792d31 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/agrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/agrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ahookabove.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ahookabove.glif index 991708fa..0184549e 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ahookabove.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ahookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/amacron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/amacron.glif index af4ea301..d52e79bc 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/amacron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/amacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ampersand_ampersand.liga.glif new file mode 100644 index 00000000..0c6ac637 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ampersand_ampersand.liga.glif @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/aring.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/aring.glif index e74445da..fb7e5e32 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/aring.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/aring.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asciicircum_equal.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asciicircum_equal.liga.glif new file mode 100644 index 00000000..4c200b55 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asciicircum_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..4688f6c9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_asciitilde_greater.glif new file mode 100644 index 00000000..eafc7471 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_asciitilde_greater.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_at.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_at.liga.glif new file mode 100644 index 00000000..0bfc69f6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_at.liga.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_greater.liga.glif new file mode 100644 index 00000000..284ea4db --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_greater.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_hyphen.liga.glif new file mode 100644 index 00000000..3c7fb8db --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_hyphen.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asterisk.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asterisk.glif index e1030727..43b5b559 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asterisk.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asterisk.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asterisk_asterisk.liga.glif new file mode 100644 index 00000000..fa994cdc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asterisk_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif new file mode 100644 index 00000000..b73033c9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asterisk_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asterisk_greater.liga.glif new file mode 100644 index 00000000..4161bf75 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asterisk_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asterisk_slash.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asterisk_slash.liga.glif new file mode 100644 index 00000000..82b419d8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/asterisk_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/at.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/at.glif index 4aeb6372..3e0da381 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/at.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/at.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/atilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/atilde.glif index dd611bca..c3c031c6 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/atilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/atilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/backslash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/backslash_slash.liga.glif new file mode 100644 index 00000000..7a092352 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/backslash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar.liga.glif new file mode 100644 index 00000000..6e09a289 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_bar.liga.glif new file mode 100644 index 00000000..dc1b5564 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_bar.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif new file mode 100644 index 00000000..3f38d60e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_equal.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_equal.liga.glif new file mode 100644 index 00000000..d4a8d0dd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_equal.start.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_equal.start.glif new file mode 100644 index 00000000..3a4b40c5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_greater.liga.glif new file mode 100644 index 00000000..320051af --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_greater.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_hyphen.liga.glif new file mode 100644 index 00000000..d3a18ba3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_hyphen.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_hyphen.start.glif new file mode 100644 index 00000000..46c65394 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_hyphen.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_braceright.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_braceright.liga.glif new file mode 100644 index 00000000..e2958789 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_braceright.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bracketright.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bracketright.liga.glif new file mode 100644 index 00000000..642a50e8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_bracketright.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_equal.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_equal.liga.glif new file mode 100644 index 00000000..e703b8d3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_equal.start.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_equal.start.glif new file mode 100644 index 00000000..d9cc028e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_greater.liga.glif new file mode 100644 index 00000000..fa3347cc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_hyphen.liga.glif new file mode 100644 index 00000000..8fb3ba9a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_hyphen.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_hyphen.start.glif new file mode 100644 index 00000000..78eea1f9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bar_hyphen.start.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/blinebelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/blinebelow.glif index 46ee2297..c3df309a 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/blinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/blinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/braceleft.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/braceleft.glif index 6ac38e35..79cafe97 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/braceleft.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/braceleft.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/braceleft_bar.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/braceleft_bar.liga.glif new file mode 100644 index 00000000..dc26d5cf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/braceleft_bar.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bracketleft_bar.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bracketleft_bar.liga.glif new file mode 100644 index 00000000..ae3da73a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bracketleft_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bracketright_numbersign.liga.glif new file mode 100644 index 00000000..1ff6d99e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/bracketright_numbersign.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/breveacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/breveacute.glif index 0e7050be..c36a3577 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/breveacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/breveacute.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/brevegrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/brevegrave.glif index 867b8709..d088ceb1 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/brevegrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/brevegrave.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/brevehook.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/brevehook.glif index 71d319da..433065bf 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/brevehook.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/brevehook.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/brevetilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/brevetilde.glif index 9b9933d1..889fb8d7 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/brevetilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/brevetilde.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/cacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/cacute.glif index 7e3c1891..b06af57e 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/cacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/cacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ccaron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ccaron.glif index 78660145..ffa70a70 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ccaron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ccaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ccircumflex.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ccircumflex.glif index 12776ced..c2aee288 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ccircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ccircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/cdotaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/cdotaccent.glif index 1023c729..2057ccfd 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/cdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/cdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/circumflexacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/circumflexacute.glif index 92b174db..ef1b74ee 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/circumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/circumflexacute.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/circumflexgrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/circumflexgrave.glif index d88294b6..37b968fe 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/circumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/circumflexgrave.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/circumflexhook.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/circumflexhook.glif index ff8f473e..08fc1a7d 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/circumflexhook.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/circumflexhook.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/circumflextilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/circumflextilde.glif index da694c23..2c0048b9 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/circumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/circumflextilde.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/colon_colon.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/colon_colon.liga.glif new file mode 100644 index 00000000..f92822aa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/colon_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/colon_colon_colon.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/colon_colon_colon.liga.glif new file mode 100644 index 00000000..b91d9647 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/colon_colon_colon.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/colon_colon_equal.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/colon_colon_equal.liga.glif new file mode 100644 index 00000000..16e8771f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/colon_colon_equal.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/colon_equal.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/colon_equal.liga.glif new file mode 100644 index 00000000..e4f622a4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/colon_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/colon_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/colon_greater.liga.glif new file mode 100644 index 00000000..969bf645 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/colon_greater.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/colon_less.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/colon_less.liga.glif new file mode 100644 index 00000000..7bfb9018 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/colon_less.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/commaturnedabovecmb.glif index 0abe6c00..5fe02176 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/commaturnedabovecmb.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/commaturnedabovecmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/contents.plist b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/contents.plist index 9b3fa25c..10a2ded8 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/contents.plist +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/contents.plist @@ -498,6 +498,8 @@ amacron.glif ampersand ampersand.glif + ampersand_ampersand.liga + ampersand_ampersand.liga.glif aogonek aogonek.glif apostrophemod @@ -508,10 +510,30 @@ aring.glif asciicircum asciicircum.glif + asciicircum_equal.liga + asciicircum_equal.liga.glif asciitilde asciitilde.glif + asciitilde_asciitilde.liga + asciitilde_asciitilde.liga.glif + asciitilde_asciitilde_greater + asciitilde_asciitilde_greater.glif + asciitilde_at.liga + asciitilde_at.liga.glif + asciitilde_greater.liga + asciitilde_greater.liga.glif + asciitilde_hyphen.liga + asciitilde_hyphen.liga.glif asterisk asterisk.glif + asterisk_asterisk.liga + asterisk_asterisk.liga.glif + asterisk_asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga.glif + asterisk_greater.liga + asterisk_greater.liga.glif + asterisk_slash.liga + asterisk_slash.liga.glif at at.glif atilde @@ -520,20 +542,58 @@ b.glif backslash backslash.glif + backslash_slash.liga + backslash_slash.liga.glif bahtthai bahtthai.glif bar bar.glif + bar_bar.liga + bar_bar.liga.glif + bar_bar_bar.liga + bar_bar_bar.liga.glif + bar_bar_bar_greater.liga + bar_bar_bar_greater.liga.glif + bar_bar_equal.liga + bar_bar_equal.liga.glif + bar_bar_equal.start + bar_bar_equal.start.glif + bar_bar_greater.liga + bar_bar_greater.liga.glif + bar_bar_hyphen.liga + bar_bar_hyphen.liga.glif + bar_bar_hyphen.start + bar_bar_hyphen.start.glif + bar_braceright.liga + bar_braceright.liga.glif + bar_bracketright.liga + bar_bracketright.liga.glif + bar_equal.liga + bar_equal.liga.glif + bar_equal.start + bar_equal.start.glif + bar_greater.liga + bar_greater.liga.glif + bar_hyphen.liga + bar_hyphen.liga.glif + bar_hyphen.start + bar_hyphen.start.glif blinebelow blinebelow.glif braceleft braceleft.glif + braceleft_bar.liga + braceleft_bar.liga.glif braceright braceright.glif bracketleft bracketleft.glif + bracketleft_bar.liga + bracketleft_bar.liga.glif bracketright bracketright.glif + bracketright_numbersign.liga + bracketright_numbersign.liga.glif breve breve.glif breveacute @@ -612,6 +672,18 @@ colon.glif colon.fig colon.fig.glif + colon_colon.liga + colon_colon.liga.glif + colon_colon_colon.liga + colon_colon_colon.liga.glif + colon_colon_equal.liga + colon_colon_equal.liga.glif + colon_equal.liga + colon_equal.liga.glif + colon_greater.liga + colon_greater.liga.glif + colon_less.liga + colon_less.liga.glif comma comma.glif commaaboverightcmb @@ -628,8 +700,32 @@ dagger.glif daggerdbl daggerdbl.glif + darkshade + darkshade.glif + dbldnhorzbxd + dbldnhorzbxd.glif + dbldnleftbxd + dbldnleftbxd.glif + dbldnrightbxd + dbldnrightbxd.glif + dblhorzbxd + dblhorzbxd.glif dblprimemod dblprimemod.glif + dbluphorzbxd + dbluphorzbxd.glif + dblupleftbxd + dblupleftbxd.glif + dbluprightbxd + dbluprightbxd.glif + dblvertbxd + dblvertbxd.glif + dblverthorzbxd + dblverthorzbxd.glif + dblvertleftbxd + dblvertleftbxd.glif + dblvertrightbxd + dblvertrightbxd.glif dcaron dcaron.glif dcircumflexbelow @@ -668,8 +764,64 @@ divide.glif dlinebelow dlinebelow.glif + dndblhorzsngbxd + dndblhorzsngbxd.glif + dndblleftsngbxd + dndblleftsngbxd.glif + dndblrightsngbxd + dndblrightsngbxd.glif + dneighthblock + dneighthblock.glif + dnfiveeighthsblock + dnfiveeighthsblock.glif + dnhalfblock + dnhalfblock.glif + dnheavyhorzlightbxd + dnheavyhorzlightbxd.glif + dnheavyleftlightbxd + dnheavyleftlightbxd.glif + dnheavyleftuplightbxd + dnheavyleftuplightbxd.glif + dnheavyrightlightbxd + dnheavyrightlightbxd.glif + dnheavyrightuplightbxd + dnheavyrightuplightbxd.glif + dnheavyuphorzlightbxd + dnheavyuphorzlightbxd.glif + dnleftquadrant + dnleftquadrant.glif + dnlighthorzheavybxd + dnlighthorzheavybxd.glif + dnlightleftheavybxd + dnlightleftheavybxd.glif + dnlightleftupheavybxd + dnlightleftupheavybxd.glif + dnlightrightheavybxd + dnlightrightheavybxd.glif + dnlightrightupheavybxd + dnlightrightupheavybxd.glif + dnlightuphorzheavybxd + dnlightuphorzheavybxd.glif + dnquarterblock + dnquarterblock.glif + dnrightquadrant + dnrightquadrant.glif + dnseveneighthsblock + dnseveneighthsblock.glif + dnsnghorzdblbxd + dnsnghorzdblbxd.glif + dnsngleftdblbxd + dnsngleftdblbxd.glif + dnsngrightdblbxd + dnsngrightdblbxd.glif + dnthreeeighthsblock + dnthreeeighthsblock.glif + dnthreequartersblock + dnthreequartersblock.glif dollar dollar.glif + dollar_greater.liga + dollar_greater.liga.glif dong dong.glif dotaccent @@ -738,12 +890,86 @@ eogonek.glif equal equal.glif + equal.end + equal.end.glif + equal.middle + equal.middle.glif + equal.start + equal.start.glif + equal_asciitilde.liga + equal_asciitilde.liga.glif + equal_bar.end + equal_bar.end.glif + equal_bar.liga + equal_bar.liga.glif + equal_bar_bar.end + equal_bar_bar.end.glif + equal_bar_bar.liga + equal_bar_bar.liga.glif + equal_bar_bar_equal.middle + equal_bar_bar_equal.middle.glif + equal_bar_equal.middle + equal_bar_equal.middle.glif + equal_colon_equal.middle + equal_colon_equal.middle.glif + equal_equal.liga + equal_equal.liga.glif + equal_equal_equal.liga + equal_equal_equal.liga.glif + equal_exclam_equal.middle + equal_exclam_equal.middle.glif + equal_greater.end + equal_greater.end.glif + equal_greater.liga + equal_greater.liga.glif + equal_greater_equal.middle + equal_greater_equal.middle.glif + equal_greater_greater.end + equal_greater_greater.end.glif + equal_greater_greater.liga + equal_greater_greater.liga.glif + equal_greater_greater_equal.m + equal_greater_greater_equal.m.glif + equal_less.end + equal_less.end.glif + equal_less.liga + equal_less.liga.glif + equal_less_equal.middle + equal_less_equal.middle.glif + equal_less_less.end + equal_less_less.end.glif + equal_less_less.liga + equal_less_less.liga.glif + equal_less_less_equal.middle + equal_less_less_equal.middle.glif + equal_slash.end + equal_slash.end.glif + equal_slash.liga + equal_slash.liga.glif + equal_slash_equal.middle + equal_slash_equal.middle.glif + equal_slash_slash.end + equal_slash_slash.end.glif + equal_slash_slash.liga + equal_slash_slash.liga.glif + equal_slash_slash_equal.middle + equal_slash_slash_equal.middle.glif eth eth.glif etilde etilde.glif exclam exclam.glif + exclam_asciitilde.liga + exclam_asciitilde.liga.glif + exclam_equal.liga + exclam_equal.liga.glif + exclam_equal_equal.liga + exclam_equal_equal.liga.glif + exclam_exclam.liga + exclam_exclam.liga.glif + exclam_exclam_period.liga + exclam_exclam_period.liga.glif exclamdown exclamdown.glif f @@ -778,6 +1004,8 @@ fracbar.glif fraction fraction.glif + fullblock + fullblock.glif g g.glif gbreve @@ -802,6 +1030,34 @@ gravecmb.cap.glif greater greater.glif + greater_colon.liga + greater_colon.liga.glif + greater_equal + greater_equal.glif + greater_equal.liga + greater_equal.liga.glif + greater_equal.start + greater_equal.start.glif + greater_equal_greater.liga + greater_equal_greater.liga.glif + greater_greater.liga + greater_greater.liga.glif + greater_greater_equal.liga + greater_greater_equal.liga.glif + greater_greater_equal.start + greater_greater_equal.start.glif + greater_greater_greater.liga + greater_greater_greater.liga.glif + greater_greater_hyphen.liga + greater_greater_hyphen.liga.glif + greater_greater_hyphen.start + greater_greater_hyphen.start.glif + greater_hyphen.liga + greater_hyphen.liga.glif + greater_hyphen.start + greater_hyphen.start.glif + greater_hyphen_greater.liga + greater_hyphen_greater.liga.glif greaterequal greaterequal.glif guillemetleft @@ -824,6 +1080,52 @@ hcircumflex.glif hdotbelow hdotbelow.glif + heavydbldashhorzbxd + heavydbldashhorzbxd.glif + heavydbldashvertbxd + heavydbldashvertbxd.glif + heavydnbxd + heavydnbxd.glif + heavydnhorzbxd + heavydnhorzbxd.glif + heavydnleftbxd + heavydnleftbxd.glif + heavydnrightbxd + heavydnrightbxd.glif + heavyhorzbxd + heavyhorzbxd.glif + heavyleftbxd + heavyleftbxd.glif + heavyleftlightrightbxd + heavyleftlightrightbxd.glif + heavyquaddashhorzbxd + heavyquaddashhorzbxd.glif + heavyquaddashvertbxd + heavyquaddashvertbxd.glif + heavyrightbxd + heavyrightbxd.glif + heavytrpldashhorzbxd + heavytrpldashhorzbxd.glif + heavytrpldashvertbxd + heavytrpldashvertbxd.glif + heavyupbxd + heavyupbxd.glif + heavyuphorzbxd + heavyuphorzbxd.glif + heavyupleftbxd + heavyupleftbxd.glif + heavyuplightdnbxd + heavyuplightdnbxd.glif + heavyuprightbxd + heavyuprightbxd.glif + heavyvertbxd + heavyvertbxd.glif + heavyverthorzbxd + heavyverthorzbxd.glif + heavyvertleftbxd + heavyvertleftbxd.glif + heavyvertrightbxd + heavyvertrightbxd.glif hlinebelow hlinebelow.glif hookcmb @@ -840,6 +1142,54 @@ hungarumlautcmb.cap.glif hyphen hyphen.glif + hyphen.end + hyphen.end.glif + hyphen.middle + hyphen.middle.glif + hyphen.start + hyphen.start.glif + hyphen_asciitilde.liga + hyphen_asciitilde.liga.glif + hyphen_bar.end + hyphen_bar.end.glif + hyphen_bar.liga + hyphen_bar.liga.glif + hyphen_bar_bar.end + hyphen_bar_bar.end.glif + hyphen_bar_bar.liga + hyphen_bar_bar.liga.glif + hyphen_bar_bar_hyphen.middle + hyphen_bar_bar_hyphen.middle.glif + hyphen_bar_hyphen.middle + hyphen_bar_hyphen.middle.glif + hyphen_greater.end + hyphen_greater.end.glif + hyphen_greater.liga + hyphen_greater.liga.glif + hyphen_greater_greater.end + hyphen_greater_greater.end.glif + hyphen_greater_greater.liga + hyphen_greater_greater.liga.glif + hyphen_greater_greater_hyphen.m + hyphen_greater_greater_hyphen.m.glif + hyphen_greater_hyphen.middle + hyphen_greater_hyphen.middle.glif + hyphen_hyphen.liga + hyphen_hyphen.liga.glif + hyphen_hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga.glif + hyphen_less.end + hyphen_less.end.glif + hyphen_less.liga + hyphen_less.liga.glif + hyphen_less_hyphen.middle + hyphen_less_hyphen.middle.glif + hyphen_less_less.end + hyphen_less_less.end.glif + hyphen_less_less.liga + hyphen_less_less.liga.glif + hyphen_less_less_hyphen.middle + hyphen_less_less_hyphen.middle.glif i i.glif iacute @@ -894,10 +1244,170 @@ lcommaaccent.glif ldotbelow ldotbelow.glif + leftdnheavyrightuplightbxd + leftdnheavyrightuplightbxd.glif + lefteighthblock + lefteighthblock.glif + leftfiveeighthsblock + leftfiveeighthsblock.glif + lefthalfblock + lefthalfblock.glif + leftheavyrightdnlightbxd + leftheavyrightdnlightbxd.glif + leftheavyrightuplightbxd + leftheavyrightuplightbxd.glif + leftheavyrightvertlightbxd + leftheavyrightvertlightbxd.glif + leftlightrightdnheavybxd + leftlightrightdnheavybxd.glif + leftlightrightupheavybxd + leftlightrightupheavybxd.glif + leftlightrightvertheavybxd + leftlightrightvertheavybxd.glif + leftquarterblock + leftquarterblock.glif + leftseveneighthsblock + leftseveneighthsblock.glif + leftthreeeighthsblock + leftthreeeighthsblock.glif + leftthreequartersblock + leftthreequartersblock.glif + leftupheavyrightdnlightbxd + leftupheavyrightdnlightbxd.glif less less.glif + less_asciitilde.liga + less_asciitilde.liga.glif + less_asciitilde_asciitilde.liga + less_asciitilde_asciitilde.liga.glif + less_asciitilde_greater.liga + less_asciitilde_greater.liga.glif + less_asterisk.liga + less_asterisk.liga.glif + less_asterisk_greater.liga + less_asterisk_greater.liga.glif + less_bar.liga + less_bar.liga.glif + less_bar_bar.liga + less_bar_bar.liga.glif + less_bar_bar_bar.liga + less_bar_bar_bar.liga.glif + less_bar_greater.liga + less_bar_greater.liga.glif + less_colon.liga + less_colon.liga.glif + less_dollar.liga + less_dollar.liga.glif + less_dollar_greater.liga + less_dollar_greater.liga.glif + less_equal + less_equal.glif + less_equal.liga + less_equal.liga.glif + less_equal.start + less_equal.start.glif + less_equal_greater.liga + less_equal_greater.liga.glif + less_equal_less.liga + less_equal_less.liga.glif + less_exclam_hyphen_hyphen.liga + less_exclam_hyphen_hyphen.liga.glif + less_greater.liga + less_greater.liga.glif + less_hyphen.liga + less_hyphen.liga.glif + less_hyphen.start + less_hyphen.start.glif + less_hyphen_greater.liga + less_hyphen_greater.liga.glif + less_hyphen_less.liga + less_hyphen_less.liga.glif + less_less.liga + less_less.liga.glif + less_less_equal.liga + less_less_equal.liga.glif + less_less_equal.start + less_less_equal.start.glif + less_less_hyphen.liga + less_less_hyphen.liga.glif + less_less_hyphen.start + less_less_hyphen.start.glif + less_less_less.liga + less_less_less.liga.glif + less_plus.liga + less_plus.liga.glif + less_plus_greater.liga + less_plus_greater.liga.glif + less_slash.liga + less_slash.liga.glif + less_slash_greater.liga + less_slash_greater.liga.glif lessequal lessequal.glif + lightarcdnleftbxd + lightarcdnleftbxd.glif + lightarcdnrightbxd + lightarcdnrightbxd.glif + lightarcupleftbxd + lightarcupleftbxd.glif + lightarcuprightbxd + lightarcuprightbxd.glif + lightdbldashhorzbxd + lightdbldashhorzbxd.glif + lightdbldashvertbxd + lightdbldashvertbxd.glif + lightdiagcrossbxd + lightdiagcrossbxd.glif + lightdiagupleftdnrightbxd + lightdiagupleftdnrightbxd.glif + lightdiaguprightdnleftbxd + lightdiaguprightdnleftbxd.glif + lightdnbxd + lightdnbxd.glif + lightdnhorzbxd + lightdnhorzbxd.glif + lightdnleftbxd + lightdnleftbxd.glif + lightdnrightbxd + lightdnrightbxd.glif + lighthorzbxd + lighthorzbxd.glif + lightleftbxd + lightleftbxd.glif + lightleftheavyrightbxd + lightleftheavyrightbxd.glif + lightquaddashhorzbxd + lightquaddashhorzbxd.glif + lightquaddashvertbxd + lightquaddashvertbxd.glif + lightrightbxd + lightrightbxd.glif + lightshade + lightshade.glif + lighttrpldashhorzbxd + lighttrpldashhorzbxd.glif + lighttrpldashvertbxd + lighttrpldashvertbxd.glif + lightupbxd + lightupbxd.glif + lightupheavydnbxd + lightupheavydnbxd.glif + lightuphorzbxd + lightuphorzbxd.glif + lightupleftbxd + lightupleftbxd.glif + lightuprightbxd + lightuprightbxd.glif + lightvertbxd + lightvertbxd.glif + lightverthorzbxd + lightverthorzbxd.glif + lightvertleftbxd + lightvertleftbxd.glif + lightvertrightbxd + lightvertrightbxd.glif + ligspacer + ligspacer.glif llinebelow llinebelow.glif lmacrondotbelow @@ -922,6 +1432,8 @@ mdotaccent.glif mdotbelow mdotbelow.glif + mediumshade + mediumshade.glif middotcat middotcat.glif middotcat.cap @@ -968,6 +1480,30 @@ ntilde.glif numbersign numbersign.glif + numbersign.end + numbersign.end.glif + numbersign.middle + numbersign.middle.glif + numbersign.start + numbersign.start.glif + numbersign_braceleft.liga + numbersign_braceleft.liga.glif + numbersign_bracketleft.liga + numbersign_bracketleft.liga.glif + numbersign_colon.liga + numbersign_colon.liga.glif + numbersign_equal.liga + numbersign_equal.liga.glif + numbersign_exclam.liga + numbersign_exclam.liga.glif + numbersign_parenleft.liga + numbersign_parenleft.liga.glif + numbersign_question.liga + numbersign_question.liga.glif + numbersign_underscore.liga + numbersign_underscore.liga.glif + numbersign_underscore_parenleft + numbersign_underscore_parenleft.glif o o.glif oacute @@ -1062,14 +1598,36 @@ parenright.glif percent percent.glif + percent_percent.liga + percent_percent.liga.glif period period.glif + period_equal.liga + period_equal.liga.glif + period_hyphen.liga + period_hyphen.liga.glif + period_period.liga + period_period.liga.glif + period_period_equal.liga + period_period_equal.liga.glif + period_period_less.liga + period_period_less.liga.glif + period_period_period.liga + period_period_period.liga.glif + period_question.liga + period_question.liga.glif periodcentered periodcentered.glif peso peso.glif plus plus.glif + plus_greater.liga + plus_greater.liga.glif + plus_plus.liga + plus_plus.liga.glif + plus_plus_plus.liga + plus_plus_plus.liga.glif plusminus plusminus.glif primemod @@ -1080,6 +1638,14 @@ q.glif question question.glif + question_colon.liga + question_colon.liga.glif + question_equal.liga + question_equal.liga.glif + question_period.liga + question_period.liga.glif + question_question.liga + question_question.liga.glif questiondown questiondown.glif quotedbl @@ -1112,6 +1678,26 @@ rdotbelow.glif registered registered.glif + rightdnheavyleftuplightbxd + rightdnheavyleftuplightbxd.glif + righteighthblock + righteighthblock.glif + righthalfblock + righthalfblock.glif + rightheavyleftdnlightbxd + rightheavyleftdnlightbxd.glif + rightheavyleftuplightbxd + rightheavyleftuplightbxd.glif + rightheavyleftvertlightbxd + rightheavyleftvertlightbxd.glif + rightlightleftdnheavybxd + rightlightleftdnheavybxd.glif + rightlightleftupheavybxd + rightlightleftupheavybxd.glif + rightlightleftvertheavybxd + rightlightleftvertheavybxd.glif + rightupheavyleftdnlightbxd + rightupheavyleftdnlightbxd.glif ring ring.glif ringcmb @@ -1146,6 +1732,8 @@ section.glif semicolon semicolon.glif + semicolon_semicolon.liga + semicolon_semicolon.liga.glif servicemark servicemark.glif seven @@ -1172,6 +1760,24 @@ six.sup.glif slash slash.glif + slash_asterisk.liga + slash_asterisk.liga.glif + slash_backslash.liga + slash_backslash.liga.glif + slash_equal.liga + slash_equal.liga.glif + slash_equal.start + slash_equal.start.glif + slash_greater.liga + slash_greater.liga.glif + slash_slash.liga + slash_slash.liga.glif + slash_slash_equal.liga + slash_slash_equal.liga.glif + slash_slash_equal.start + slash_slash_equal.start.glif + slash_slash_slash.liga + slash_slash_slash.liga.glif space space.glif sterling @@ -1278,6 +1884,14 @@ umacron.glif underscore underscore.glif + underscore.end + underscore.end.glif + underscore.middle + underscore.middle.glif + underscore.start + underscore.start.glif + underscore_bar_underscore.m + underscore_bar_underscore.m.glif uni00A0 uni00A_0.glif uni0326 @@ -1292,10 +1906,88 @@ uni20B_A_.glif uni20BD uni20B_D_.glif + uni2610 + uni2610.glif + uni2611 + uni2611.glif + uni2612 + uni2612.glif + uni2713 + uni2713.glif uniA788 uniA_788.glif + uniE0A0 + uniE_0A_0.glif + uniE0A1 + uniE_0A_1.glif + uniE0A2 + uniE_0A_2.glif + uniE0B0 + uniE_0B_0.glif + uniE0B1 + uniE_0B_1.glif + uniE0B2 + uniE_0B_2.glif + uniE0B3 + uniE_0B_3.glif uogonek uogonek.glif + updblhorzsngbxd + updblhorzsngbxd.glif + updblleftsngbxd + updblleftsngbxd.glif + updblrightsngbxd + updblrightsngbxd.glif + upeighthblock + upeighthblock.glif + uphalfblock + uphalfblock.glif + upheavydnhorzlightbxd + upheavydnhorzlightbxd.glif + upheavyhorzlightbxd + upheavyhorzlightbxd.glif + upheavyleftdnlightbxd + upheavyleftdnlightbxd.glif + upheavyleftlightbxd + upheavyleftlightbxd.glif + upheavyrightdnlightbxd + upheavyrightdnlightbxd.glif + upheavyrightlightbxd + upheavyrightlightbxd.glif + upleftdnleftdnrightquadrant + upleftdnleftdnrightquadrant.glif + upleftdnrightquadrant + upleftdnrightquadrant.glif + upleftquadrant + upleftquadrant.glif + upleftuprightdnleftquadrant + upleftuprightdnleftquadrant.glif + upleftuprightdnrightquadrant + upleftuprightdnrightquadrant.glif + uplightdnhorzheavybxd + uplightdnhorzheavybxd.glif + uplighthorzheavybxd + uplighthorzheavybxd.glif + uplightleftdnheavybxd + uplightleftdnheavybxd.glif + uplightleftheavybxd + uplightleftheavybxd.glif + uplightrightdnheavybxd + uplightrightdnheavybxd.glif + uplightrightheavybxd + uplightrightheavybxd.glif + uprightdnleftdnrightquadrant + uprightdnleftdnrightquadrant.glif + uprightdnleftquadrant + uprightdnleftquadrant.glif + uprightquadrant + uprightquadrant.glif + upsnghorzdblbxd + upsnghorzdblbxd.glif + upsngleftdblbxd + upsngleftdblbxd.glif + upsngrightdblbxd + upsngrightdblbxd.glif uring uring.glif utilde @@ -1304,12 +1996,38 @@ v.glif vdotbelow vdotbelow.glif + vertdblhorzsngbxd + vertdblhorzsngbxd.glif + vertdblleftsngbxd + vertdblleftsngbxd.glif + vertdblrightsngbxd + vertdblrightsngbxd.glif + vertheavyhorzlightbxd + vertheavyhorzlightbxd.glif + vertheavyleftlightbxd + vertheavyleftlightbxd.glif + vertheavyrightlightbxd + vertheavyrightlightbxd.glif verticallinelowmod verticallinelowmod.glif verticallinemod verticallinemod.glif + vertlighthorzheavybxd + vertlighthorzheavybxd.glif + vertlightleftheavybxd + vertlightleftheavybxd.glif + vertlightrightheavybxd + vertlightrightheavybxd.glif + vertsnghorzdblbxd + vertsnghorzdblbxd.glif + vertsngleftdblbxd + vertsngleftdblbxd.glif + vertsngrightdblbxd + vertsngrightdblbxd.glif w w.glif + w_w_w.liga + w_w_w.liga.glif wacute wacute.glif wcircumflex diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/darkshade.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/darkshade.glif new file mode 100644 index 00000000..fd2eb1c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/darkshade.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dbldnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dbldnhorzbxd.glif new file mode 100644 index 00000000..c9659c7d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dbldnhorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dbldnleftbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dbldnleftbxd.glif new file mode 100644 index 00000000..c1cb1a5d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dbldnleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dbldnrightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dbldnrightbxd.glif new file mode 100644 index 00000000..b0eb33d0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dbldnrightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dblhorzbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dblhorzbxd.glif new file mode 100644 index 00000000..e43c87cc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dblhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dbluphorzbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dbluphorzbxd.glif new file mode 100644 index 00000000..a90d518d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dbluphorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dblupleftbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dblupleftbxd.glif new file mode 100644 index 00000000..44c1f08d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dblupleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dbluprightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dbluprightbxd.glif new file mode 100644 index 00000000..acaeaa92 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dbluprightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dblvertbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dblvertbxd.glif new file mode 100644 index 00000000..63ba3930 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dblvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dblverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dblverthorzbxd.glif new file mode 100644 index 00000000..4f0b225b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dblverthorzbxd.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dblvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dblvertleftbxd.glif new file mode 100644 index 00000000..b60eb844 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dblvertleftbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dblvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dblvertrightbxd.glif new file mode 100644 index 00000000..3e169b8f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dblvertrightbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dcaron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dcaron.glif index c3bdd436..f7f1e8df 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dcaron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dcircumflexbelow.glif index de6d830b..d931cb64 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dcircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dcircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dcroat.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dcroat.glif index 0225142c..6a71276b 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dcroat.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dcroat.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ddotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ddotbelow.glif index e0c59048..876c7a3b 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ddotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ddotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresisacute.cap.glif index bd9b69c8..6169b485 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresisacute.cap.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresisacute.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresisacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresisacute.glif index 96d21ed8..bec77da6 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresisacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresisacute.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresisbelowcmb.glif index 1874c5ad..ceb26c14 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresisbelowcmb.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresisbelowcmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresiscaron.cap.glif index e0e63abd..c7995a1c 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresiscaron.cap.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresiscaron.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresiscaron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresiscaron.glif index 325d7e7a..62e84096 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresiscaron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresiscaron.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresisgrave.cap.glif index e015b86b..93f4190d 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresisgrave.cap.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresisgrave.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresisgrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresisgrave.glif index 7b3b54ed..1ebbb63f 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresisgrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresisgrave.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresismacron.cap.glif index 3582d558..28ff466e 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresismacron.cap.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresismacron.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresismacron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresismacron.glif index a62b6082..2c578415 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresismacron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dieresismacron.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dlinebelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dlinebelow.glif index 7a75dd46..73c6fe71 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dndblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dndblhorzsngbxd.glif new file mode 100644 index 00000000..fa4f58c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dndblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dndblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dndblleftsngbxd.glif new file mode 100644 index 00000000..f5e60866 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dndblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dndblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dndblrightsngbxd.glif new file mode 100644 index 00000000..f299a0ec --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dndblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dneighthblock.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dneighthblock.glif new file mode 100644 index 00000000..ff791c74 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dneighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnfiveeighthsblock.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnfiveeighthsblock.glif new file mode 100644 index 00000000..99bd1498 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnhalfblock.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnhalfblock.glif new file mode 100644 index 00000000..001cf3fb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnhalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnheavyhorzlightbxd.glif new file mode 100644 index 00000000..37f7e2ee --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnheavyleftlightbxd.glif new file mode 100644 index 00000000..04054543 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnheavyleftuplightbxd.glif new file mode 100644 index 00000000..a720dcc7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnheavyrightlightbxd.glif new file mode 100644 index 00000000..9ba6704c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnheavyrightuplightbxd.glif new file mode 100644 index 00000000..815a695d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnheavyuphorzlightbxd.glif new file mode 100644 index 00000000..f5ba7604 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnheavyuphorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnleftquadrant.glif new file mode 100644 index 00000000..42729338 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnlighthorzheavybxd.glif new file mode 100644 index 00000000..28b25c49 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnlighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnlightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnlightleftheavybxd.glif new file mode 100644 index 00000000..59a51b0f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnlightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnlightleftupheavybxd.glif new file mode 100644 index 00000000..70904268 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnlightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnlightrightheavybxd.glif new file mode 100644 index 00000000..b4c6c636 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnlightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnlightrightupheavybxd.glif new file mode 100644 index 00000000..c5576d28 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnlightuphorzheavybxd.glif new file mode 100644 index 00000000..22f12436 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnlightuphorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnquarterblock.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnquarterblock.glif new file mode 100644 index 00000000..c2180b50 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnrightquadrant.glif new file mode 100644 index 00000000..9858382e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnrightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnseveneighthsblock.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnseveneighthsblock.glif new file mode 100644 index 00000000..ecdac3da --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnsnghorzdblbxd.glif new file mode 100644 index 00000000..ecff9c4d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnsngleftdblbxd.glif new file mode 100644 index 00000000..9053ebaf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnsngrightdblbxd.glif new file mode 100644 index 00000000..d9699e08 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnthreeeighthsblock.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnthreeeighthsblock.glif new file mode 100644 index 00000000..7febe2aa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnthreequartersblock.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnthreequartersblock.glif new file mode 100644 index 00000000..a79dae14 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dnthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dollar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dollar_greater.liga.glif new file mode 100644 index 00000000..bcdbd991 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dollar_greater.liga.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dotlessi.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dotlessi.glif index 5a926870..55d073a0 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dotlessi.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dotlessi.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dotlessj.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dotlessj.glif index b72ab15b..d4ef5265 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dotlessj.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/dotlessj.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/eacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/eacute.glif index 05052d4f..399df89f 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/eacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/eacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ebreve.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ebreve.glif index 401a167c..18c2ad77 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ebreve.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ebreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecaron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecaron.glif index 146346b7..26eb285c 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecaron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflex.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflex.glif index 81ed98c7..2ac4ea80 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexacute.glif index 4f2549b8..2af7d68d 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexdotbelow.glif index 0d869528..48bf89d4 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexgrave.glif index de0fd03a..3f06d5a8 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexhookabove.glif index 7a3a4a01..f5ef32a9 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflextilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflextilde.glif index b351e741..e8545ce2 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ecircumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/edieresis.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/edieresis.glif index 7f72c7e6..48a77fa0 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/edieresis.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/edieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/edotaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/edotaccent.glif index bd7c0915..9f5a28c1 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/edotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/edotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/edotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/edotbelow.glif index 2aed453a..33cc2aaa 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/edotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/edotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/egrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/egrave.glif index 325d1a80..d1f3f1ca 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/egrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/egrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ehookabove.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ehookabove.glif index 09b25c91..5bd60e3f 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ehookabove.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ehookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/eight.num.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/eight.num.glif index 34029129..cc1ad559 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/eight.num.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/eight.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/emacron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/emacron.glif index 4349a61b..85931f32 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/emacron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/emacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/eogonek.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/eogonek.glif index 343312e8..77767109 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/eogonek.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/eogonek.glif @@ -2,8 +2,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal.end.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal.end.glif new file mode 100644 index 00000000..beb8c76c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal.middle.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal.middle.glif new file mode 100644 index 00000000..a985ced1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal.start.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal.start.glif new file mode 100644 index 00000000..76fdccd2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_asciitilde.liga.glif new file mode 100644 index 00000000..ab07ef9b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_asciitilde.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_bar.end.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_bar.end.glif new file mode 100644 index 00000000..32da5fb6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_bar.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_bar.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_bar.liga.glif new file mode 100644 index 00000000..7da2ed0d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_bar.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_bar.end.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_bar.end.glif new file mode 100644 index 00000000..b808a4a7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_bar.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_bar.liga.glif new file mode 100644 index 00000000..24534c43 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_bar.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_bar_equal.middle.glif new file mode 100644 index 00000000..d54504fa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_bar_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_equal.middle.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_equal.middle.glif new file mode 100644 index 00000000..923ca653 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_equal.middle.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_colon_equal.middle.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_colon_equal.middle.glif new file mode 100644 index 00000000..d490073c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_colon_equal.middle.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_equal.liga.glif new file mode 100644 index 00000000..02290b75 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_equal.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_equal_equal.liga.glif new file mode 100644 index 00000000..83b34a70 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_equal_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_exclam_equal.middle.glif new file mode 100644 index 00000000..af9eb0a2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_exclam_equal.middle.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_greater.end.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_greater.end.glif new file mode 100644 index 00000000..835c2b21 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_greater.end.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_greater.liga.glif new file mode 100644 index 00000000..e75bc89d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_equal.middle.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_equal.middle.glif new file mode 100644 index 00000000..8c1b20c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_greater.end.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_greater.end.glif new file mode 100644 index 00000000..603c16b7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_greater.end.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_greater.liga.glif new file mode 100644 index 00000000..fcaf6229 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_greater_equal.m.glif new file mode 100644 index 00000000..f568435f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_greater_equal.m.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_less.end.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_less.end.glif new file mode 100644 index 00000000..c6080cfc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_less.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_less.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_less.liga.glif new file mode 100644 index 00000000..ca0ed947 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_less.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_less_equal.middle.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_less_equal.middle.glif new file mode 100644 index 00000000..6a1a4247 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_less_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_less_less.end.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_less_less.end.glif new file mode 100644 index 00000000..c219eed5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_less_less.end.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_less_less.liga.glif new file mode 100644 index 00000000..9818b5b4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_less_less.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_less_less_equal.middle.glif new file mode 100644 index 00000000..9d9b1357 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_less_less_equal.middle.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_slash.end.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_slash.end.glif new file mode 100644 index 00000000..40da1034 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_slash.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_slash.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_slash.liga.glif new file mode 100644 index 00000000..00cc8ff6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_slash.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_equal.middle.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_equal.middle.glif new file mode 100644 index 00000000..59918e5c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_equal.middle.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_slash.end.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_slash.end.glif new file mode 100644 index 00000000..f431a6e6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_slash.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_slash.liga.glif new file mode 100644 index 00000000..dc862010 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_slash.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_slash_equal.middle.glif new file mode 100644 index 00000000..c88a2578 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_slash_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/eth.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/eth.glif index 59c84d93..b5ad7919 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/eth.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/eth.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/etilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/etilde.glif index 7eced16d..4270e672 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/etilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/etilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/exclam_asciitilde.liga.glif new file mode 100644 index 00000000..8f70f255 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/exclam_asciitilde.liga.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/exclam_equal.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/exclam_equal.liga.glif new file mode 100644 index 00000000..dc6a0922 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/exclam_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/exclam_equal_equal.liga.glif new file mode 100644 index 00000000..d53c8b60 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/exclam_equal_equal.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/exclam_exclam.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/exclam_exclam.liga.glif new file mode 100644 index 00000000..92766d8a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/exclam_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/exclam_exclam_period.liga.glif new file mode 100644 index 00000000..11d9559b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/exclam_exclam_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/f.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/f.glif index f299702d..f6452f40 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/f.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/f.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/five.num.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/five.num.glif index 101e444c..c299993d 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/five.num.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/five.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/four.num.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/four.num.glif index 21b51dd4..e02b8324 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/four.num.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/four.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/fullblock.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/fullblock.glif new file mode 100644 index 00000000..2c547d1b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/fullblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gbreve.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gbreve.glif index 490c86e8..8ac8f078 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gbreve.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gbreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gcaron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gcaron.glif index 6e65b764..a02d0b44 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gcaron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gcircumflex.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gcircumflex.glif index 84d66d85..31cdb978 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gcommaaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gcommaaccent.glif index b2abe05e..2f36684f 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gdotaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gdotaccent.glif index 411ea765..e35882ea 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gmacron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gmacron.glif index 7cab7b84..5a9ffef1 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gmacron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gmacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gravecmb.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gravecmb.glif index 63554310..b2f866b8 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gravecmb.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/gravecmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_colon.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_colon.liga.glif new file mode 100644 index 00000000..2806018b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_equal.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_equal.glif new file mode 100644 index 00000000..b0c32030 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_equal.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_equal.liga.glif new file mode 100644 index 00000000..1a42c89a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_equal.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_equal.start.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_equal.start.glif new file mode 100644 index 00000000..af686509 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_equal.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_equal_greater.liga.glif new file mode 100644 index 00000000..b1d97e70 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_equal_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_greater.liga.glif new file mode 100644 index 00000000..9abe077b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_equal.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_equal.liga.glif new file mode 100644 index 00000000..3eaee445 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_equal.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_equal.start.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_equal.start.glif new file mode 100644 index 00000000..07f8e7dc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_equal.start.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_greater.liga.glif new file mode 100644 index 00000000..ec3f5fa3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_hyphen.liga.glif new file mode 100644 index 00000000..7c0a3245 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_hyphen.start.glif new file mode 100644 index 00000000..04c5eecd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_hyphen.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_hyphen.liga.glif new file mode 100644 index 00000000..ed91fff8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_hyphen.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_hyphen.start.glif new file mode 100644 index 00000000..b4136527 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_hyphen.start.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_hyphen_greater.liga.glif new file mode 100644 index 00000000..6b45f0ba --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/greater_hyphen_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hbrevebelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hbrevebelow.glif index fe1681f6..184c4a88 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hbrevebelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hbrevebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hcircumflex.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hcircumflex.glif index 804d7fc8..8dc53205 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hdotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hdotbelow.glif index f75d65c7..8cbb6130 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavydbldashhorzbxd.glif new file mode 100644 index 00000000..702827d8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavydbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavydbldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavydbldashvertbxd.glif new file mode 100644 index 00000000..6aa8055f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavydbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavydnbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavydnbxd.glif new file mode 100644 index 00000000..f44369da --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavydnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavydnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavydnhorzbxd.glif new file mode 100644 index 00000000..1a9c562c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavydnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavydnleftbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavydnleftbxd.glif new file mode 100644 index 00000000..dddb8d03 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavydnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavydnrightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavydnrightbxd.glif new file mode 100644 index 00000000..22a584aa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavydnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyhorzbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyhorzbxd.glif new file mode 100644 index 00000000..618372ad --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyhorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyleftbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyleftbxd.glif new file mode 100644 index 00000000..aa0ed90a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyleftlightrightbxd.glif new file mode 100644 index 00000000..abd61ef5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyleftlightrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyquaddashhorzbxd.glif new file mode 100644 index 00000000..42e19747 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyquaddashvertbxd.glif new file mode 100644 index 00000000..04e9430a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyrightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyrightbxd.glif new file mode 100644 index 00000000..d6b930a4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavytrpldashhorzbxd.glif new file mode 100644 index 00000000..8c33263a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavytrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavytrpldashvertbxd.glif new file mode 100644 index 00000000..332aa0b7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavytrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyupbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyupbxd.glif new file mode 100644 index 00000000..88706f34 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyuphorzbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyuphorzbxd.glif new file mode 100644 index 00000000..644bd3c1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyupleftbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyupleftbxd.glif new file mode 100644 index 00000000..88a43f59 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyuplightdnbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyuplightdnbxd.glif new file mode 100644 index 00000000..98585f3c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyuplightdnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyuprightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyuprightbxd.glif new file mode 100644 index 00000000..12eebf8b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyvertbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyvertbxd.glif new file mode 100644 index 00000000..91405da0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyverthorzbxd.glif new file mode 100644 index 00000000..b8d84bd3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyvertleftbxd.glif new file mode 100644 index 00000000..dcb956bc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyvertrightbxd.glif new file mode 100644 index 00000000..4d6049c0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/heavyvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hlinebelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hlinebelow.glif index f502886c..61ba5f72 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hookcmb.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hookcmb.glif index c9d8a9a6..f6bfa148 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hookcmb.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hookcmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/horizontalbar.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/horizontalbar.glif index 2c2b288d..ef4b3086 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/horizontalbar.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/horizontalbar.glif @@ -5,10 +5,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen.end.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen.end.glif new file mode 100644 index 00000000..1cd7af88 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen.middle.glif new file mode 100644 index 00000000..55b15d52 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen.start.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen.start.glif new file mode 100644 index 00000000..ee4b31ef --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_asciitilde.liga.glif new file mode 100644 index 00000000..647fca7a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_asciitilde.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar.end.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar.end.glif new file mode 100644 index 00000000..6b3fa500 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar.end.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar.liga.glif new file mode 100644 index 00000000..90b1804c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_bar.end.glif new file mode 100644 index 00000000..1ba00bbb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_bar.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_bar.liga.glif new file mode 100644 index 00000000..7893923e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif new file mode 100644 index 00000000..3b60fa97 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_hyphen.middle.glif new file mode 100644 index 00000000..56603fda --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater.end.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater.end.glif new file mode 100644 index 00000000..b5733006 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater.liga.glif new file mode 100644 index 00000000..21bdb66d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_greater.end.glif new file mode 100644 index 00000000..ebf3984e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_greater.end.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_greater.liga.glif new file mode 100644 index 00000000..87703288 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif new file mode 100644 index 00000000..a918f412 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_hyphen.middle.glif new file mode 100644 index 00000000..0111cf76 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_hyphen.liga.glif new file mode 100644 index 00000000..4c49ab56 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_hyphen.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..52fb755c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less.end.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less.end.glif new file mode 100644 index 00000000..8eb0ca2c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less.end.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less.liga.glif new file mode 100644 index 00000000..2e830601 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_hyphen.middle.glif new file mode 100644 index 00000000..c25278da --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_less.end.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_less.end.glif new file mode 100644 index 00000000..5f5977b0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_less.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_less.liga.glif new file mode 100644 index 00000000..93d29020 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_less.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif new file mode 100644 index 00000000..0a89d8e4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/iacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/iacute.glif index 062ea298..6c35b468 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/iacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/iacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ibreve.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ibreve.glif index 95a178db..b87825a9 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ibreve.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ibreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/icaron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/icaron.glif index 71f292d3..4728b70a 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/icaron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/icaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/icircumflex.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/icircumflex.glif index 903cbb5e..7c4b1f81 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/icircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/icircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/idieresis.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/idieresis.glif index 51f07f6d..8e6ff019 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/idieresis.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/idieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/idotaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/idotaccent.glif index 92c9f961..ef883f98 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/idotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/idotaccent.glif @@ -5,10 +5,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/idotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/idotbelow.glif index e25ebfcd..2506bb5d 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/idotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/idotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/igrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/igrave.glif index 0796c8af..3a9ceed0 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/igrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/igrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ihookabove.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ihookabove.glif index b271f530..75721d6f 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ihookabove.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ihookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/imacron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/imacron.glif index 1206e1d1..0dd3c5cb 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/imacron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/imacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/itilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/itilde.glif index 8cf5576f..87383742 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/itilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/itilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/jcaron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/jcaron.glif index 72f003b9..fa519f23 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/jcaron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/jcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/jcircumflex.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/jcircumflex.glif index 6b708586..5bd516a8 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/jcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/jcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/kcommaaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/kcommaaccent.glif index 4bc587e7..ee60b98a 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/kcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/kcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/kdotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/kdotbelow.glif index bbb957f3..b0d92a02 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/kdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/kdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/klinebelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/klinebelow.glif index 805d418b..0a112b90 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/klinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/klinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/l.dot.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/l.dot.glif index d28f6f78..ecbc5cd7 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/l.dot.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/l.dot.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lacute.glif index 8619e54a..b899c9ca 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lcaron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lcaron.glif index b8697380..bb3d258d 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lcaron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lcircumflexbelow.glif index 4b131596..09606d58 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lcircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lcircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lcommaaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lcommaaccent.glif index 51416c56..d8aa15d3 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ldotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ldotbelow.glif index 6069709b..d2826d11 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ldotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ldotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftdnheavyrightuplightbxd.glif new file mode 100644 index 00000000..2a51a287 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftdnheavyrightuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lefteighthblock.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lefteighthblock.glif new file mode 100644 index 00000000..8d44dad4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lefteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftfiveeighthsblock.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftfiveeighthsblock.glif new file mode 100644 index 00000000..0eb9ccfc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lefthalfblock.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lefthalfblock.glif new file mode 100644 index 00000000..325c05f6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lefthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftheavyrightdnlightbxd.glif new file mode 100644 index 00000000..caada6c8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftheavyrightuplightbxd.glif new file mode 100644 index 00000000..8b33bec2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftheavyrightvertlightbxd.glif new file mode 100644 index 00000000..3b56b96e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftheavyrightvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftlightrightdnheavybxd.glif new file mode 100644 index 00000000..f32d07c0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftlightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftlightrightupheavybxd.glif new file mode 100644 index 00000000..9fc34b5b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftlightrightvertheavybxd.glif new file mode 100644 index 00000000..598f7689 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftlightrightvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftquarterblock.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftquarterblock.glif new file mode 100644 index 00000000..036dad83 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftseveneighthsblock.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftseveneighthsblock.glif new file mode 100644 index 00000000..74b69747 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftthreeeighthsblock.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftthreeeighthsblock.glif new file mode 100644 index 00000000..e5c4283a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftthreequartersblock.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftthreequartersblock.glif new file mode 100644 index 00000000..5ae5b2e3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftupheavyrightdnlightbxd.glif new file mode 100644 index 00000000..0ac6ddaf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/leftupheavyrightdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_asciitilde.liga.glif new file mode 100644 index 00000000..ba39e19b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_asciitilde.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..2cc0f30f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_asciitilde_greater.liga.glif new file mode 100644 index 00000000..1ff0cb36 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_asciitilde_greater.liga.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_asterisk.liga.glif new file mode 100644 index 00000000..f855718f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_asterisk_greater.liga.glif new file mode 100644 index 00000000..e3204627 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_asterisk_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_bar.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_bar.liga.glif new file mode 100644 index 00000000..dd24fcf8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_bar.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_bar_bar.liga.glif new file mode 100644 index 00000000..b8420e4c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_bar_bar.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_bar_bar_bar.liga.glif new file mode 100644 index 00000000..e0c896f3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_bar_bar_bar.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_bar_greater.liga.glif new file mode 100644 index 00000000..514deaf0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_bar_greater.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_colon.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_colon.liga.glif new file mode 100644 index 00000000..6dcb5cfc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_dollar.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_dollar.liga.glif new file mode 100644 index 00000000..46b1bc92 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_dollar.liga.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_dollar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_dollar_greater.liga.glif new file mode 100644 index 00000000..8c0e588b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_dollar_greater.liga.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_equal.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_equal.glif new file mode 100644 index 00000000..6752dc73 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_equal.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_equal.liga.glif new file mode 100644 index 00000000..3235deb6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_equal.start.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_equal.start.glif new file mode 100644 index 00000000..b2fe58ec --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_equal.start.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_equal_greater.liga.glif new file mode 100644 index 00000000..19e6b275 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_equal_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_equal_less.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_equal_less.liga.glif new file mode 100644 index 00000000..a3ba0087 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_equal_less.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..a0bdf954 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_greater.liga.glif new file mode 100644 index 00000000..2c42ca2f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_greater.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen.liga.glif new file mode 100644 index 00000000..cd62ab97 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen.start.glif new file mode 100644 index 00000000..98684b37 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen_greater.liga.glif new file mode 100644 index 00000000..6ca33142 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen_greater.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen_less.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen_less.liga.glif new file mode 100644 index 00000000..8e64aaf3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen_less.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_less.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_less.liga.glif new file mode 100644 index 00000000..4bbc8055 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_less.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_less_equal.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_less_equal.liga.glif new file mode 100644 index 00000000..c1f6970c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_less_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_less_equal.start.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_less_equal.start.glif new file mode 100644 index 00000000..f8c1766d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_less_equal.start.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_less_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_less_hyphen.liga.glif new file mode 100644 index 00000000..199637b7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_less_hyphen.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_less_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_less_hyphen.start.glif new file mode 100644 index 00000000..ca3facfd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_less_hyphen.start.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_less_less.liga.glif new file mode 100644 index 00000000..0bc0122e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_less_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_plus.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_plus.liga.glif new file mode 100644 index 00000000..4faf5922 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_plus.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_plus_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_plus_greater.liga.glif new file mode 100644 index 00000000..3f842213 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_plus_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_slash.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_slash.liga.glif new file mode 100644 index 00000000..9bf8e093 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_slash.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_slash_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_slash_greater.liga.glif new file mode 100644 index 00000000..b9ed9447 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/less_slash_greater.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightarcdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightarcdnleftbxd.glif new file mode 100644 index 00000000..d6c590bf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightarcdnleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightarcdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightarcdnrightbxd.glif new file mode 100644 index 00000000..2c2ef6c9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightarcdnrightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightarcupleftbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightarcupleftbxd.glif new file mode 100644 index 00000000..c0cfb520 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightarcupleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightarcuprightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightarcuprightbxd.glif new file mode 100644 index 00000000..307503ea --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightarcuprightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdbldashhorzbxd.glif new file mode 100644 index 00000000..eab523b6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdbldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdbldashvertbxd.glif new file mode 100644 index 00000000..7d1904ca --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdiagcrossbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdiagcrossbxd.glif new file mode 100644 index 00000000..5aca66b5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdiagcrossbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdiagupleftdnrightbxd.glif new file mode 100644 index 00000000..7332aef6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdiagupleftdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdiaguprightdnleftbxd.glif new file mode 100644 index 00000000..1add8c62 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdiaguprightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdnbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdnbxd.glif new file mode 100644 index 00000000..ad43789a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdnhorzbxd.glif new file mode 100644 index 00000000..0dea7b7d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdnleftbxd.glif new file mode 100644 index 00000000..d19b9caf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdnrightbxd.glif new file mode 100644 index 00000000..bdad23ca --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lighthorzbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lighthorzbxd.glif new file mode 100644 index 00000000..6f0b2756 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lighthorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightleftbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightleftbxd.glif new file mode 100644 index 00000000..7d12fe60 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightleftheavyrightbxd.glif new file mode 100644 index 00000000..621504d4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightleftheavyrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightquaddashhorzbxd.glif new file mode 100644 index 00000000..8ba84c9e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightquaddashvertbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightquaddashvertbxd.glif new file mode 100644 index 00000000..739f14c0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightrightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightrightbxd.glif new file mode 100644 index 00000000..86414804 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightshade.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightshade.glif new file mode 100644 index 00000000..156f38e4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightshade.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lighttrpldashhorzbxd.glif new file mode 100644 index 00000000..44a74bf6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lighttrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lighttrpldashvertbxd.glif new file mode 100644 index 00000000..133c2d16 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lighttrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightupbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightupbxd.glif new file mode 100644 index 00000000..c5da75fa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightupheavydnbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightupheavydnbxd.glif new file mode 100644 index 00000000..b9ee6c1d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightupheavydnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightuphorzbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightuphorzbxd.glif new file mode 100644 index 00000000..6812b83f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightupleftbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightupleftbxd.glif new file mode 100644 index 00000000..1e47c266 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightuprightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightuprightbxd.glif new file mode 100644 index 00000000..f06b42c0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightvertbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightvertbxd.glif new file mode 100644 index 00000000..16a9f0d1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightverthorzbxd.glif new file mode 100644 index 00000000..62c52c58 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightvertleftbxd.glif new file mode 100644 index 00000000..ff055c1e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightvertrightbxd.glif new file mode 100644 index 00000000..f2f8ef17 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lightvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ligspacer.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ligspacer.glif new file mode 100644 index 00000000..aaf0214e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ligspacer.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/llinebelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/llinebelow.glif index b60ba545..df538363 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/llinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/llinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lmacrondotbelow.glif index 3cdd424c..b66b3356 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lmacrondotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/lmacrondotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/m.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/m.glif index 58722f28..4f2252ef 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/m.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/m.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/macute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/macute.glif index e6a1b821..9f9813ca 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/macute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/macute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/mdotaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/mdotaccent.glif index b13e4b11..c4e7e4a7 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/mdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/mdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/mdotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/mdotbelow.glif index 856de70a..13d17c03 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/mdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/mdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/mediumshade.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/mediumshade.glif new file mode 100644 index 00000000..4e438ef8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/mediumshade.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/n.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/n.glif index 8d98b76f..71037118 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/n.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/n.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/nacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/nacute.glif index 4bcabe74..c980a641 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/nacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/nacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ncaron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ncaron.glif index 1d194e03..18954b8f 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ncaron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ncaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ncircumflexbelow.glif index 209107c6..605dbbfb 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ncircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ncircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ncommaaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ncommaaccent.glif index abcf4005..bf9954af 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ncommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ncommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ndotaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ndotaccent.glif index 752130da..216545c6 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ndotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ndotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ndotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ndotbelow.glif index 8e0def31..235894c7 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ngrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ngrave.glif index 8a6d1e95..98d9cc98 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ngrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/nine.num.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/nine.num.glif index f2d046c1..ebb0b622 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/nine.num.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/nine.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/nlinebelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/nlinebelow.glif index 7c3ccde5..f82a6398 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/nlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/nlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ntilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ntilde.glif index a91cfef1..fc277d31 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ntilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign.end.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign.end.glif new file mode 100644 index 00000000..faf27fe5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign.end.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign.middle.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign.middle.glif new file mode 100644 index 00000000..f21694ad --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign.start.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign.start.glif new file mode 100644 index 00000000..ba017f70 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign.start.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_braceleft.liga.glif new file mode 100644 index 00000000..9d2aba0d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_braceleft.liga.glif @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_bracketleft.liga.glif new file mode 100644 index 00000000..fae2bb07 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_bracketleft.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_colon.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_colon.liga.glif new file mode 100644 index 00000000..71739191 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_colon.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_equal.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_equal.liga.glif new file mode 100644 index 00000000..fa7b5bc4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_equal.liga.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_exclam.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_exclam.liga.glif new file mode 100644 index 00000000..a5077402 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_parenleft.liga.glif new file mode 100644 index 00000000..91ad7c44 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_parenleft.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_question.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_question.liga.glif new file mode 100644 index 00000000..1ddf82f2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_underscore.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_underscore.liga.glif new file mode 100644 index 00000000..612a7a87 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_underscore.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_underscore_parenleft.glif new file mode 100644 index 00000000..fbcbb503 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/numbersign_underscore_parenleft.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/oacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/oacute.glif index a3f8057f..873eee04 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/oacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/oacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/obreve.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/obreve.glif index 3fe8a7fb..0176e054 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/obreve.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/obreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocaron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocaron.glif index ba31c219..c8cf75f2 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocaron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflex.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflex.glif index 8d3c9292..8dba78e1 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexacute.glif index 76411b27..7844b669 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexdotbelow.glif index 6eae5fbf..174e80b9 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexgrave.glif index fc6c39fd..bc062575 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexhookabove.glif index 1919c7bf..1899e8e3 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflextilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflextilde.glif index 332e6087..52f69fd9 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ocircumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/odieresis.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/odieresis.glif index 430d1346..65cf0b26 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/odieresis.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/odieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/odotaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/odotaccent.glif index 2ec29389..e8a95ba6 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/odotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/odotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/odotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/odotbelow.glif index 2cea95cc..8d7d0312 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/odotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/odotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ograve.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ograve.glif index 5427cab7..86a5e398 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ograve.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ograve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohookabove.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohookabove.glif index b35d53ac..8fd58c32 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohookabove.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohorn.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohorn.glif index f90297a4..dd2cda36 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohorn.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohorn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohornacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohornacute.glif index e0df09e9..83550583 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohornacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohorndotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohorndotbelow.glif index 39f93ec0..efc6deab 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohorndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohorndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohorngrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohorngrave.glif index 252d0a91..a8f3f9ac 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohorngrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohorngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohornhookabove.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohornhookabove.glif index 1a69cfb1..6925ebac 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohorntilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohorntilde.glif index 589c272e..7b0eade5 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohorntilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohorntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohungarumlaut.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohungarumlaut.glif index eea4cced..e5ea4e14 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohungarumlaut.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ohungarumlaut.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/omacron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/omacron.glif index 3a41116a..bb2cd884 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/omacron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/omacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/one.num.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/one.num.glif index b7c7edcc..b8fcdd09 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/one.num.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/one.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/otilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/otilde.glif index 20af6753..60d89212 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/otilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/otilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/percent_percent.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/percent_percent.liga.glif new file mode 100644 index 00000000..5abf794b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/percent_percent.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_equal.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_equal.liga.glif new file mode 100644 index 00000000..34ae4196 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_hyphen.liga.glif new file mode 100644 index 00000000..c954b252 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_period.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_period.liga.glif new file mode 100644 index 00000000..7040f36f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_period_equal.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_period_equal.liga.glif new file mode 100644 index 00000000..84b32037 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_period_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_period_less.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_period_less.liga.glif new file mode 100644 index 00000000..10eb7b3d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_period_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_period_period.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_period_period.liga.glif new file mode 100644 index 00000000..0495ed42 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_period_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_question.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_question.liga.glif new file mode 100644 index 00000000..64e98fba --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/period_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/plus_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/plus_greater.liga.glif new file mode 100644 index 00000000..be748e20 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/plus_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/plus_plus.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/plus_plus.liga.glif new file mode 100644 index 00000000..0917cb87 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/plus_plus.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/plus_plus_plus.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/plus_plus_plus.liga.glif new file mode 100644 index 00000000..3919af9b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/plus_plus_plus.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/question_colon.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/question_colon.liga.glif new file mode 100644 index 00000000..bc6aa95c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/question_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/question_equal.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/question_equal.liga.glif new file mode 100644 index 00000000..085b429e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/question_equal.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/question_period.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/question_period.liga.glif new file mode 100644 index 00000000..a50382ca --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/question_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/question_question.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/question_question.liga.glif new file mode 100644 index 00000000..47df2d1f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/question_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/r.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/r.glif index 93d4c6fd..d44144be 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/r.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/r.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/racute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/racute.glif index 024afb17..38709824 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/racute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/racute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rcaron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rcaron.glif index 919de0b0..61f04f10 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rcaron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rcommaaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rcommaaccent.glif index 24b2d32b..fd571ef8 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rdotaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rdotaccent.glif index d33aa11b..5c29c435 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rdotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rdotbelow.glif index 325376da..034ac87a 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightdnheavyleftuplightbxd.glif new file mode 100644 index 00000000..e10e5fc2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightdnheavyleftuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/righteighthblock.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/righteighthblock.glif new file mode 100644 index 00000000..9d954a40 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/righteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/righthalfblock.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/righthalfblock.glif new file mode 100644 index 00000000..7d4f8cef --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/righthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightheavyleftdnlightbxd.glif new file mode 100644 index 00000000..644f5a5b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightheavyleftuplightbxd.glif new file mode 100644 index 00000000..4814e346 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightheavyleftvertlightbxd.glif new file mode 100644 index 00000000..7127b25f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightheavyleftvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightlightleftdnheavybxd.glif new file mode 100644 index 00000000..7f69d482 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightlightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightlightleftupheavybxd.glif new file mode 100644 index 00000000..1ca14f37 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightlightleftvertheavybxd.glif new file mode 100644 index 00000000..6035ef73 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightlightleftvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightupheavyleftdnlightbxd.glif new file mode 100644 index 00000000..dba9270c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rightupheavyleftdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ringcmb.cap.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ringcmb.cap.glif index 420ee38b..d8cf8952 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ringcmb.cap.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ringcmb.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rlinebelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rlinebelow.glif index 81c9470a..7f51abaa 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rmacrondotbelow.glif index 5b142490..5ee48a9a 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rmacrondotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/rmacrondotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/sacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/sacute.glif index 5d5c30bb..d11db18e 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/sacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/sacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/scaron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/scaron.glif index c2c2e820..ede3a962 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/scaron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/scaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/scircumflex.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/scircumflex.glif index 27bf4155..1b6101a0 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/scircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/scircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/scommaaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/scommaaccent.glif index b8a5b25d..551de10e 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/scommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/scommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/sdotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/sdotbelow.glif index 481363dd..c02002bb 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/sdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/sdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/semicolon_semicolon.liga.glif new file mode 100644 index 00000000..d21923b8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/semicolon_semicolon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/seven.num.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/seven.num.glif index dab83775..f4db09fd 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/seven.num.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/seven.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/six.num.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/six.num.glif index 831cf7ba..f366fc60 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/six.num.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/six.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_asterisk.liga.glif new file mode 100644 index 00000000..ae23ebb3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_backslash.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_backslash.liga.glif new file mode 100644 index 00000000..f61d2ac1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_backslash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_equal.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_equal.liga.glif new file mode 100644 index 00000000..e8c8c9c5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_equal.start.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_equal.start.glif new file mode 100644 index 00000000..9fbdb10f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_greater.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_greater.liga.glif new file mode 100644 index 00000000..16235a36 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_slash.liga.glif new file mode 100644 index 00000000..2bc4a71a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_slash_equal.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_slash_equal.liga.glif new file mode 100644 index 00000000..0ef61905 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_slash_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_slash_equal.start.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_slash_equal.start.glif new file mode 100644 index 00000000..d7cc072b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_slash_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_slash_slash.liga.glif new file mode 100644 index 00000000..3f943989 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/slash_slash_slash.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/tcaron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/tcaron.glif index 6bc0e132..ffde5176 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/tcaron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/tcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/tcircumflexbelow.glif index 65885812..8db98ec6 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/tcircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/tcircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/tcommaaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/tcommaaccent.glif index 6edb5551..9f348337 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/tcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/tcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/tdotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/tdotbelow.glif index 2c92df1c..afe6d93e 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/tdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/tdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/three.num.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/three.num.glif index 6fb8e189..2d2d9aa4 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/three.num.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/three.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/tlinebelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/tlinebelow.glif index f2b05ef2..30da63b0 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/tlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/tlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/two.num.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/two.num.glif index 4cffc661..eef8aa1d 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/two.num.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/two.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uacute.glif index 620b9386..0e37b012 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ubreve.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ubreve.glif index adadcf6f..e1dec90c 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ubreve.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ubreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ucaron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ucaron.glif index 7ca6e1b1..0b956169 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ucaron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ucaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ucircumflex.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ucircumflex.glif index adf60fe1..ba71eb26 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ucircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ucircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udieresis.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udieresis.glif index 86d53e78..d499179f 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udieresis.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udieresisacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udieresisacute.glif index 26e1574b..3e46a734 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udieresisacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udieresisacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udieresiscaron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udieresiscaron.glif index 201e41de..1d011190 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udieresiscaron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udieresiscaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udieresisgrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udieresisgrave.glif index cc918217..c5351994 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udieresisgrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udieresisgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udieresismacron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udieresismacron.glif index 340ee0a9..d5bc08d2 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udieresismacron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udieresismacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udotbelow.glif index 90688eb0..8f755a6a 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/udotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ugrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ugrave.glif index 789cdd47..b17308df 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ugrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ugrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhookabove.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhookabove.glif index bd0cb4f1..eb82556c 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhorn.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhorn.glif index e1aa532b..a372b007 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhorn.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhorn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhornacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhornacute.glif index 4a662f6f..7371685e 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhornacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhorndotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhorndotbelow.glif index a01d79dc..b0363c87 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhorndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhorndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhorngrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhorngrave.glif index 25824281..52ca6035 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhorngrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhorngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhornhookabove.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhornhookabove.glif index 55e8a571..d4ce78cf 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhorntilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhorntilde.glif index dd11482c..19f346b1 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhorntilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhorntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhungarumlaut.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhungarumlaut.glif index 537e15c0..ebcf6a2c 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhungarumlaut.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uhungarumlaut.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/umacron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/umacron.glif index 91a35e59..09f5fbe7 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/umacron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/umacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/underscore.end.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/underscore.end.glif new file mode 100644 index 00000000..ae38f021 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/underscore.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/underscore.middle.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/underscore.middle.glif new file mode 100644 index 00000000..9ba5d7ae --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/underscore.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/underscore.start.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/underscore.start.glif new file mode 100644 index 00000000..9625ac5f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/underscore.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/underscore_bar_underscore.m.glif new file mode 100644 index 00000000..be193bab --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/underscore_bar_underscore.m.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uni2011.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uni2011.glif index 937026ea..33e0d4b6 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uni2011.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uni2011.glif @@ -5,10 +5,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uni2610.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uni2610.glif new file mode 100644 index 00000000..a9e47028 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uni2610.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uni2611.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uni2611.glif new file mode 100644 index 00000000..3685f12d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uni2611.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uni2612.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uni2612.glif new file mode 100644 index 00000000..5b7602c7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uni2612.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uni2713.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uni2713.glif new file mode 100644 index 00000000..7cbdcf61 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uni2713.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0A_0.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0A_0.glif new file mode 100644 index 00000000..d51e95e5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0A_0.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0A_1.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0A_1.glif new file mode 100644 index 00000000..7b7bc091 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0A_1.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0A_2.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0A_2.glif new file mode 100644 index 00000000..9dada2b4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0A_2.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_0.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_0.glif new file mode 100644 index 00000000..ce752bcc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_0.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_1.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_1.glif new file mode 100644 index 00000000..1f1c1f19 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_1.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_2.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_2.glif new file mode 100644 index 00000000..7e306c6a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_2.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_3.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_3.glif new file mode 100644 index 00000000..afc7f8b4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_3.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/updblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/updblhorzsngbxd.glif new file mode 100644 index 00000000..d61821f8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/updblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/updblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/updblleftsngbxd.glif new file mode 100644 index 00000000..8cb39189 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/updblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/updblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/updblrightsngbxd.glif new file mode 100644 index 00000000..25c707f4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/updblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upeighthblock.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upeighthblock.glif new file mode 100644 index 00000000..87701940 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upeighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uphalfblock.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uphalfblock.glif new file mode 100644 index 00000000..018ed615 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uphalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upheavydnhorzlightbxd.glif new file mode 100644 index 00000000..158b497a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upheavydnhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upheavyhorzlightbxd.glif new file mode 100644 index 00000000..d77692f9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upheavyleftdnlightbxd.glif new file mode 100644 index 00000000..8b5d48ff --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upheavyleftlightbxd.glif new file mode 100644 index 00000000..3fb7a207 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upheavyrightdnlightbxd.glif new file mode 100644 index 00000000..0adfdfad --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upheavyrightlightbxd.glif new file mode 100644 index 00000000..2037d8de --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upleftdnleftdnrightquadrant.glif new file mode 100644 index 00000000..91309b79 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upleftdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upleftdnrightquadrant.glif new file mode 100644 index 00000000..9bb17821 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upleftdnrightquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upleftquadrant.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upleftquadrant.glif new file mode 100644 index 00000000..ef21c49d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upleftuprightdnleftquadrant.glif new file mode 100644 index 00000000..0d5294c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upleftuprightdnleftquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upleftuprightdnrightquadrant.glif new file mode 100644 index 00000000..56cf6e14 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upleftuprightdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uplightdnhorzheavybxd.glif new file mode 100644 index 00000000..489d430a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uplightdnhorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uplighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uplighthorzheavybxd.glif new file mode 100644 index 00000000..b54fecb4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uplighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uplightleftdnheavybxd.glif new file mode 100644 index 00000000..8c12ca2f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uplightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uplightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uplightleftheavybxd.glif new file mode 100644 index 00000000..168ac26f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uplightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uplightrightdnheavybxd.glif new file mode 100644 index 00000000..f8f71088 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uplightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uplightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uplightrightheavybxd.glif new file mode 100644 index 00000000..55aad623 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uplightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uprightdnleftdnrightquadrant.glif new file mode 100644 index 00000000..df5a022e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uprightdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uprightdnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uprightdnleftquadrant.glif new file mode 100644 index 00000000..93cbe757 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uprightdnleftquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uprightquadrant.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uprightquadrant.glif new file mode 100644 index 00000000..de8b454f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uprightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upsnghorzdblbxd.glif new file mode 100644 index 00000000..8aa48edf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upsngleftdblbxd.glif new file mode 100644 index 00000000..f67179a7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upsngrightdblbxd.glif new file mode 100644 index 00000000..44defda2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/upsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uring.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uring.glif index e4b5b61d..1034d7bb 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uring.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/uring.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/utilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/utilde.glif index 9acf8c37..140e7bbc 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/utilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/utilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vdotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vdotbelow.glif index c0edfe9f..f2769ffe 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertdblhorzsngbxd.glif new file mode 100644 index 00000000..4d815b5b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertdblhorzsngbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertdblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertdblleftsngbxd.glif new file mode 100644 index 00000000..ed0b8dcd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertdblleftsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertdblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertdblrightsngbxd.glif new file mode 100644 index 00000000..374166b2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertdblrightsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertheavyhorzlightbxd.glif new file mode 100644 index 00000000..6f98a0d2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertheavyhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertheavyleftlightbxd.glif new file mode 100644 index 00000000..a7ae7c83 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertheavyleftlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertheavyrightlightbxd.glif new file mode 100644 index 00000000..3577b6f4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertheavyrightlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertlighthorzheavybxd.glif new file mode 100644 index 00000000..514e0d7b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertlighthorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertlightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertlightleftheavybxd.glif new file mode 100644 index 00000000..04acbcf3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertlightleftheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertlightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertlightrightheavybxd.glif new file mode 100644 index 00000000..3341b6e3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertlightrightheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertsnghorzdblbxd.glif new file mode 100644 index 00000000..f9f4757d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertsnghorzdblbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertsngleftdblbxd.glif new file mode 100644 index 00000000..9d9c65d6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertsngleftdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertsngrightdblbxd.glif new file mode 100644 index 00000000..85458814 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/vertsngrightdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/w_w_w.liga.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/w_w_w.liga.glif new file mode 100644 index 00000000..cc1dbab6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/w_w_w.liga.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/wacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/wacute.glif index 083a455d..5f02e217 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/wacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/wacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/wcircumflex.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/wcircumflex.glif index 99259ea4..68278e09 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/wcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/wcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/wdieresis.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/wdieresis.glif index f771affa..e5a7477d 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/wdieresis.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/wdieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/wgrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/wgrave.glif index 22a62984..0313667d 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/wgrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/wgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/xdieresis.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/xdieresis.glif index a4e841e4..9b14e060 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/xdieresis.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/xdieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/yacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/yacute.glif index 457baed1..70c13aca 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/yacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/yacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ycircumflex.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ycircumflex.glif index 27d04828..5a649977 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ycircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ycircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ydieresis.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ydieresis.glif index 191b2cdb..3cdb111e 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ydieresis.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ydieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ydotaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ydotaccent.glif index d6897acf..35120e1b 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ydotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ydotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ydotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ydotbelow.glif index 90ab6fa0..c313694d 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ydotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ydotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ygrave.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ygrave.glif index 825b9d47..10fc8888 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ygrave.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ygrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/yhookabove.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/yhookabove.glif index 009e32ca..0fbc6c74 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/yhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/yhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ymacron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ymacron.glif index a9503085..5b10eabd 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ymacron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ymacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ytilde.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ytilde.glif index 6f075891..d17e2a5c 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ytilde.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/ytilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zacute.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zacute.glif index 0e325949..0a73c1ba 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zacute.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zcaron.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zcaron.glif index 117da38a..ae2f1adb 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zcaron.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zcircumflex.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zcircumflex.glif index 10ddf996..cfa0760e 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zdotaccent.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zdotaccent.glif index 0946c77a..1054a643 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zdotbelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zdotbelow.glif index c79dc2ab..cfda91c7 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zero.num.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zero.num.glif index bf03111e..e1ec4bd5 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zero.num.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zero.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zlinebelow.glif b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zlinebelow.glif index 6e5a742f..ecdf86c8 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/glyphs/zlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/lib.plist b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/lib.plist index 047cc547..29a765f7 100644 --- a/sources/instances/postscript/IntelOneMono-LightItalic.ufo/lib.plist +++ b/sources/instances/postscript/IntelOneMono-LightItalic.ufo/lib.plist @@ -710,6 +710,365 @@ circumflexgrave.cap circumflexhook.cap circumflextilde.cap + lighthorzbxd + heavyhorzbxd + lightvertbxd + heavyvertbxd + lighttrpldashhorzbxd + heavytrpldashhorzbxd + lighttrpldashvertbxd + heavytrpldashvertbxd + lightquaddashhorzbxd + heavyquaddashhorzbxd + lightquaddashvertbxd + heavyquaddashvertbxd + lightdnrightbxd + dnlightrightheavybxd + dnheavyrightlightbxd + heavydnrightbxd + lightdnleftbxd + dnlightleftheavybxd + dnheavyleftlightbxd + heavydnleftbxd + lightuprightbxd + uplightrightheavybxd + upheavyrightlightbxd + heavyuprightbxd + lightupleftbxd + uplightleftheavybxd + upheavyleftlightbxd + heavyupleftbxd + lightvertrightbxd + vertlightrightheavybxd + upheavyrightdnlightbxd + dnheavyrightuplightbxd + vertheavyrightlightbxd + dnlightrightupheavybxd + uplightrightdnheavybxd + heavyvertrightbxd + lightvertleftbxd + vertlightleftheavybxd + upheavyleftdnlightbxd + dnheavyleftuplightbxd + vertheavyleftlightbxd + dnlightleftupheavybxd + uplightleftdnheavybxd + heavyvertleftbxd + lightdnhorzbxd + leftheavyrightdnlightbxd + rightheavyleftdnlightbxd + dnlighthorzheavybxd + dnheavyhorzlightbxd + rightlightleftdnheavybxd + leftlightrightdnheavybxd + heavydnhorzbxd + lightuphorzbxd + leftheavyrightuplightbxd + rightheavyleftuplightbxd + uplighthorzheavybxd + upheavyhorzlightbxd + rightlightleftupheavybxd + leftlightrightupheavybxd + heavyuphorzbxd + lightverthorzbxd + leftheavyrightvertlightbxd + rightheavyleftvertlightbxd + vertlighthorzheavybxd + upheavydnhorzlightbxd + dnheavyuphorzlightbxd + vertheavyhorzlightbxd + leftupheavyrightdnlightbxd + rightupheavyleftdnlightbxd + leftdnheavyrightuplightbxd + rightdnheavyleftuplightbxd + dnlightuphorzheavybxd + uplightdnhorzheavybxd + rightlightleftvertheavybxd + leftlightrightvertheavybxd + heavyverthorzbxd + lightdbldashhorzbxd + heavydbldashhorzbxd + lightdbldashvertbxd + heavydbldashvertbxd + dblhorzbxd + dblvertbxd + dnsngrightdblbxd + dndblrightsngbxd + dbldnrightbxd + dnsngleftdblbxd + dndblleftsngbxd + dbldnleftbxd + upsngrightdblbxd + updblrightsngbxd + dbluprightbxd + upsngleftdblbxd + updblleftsngbxd + dblupleftbxd + vertsngrightdblbxd + vertdblrightsngbxd + dblvertrightbxd + vertsngleftdblbxd + vertdblleftsngbxd + dblvertleftbxd + dnsnghorzdblbxd + dndblhorzsngbxd + dbldnhorzbxd + upsnghorzdblbxd + updblhorzsngbxd + dbluphorzbxd + vertsnghorzdblbxd + vertdblhorzsngbxd + dblverthorzbxd + lightarcdnrightbxd + lightarcdnleftbxd + lightarcupleftbxd + lightarcuprightbxd + lightdiaguprightdnleftbxd + lightdiagupleftdnrightbxd + lightdiagcrossbxd + lightleftbxd + lightupbxd + lightrightbxd + lightdnbxd + heavyleftbxd + heavyupbxd + heavyrightbxd + heavydnbxd + lightleftheavyrightbxd + lightupheavydnbxd + heavyleftlightrightbxd + heavyuplightdnbxd + uphalfblock + dneighthblock + dnquarterblock + dnthreeeighthsblock + dnhalfblock + dnfiveeighthsblock + dnthreequartersblock + dnseveneighthsblock + fullblock + leftseveneighthsblock + leftthreequartersblock + leftfiveeighthsblock + lefthalfblock + leftthreeeighthsblock + leftquarterblock + lefteighthblock + righthalfblock + lightshade + mediumshade + darkshade + upeighthblock + righteighthblock + dnleftquadrant + dnrightquadrant + upleftquadrant + upleftdnleftdnrightquadrant + upleftdnrightquadrant + upleftuprightdnleftquadrant + upleftuprightdnrightquadrant + uprightquadrant + uprightdnleftquadrant + uprightdnleftdnrightquadrant + ligspacer + equal.start + equal.middle + equal.end + hyphen.start + hyphen.middle + hyphen.end + underscore.start + underscore.middle + underscore.end + numbersign.start + numbersign.middle + numbersign.end + period_equal.liga + period_period_equal.liga + period_hyphen.liga + colon_equal.liga + equal_equal.liga + exclam_equal.liga + equal_equal_equal.liga + exclam_equal_equal.liga + less_hyphen_less.liga + less_less_hyphen.liga + less_hyphen.liga + less_hyphen_greater.liga + hyphen_greater.liga + hyphen_greater_greater.liga + greater_hyphen_greater.liga + less_equal_less.liga + less_less_equal.liga + less_equal_greater.liga + equal_greater.liga + less_equal.liga + equal_greater_greater.liga + greater_equal_greater.liga + greater_equal.liga + greater_greater_equal.liga + greater_greater_hyphen.liga + greater_hyphen.liga + less_asciitilde_greater.liga + hyphen_less.liga + hyphen_less_less.liga + equal_less.liga + equal_less_less.liga + less_asciitilde_asciitilde.liga + less_asciitilde.liga + asciitilde_asciitilde.liga + asciitilde_greater.liga + asciitilde_asciitilde_greater + less_exclam_hyphen_hyphen.liga + slash_equal.liga + hyphen_bar.liga + bar_hyphen.liga + bar_equal.liga + hyphen_bar_bar.liga + bar_bar_hyphen.liga + equal_bar_bar.liga + bar_bar_equal.liga + equal_bar.liga + slash_slash_equal.liga + equal_slash.liga + equal_slash_slash.liga + equal_colon_equal.middle + equal_exclam_equal.middle + underscore_bar_underscore.m + hyphen_bar_hyphen.middle + equal_bar_equal.middle + hyphen_greater_hyphen.middle + hyphen_greater_greater_hyphen.m + equal_slash_slash_equal.middle + equal_slash_equal.middle + hyphen_bar_bar_hyphen.middle + equal_bar_bar_equal.middle + hyphen_less_hyphen.middle + hyphen_less_less_hyphen.middle + equal_greater_equal.middle + equal_less_equal.middle + equal_greater_greater_equal.m + equal_less_less_equal.middle + less_hyphen.start + greater_hyphen.start + bar_hyphen.start + less_equal.start + greater_equal.start + bar_equal.start + slash_equal.start + slash_slash_equal.start + less_less_hyphen.start + greater_greater_hyphen.start + bar_bar_hyphen.start + less_less_equal.start + greater_greater_equal.start + bar_bar_equal.start + hyphen_less.end + hyphen_greater.end + hyphen_bar.end + equal_less.end + equal_greater.end + equal_bar.end + hyphen_less_less.end + hyphen_greater_greater.end + hyphen_bar_bar.end + equal_less_less.end + equal_greater_greater.end + equal_bar_bar.end + equal_slash.end + equal_slash_slash.end + less_less_less.liga + less_less.liga + less_equal + less_greater.liga + greater_equal + greater_greater.liga + greater_greater_greater.liga + braceleft_bar.liga + bracketleft_bar.liga + less_colon.liga + colon_less.liga + greater_colon.liga + colon_greater.liga + bar_braceright.liga + bar_bracketright.liga + less_bar_bar_bar.liga + less_bar_bar.liga + less_bar.liga + less_bar_greater.liga + bar_greater.liga + bar_bar_greater.liga + bar_bar_bar_greater.liga + less_dollar.liga + less_dollar_greater.liga + dollar_greater.liga + less_plus.liga + less_plus_greater.liga + plus_greater.liga + less_asterisk.liga + less_asterisk_greater.liga + asterisk_greater.liga + slash_asterisk.liga + asterisk_slash.liga + slash_slash_slash.liga + slash_slash.liga + less_slash.liga + less_slash_greater.liga + slash_greater.liga + semicolon_semicolon.liga + colon_colon.liga + colon_colon_colon.liga + period_period.liga + period_period_period.liga + period_period_less.liga + exclam_exclam.liga + question_question.liga + percent_percent.liga + ampersand_ampersand.liga + bar_bar.liga + question_period.liga + question_colon.liga + plus_plus.liga + plus_plus_plus.liga + hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga + asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga + equal_asciitilde.liga + exclam_asciitilde.liga + asciitilde_hyphen.liga + w_w_w.liga + hyphen_asciitilde.liga + asciitilde_at.liga + asciicircum_equal.liga + question_equal.liga + numbersign_exclam.liga + numbersign_equal.liga + numbersign_colon.liga + numbersign_braceleft.liga + numbersign_bracketleft.liga + bracketright_numbersign.liga + numbersign_parenleft.liga + numbersign_question.liga + numbersign_underscore.liga + numbersign_underscore_parenleft + backslash_slash.liga + bar_bar_bar.liga + colon_colon_equal.liga + exclam_exclam_period.liga + period_question.liga + slash_backslash.liga + uniE0A0 + uniE0A1 + uniE0A2 + uniE0B0 + uniE0B1 + uniE0B2 + uniE0B3 + uni2610 + uni2611 + uni2612 + uni2713 public.postscriptNames diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/features.fea b/sources/instances/postscript/IntelOneMono-Medium.ufo/features.fea index 275785b9..288197ba 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/features.fea +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/features.fea @@ -1,368 +1,6 @@ -# ---------------------------- -# INTEL ONE MONO OPENTYPE CODE -# ---------------------------- -# ---------------- -# Language Systems -# ---------------- +include(../../features/shared.fea); -languagesystem DFLT dflt; -languagesystem latn dflt; -languagesystem latn TRK; -languagesystem latn AZE; -languagesystem latn CRT; -languagesystem latn CAT; +include(../../features/mark/IntelOneMono-Medium mark.fea); - -# ------- -# Classes -# ------- - -# Base Letters -@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; -@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; - -# Figures -@fig = [zero one two three four five six seven eight nine]; -@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; -@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; -@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; -@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; - -# Marks Above -@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; -@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; - -# Marks Below -@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; - - -# --------------- -# Localized Forms -# --------------- - -feature locl { - script latn; - language TRK; - lookup iTurkish { - sub i by idotaccent; - } iTurkish; - language AZE; - lookup iTurkish; - language CRT; - lookup iTurkish; - language CAT; - sub l periodcentered' l by middotcat; - sub L periodcentered' L by middotcat.cap; - # try fusing them - sub L middotcat.cap by L.dot; - sub L middotcat by L.dot; - sub l middotcat by l.dot; -} locl; - - -# --------------------------------- -# Glyph Composition / Decomposition -# --------------------------------- - -feature ccmp { - - # Decompose unicode lowercase characters whose uppercase counterparts have no unicode. - lookup Decomp { - sub hlinebelow by h macronlowmod; - sub jcaron by j caron; - } Decomp; - - # Replace double above accents by combined drawings. - lookup DblMarks { - sub dieresiscmb acutecmb by dieresisacute; - sub dieresiscmb gravecmb by dieresisgrave; - sub dieresiscmb caroncmb by dieresiscaron; - sub dieresiscmb macroncmb by dieresismacron; - sub brevecmb acutecmb by breveacute; - sub brevecmb gravecmb by brevegrave; - sub brevecmb hookcmb by brevehook; - sub brevecmb tildecmb by brevetilde; - sub circumflexcmb acutecmb by circumflexacute; - sub circumflexcmb gravecmb by circumflexgrave; - sub circumflexcmb hookcmb by circumflexhook; - sub circumflexcmb tildecmb by circumflextilde; - # capital forms - sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; - sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; - sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; - sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; - sub brevecmb.cap acutecmb.cap by breveacute.cap; - sub brevecmb.cap gravecmb.cap by brevegrave.cap; - sub brevecmb.cap hookcmb.cap by brevehook.cap; - sub brevecmb.cap tildecmb.cap by brevetilde.cap; - sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; - sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; - sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; - sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; - } DblMarks; - - # Replace combining marks that follow a uppercase letter by their uppercase form - lookup CapitalMarks { - sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; - sub [@ltrUC] [@lcMarks]' by [@ucMarks]; - } CapitalMarks; - - # Replace letters with dotless counterparts when followed by a combining mark - lookup Dotless { - sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; - sub [i j]' [@lcMarks] by [dotlessi dotlessj]; - } Dotless; - - # Replace e ogonek with pre-drawn eogonek - lookup eogonek { - sub e ogonekcmb by eogonek; - } eogonek; - -} ccmp; - - -# ---------- -# Numerators -# ---------- - -feature numr { - sub @fig by @figNum; -} numr; - -# ------------ -# Denominators -# ------------ - -feature dnom { - sub @fig by @figDen; -} dnom; - -# ----------- -# Superscript -# ----------- - -feature sups { - sub @fig by @figSup; -} sups; - -# --------------------- -# Subscript & Inferiors -# --------------------- - -feature subs { - sub @fig by @figInf; -} subs; - -feature sinf { - sub @fig by @figInf; -} sinf; - - -# --------------------- -# Contextual Alternates -# --------------------- - -feature calt { - # shifts colon to align with math symbols when used together - - sub colon' [plus equal greater less hyphen] by colon.fig; - sub [plus equal less greater hyphen] colon' by colon.fig; - - sub colon' [colon colon.fig] by colon.fig; - sub colon.fig colon' by colon.fig; - -} calt; - - -# -------------- -# Stylistic Sets -# -------------- - -feature ss11 { - featureNames { - name "Raised Colon (Figures Only)"; # Windows English - name 1 0 0 "Raised Colon (Figures Only)"; # Mac English - }; - lookup FigureColonContextual { - sub @fig colon' @fig by colon.fig; - } FigureColonContextual; -} ss11; - -feature ss12 { - featureNames { - name "Raised Colon (Global)"; # Windows English - name 1 0 0 "Raised Colon (Global)"; # Mac English - }; - lookup FigureColon { - sub colon by colon.fig; - } FigureColon; -} ss12; - - -# -------------------- -# Stylistic Alternates -# -------------------- - -feature salt { - lookup FigureColon; # SS12 -} salt; - - -# --------------------------------------------------------------------- -# MARK | Generated: November 23, 2022 - 02:38:01 PM by 'markFeature.py' -# --------------------------------------------------------------------- - -markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; -markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; -markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; -markClass [cedillacmb] @mark_belowcedilla; -markClass [ogonekcmb] @mark_belowogonek; - -feature mark { - - lookup aboveLC{ - pos base [a] mark @mark_aboveLC; - pos base [c] mark @mark_aboveLC; - pos base [dotlessi] mark @mark_aboveLC; - pos base [dotlessj] mark @mark_aboveLC; - pos base [e] mark @mark_aboveLC; - pos base [eogonek] mark @mark_aboveLC; - pos base [g] mark @mark_aboveLC; - pos base [m] mark @mark_aboveLC; - pos base [n] mark @mark_aboveLC; - pos base [o] mark @mark_aboveLC; - pos base [p] mark @mark_aboveLC; - pos base [s] mark @mark_aboveLC; - pos base [u] mark @mark_aboveLC; - pos base [z] mark @mark_aboveLC; - } aboveLC; - - lookup aboveUC{ - pos base [A] mark @mark_aboveUC; - pos base [C] mark @mark_aboveUC; - pos base [E] mark @mark_aboveUC; - pos base [Eogonek] mark @mark_aboveUC; - pos base [G] mark @mark_aboveUC; - pos base [I] mark @mark_aboveUC; - pos base [J] mark @mark_aboveUC; - pos base [M] mark @mark_aboveUC; - pos base [N] mark @mark_aboveUC; - pos base [O] mark @mark_aboveUC; - pos base [P] mark @mark_aboveUC; - pos base [S] mark @mark_aboveUC; - pos base [U] mark @mark_aboveUC; - pos base [Z] mark @mark_aboveUC; - } aboveUC; - - lookup below{ - pos base [C] mark @mark_below; - pos base [Dcroat] mark @mark_below; - pos base [E] mark @mark_below; - pos base [H] mark @mark_below; - pos base [I] mark @mark_below; - pos base [O] mark @mark_below; - pos base [S] mark @mark_below; - pos base [U] mark @mark_below; - pos base [X] mark @mark_below; - pos base [Z] mark @mark_below; - pos base [c] mark @mark_below; - pos base [dcroat] mark @mark_below; - pos base [dotlessi] mark @mark_below; - pos base [e] mark @mark_below; - pos base [h] mark @mark_below; - pos base [o] mark @mark_below; - pos base [s] mark @mark_below; - pos base [u] mark @mark_below; - pos base [x] mark @mark_below; - pos base [z] mark @mark_below; - } below; - - lookup belowcedilla{ - pos base [Z] mark @mark_belowcedilla; - pos base [z] mark @mark_belowcedilla; - } belowcedilla; - - lookup belowogonek{ - pos base [A] mark @mark_belowogonek; - pos base [E] mark @mark_belowogonek; - pos base [I] mark @mark_belowogonek; - pos base [O] mark @mark_belowogonek; - pos base [U] mark @mark_belowogonek; - pos base [a] mark @mark_belowogonek; - pos base [dotlessi] mark @mark_belowogonek; - pos base [e] mark @mark_belowogonek; - pos base [o] mark @mark_belowogonek; - pos base [u] mark @mark_belowogonek; - } belowogonek; - -} mark; - -@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; -@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; - -table GDEF { - GlyphClassDef @BASES,,@MARKS,; -} GDEF; - - -# -------------- -# All Alternates -# -------------- - -feature aalt { - sub germandbls from [germandbls uni1E9E]; - sub uni1E9E from [uni1E9E germandbls]; - sub colon from [colon colon.fig]; - sub colon.fig from [colon.fig colon]; - sub eight from [eight eight.den eight.sup eight.num eight.inf]; - sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; - sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; - sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; - sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; - sub five from [five five.inf five.num five.den five.sup]; - sub five.sup from [five.sup five five.inf five.num five.den]; - sub five.den from [five.den five.sup five five.inf five.num]; - sub five.num from [five.num five.den five.sup five five.inf]; - sub five.inf from [five.inf five.num five.den five.sup five]; - sub four from [four four.sup four.num four.den four.inf]; - sub four.inf from [four.inf four four.sup four.num four.den]; - sub four.den from [four.den four.inf four four.sup four.num]; - sub four.num from [four.num four.den four.inf four four.sup]; - sub four.sup from [four.sup four.num four.den four.inf four]; - sub nine from [nine nine.den nine.inf nine.num nine.sup]; - sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; - sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; - sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; - sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; - sub one from [one one.den one.num one.inf one.sup]; - sub one.sup from [one.sup one one.den one.num one.inf]; - sub one.inf from [one.inf one.sup one one.den one.num]; - sub one.num from [one.num one.inf one.sup one one.den]; - sub one.den from [one.den one.num one.inf one.sup one]; - sub seven from [seven seven.inf seven.num seven.sup seven.den]; - sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; - sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; - sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; - sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; - sub six from [six six.num six.sup six.den six.inf]; - sub six.inf from [six.inf six six.num six.sup six.den]; - sub six.den from [six.den six.inf six six.num six.sup]; - sub six.sup from [six.sup six.den six.inf six six.num]; - sub six.num from [six.num six.sup six.den six.inf six]; - sub three from [three three.inf three.den three.num three.sup]; - sub three.sup from [three.sup three three.inf three.den three.num]; - sub three.num from [three.num three.sup three three.inf three.den]; - sub three.den from [three.den three.num three.sup three three.inf]; - sub three.inf from [three.inf three.den three.num three.sup three]; - sub two from [two two.inf two.sup two.num two.den]; - sub two.den from [two.den two two.inf two.sup two.num]; - sub two.num from [two.num two.den two two.inf two.sup]; - sub two.sup from [two.sup two.num two.den two two.inf]; - sub two.inf from [two.inf two.sup two.num two.den two]; - sub zero from [zero zero.sup zero.num zero.den zero.inf]; - sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; - sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; - sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; - sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; -} aalt; +include(../../features/aalt.fea); diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/fontinfo.plist b/sources/instances/postscript/IntelOneMono-Medium.ufo/fontinfo.plist index 070b2f51..68df6684 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/fontinfo.plist +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/fontinfo.plist @@ -7,7 +7,7 @@ capHeight 655 copyright - Copyright 2023 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) descender -260 familyName @@ -57,7 +57,7 @@ platformID 1 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -69,7 +69,7 @@ platformID 3 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -403,7 +403,7 @@ versionMajor 1 versionMinor - 3 + 4 xHeight 471 diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/L_.dot.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/L_.dot.glif index 68444ee1..a846c3a9 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/L_.dot.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/L_.dot.glif @@ -8,7 +8,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_breve.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_breve.glif index db1248fc..20a13237 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_breve.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_breve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_caron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_caron.glif index 08ef8e76..9ca1ee6d 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflex.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflex.glif index a26635ad..f5e5ed00 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflexacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflexacute.glif index 1205b2a9..3d0d348a 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflexdotbelow.glif index 616ee6ec..a9de3d36 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflexgrave.glif index db4e50a7..8efd59bd 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflexhookabove.glif index 8d4dc267..20c0661d 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflextilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflextilde.glif index 638aed22..0ff6b581 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_circumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_dieresis.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_dieresis.glif index 3e78d486..1a7cd345 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_dotaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_dotaccent.glif index b7f5c711..8a84259c 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_dotbelow.glif index 1d94f70a..328b2629 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_hookabove.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_hookabove.glif index 02553b50..57af63f0 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_horn.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_horn.glif index 171b95b6..fc8a6e03 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_horn.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_horn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_hornacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_hornacute.glif index 7167d8d6..e4033ea8 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_hornacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_hornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_horndotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_horndotbelow.glif index 2e209c6a..93878b8d 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_horndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_horndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_horngrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_horngrave.glif index 7dc4ba57..8291aefe 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_horngrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_horngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_hornhookabove.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_hornhookabove.glif index 9125d39a..8ddccec2 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_hornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_hornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_horntilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_horntilde.glif index 4c5f8e21..b4b5bac4 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_horntilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_horntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_macron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_macron.glif index e8604804..f30b2c49 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_macron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_tilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_tilde.glif index 2a395069..bca62047 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/O_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_acute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_acute.glif index baaaa66e..e36cebd5 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_caron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_caron.glif index 55099d30..df9cb944 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_commaaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_commaaccent.glif index 2ece86ee..7dae30f1 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_dotaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_dotaccent.glif index ffc26681..c7e23a35 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_dotbelow.glif index 48fee15c..67e350bf 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_linebelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_linebelow.glif index f4a403ff..fd43f879 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_macrondotbelow.glif index 39740c57..34fe1af3 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_macrondotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/R_macrondotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/S_acute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/S_acute.glif index da0f57f3..97ad10fa 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/S_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/S_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/S_caron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/S_caron.glif index 42378b17..e34d329d 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/S_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/S_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/S_circumflex.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/S_circumflex.glif index b87b967a..f82e9b4b 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/S_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/S_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/S_commaaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/S_commaaccent.glif index 01872b07..38972fa8 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/S_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/S_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/S_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/S_dotbelow.glif index 1714f8fd..8393fc9b 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/S_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/S_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/T_caron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/T_caron.glif index 8601d63e..23d20008 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/T_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/T_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/T_circumflexbelow.glif index 8408b0fc..04e62723 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/T_circumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/T_circumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/T_commaaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/T_commaaccent.glif index f6a0d2b9..8efd5833 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/T_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/T_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/T_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/T_dotbelow.glif index eb1d86db..3d102e5d 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/T_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/T_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/T_linebelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/T_linebelow.glif index ec706e83..7c07de34 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/T_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/T_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_acute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_acute.glif index 699b86c5..b0b6e168 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_breve.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_breve.glif index 84b2f57e..9eba3d7f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_breve.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_breve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_caron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_caron.glif index 5262e314..be0f3c37 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_circumflex.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_circumflex.glif index ca6250bc..56808f64 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dieresis.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dieresis.glif index 90fdbd07..c558bf10 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dieresisacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dieresisacute.glif index f02c4dd4..e5cbbe3c 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dieresisacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dieresisacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dieresiscaron.glif index dd6e65f6..dc2ff1ac 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dieresiscaron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dieresiscaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dieresisgrave.glif index 8923d6b3..b227a449 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dieresisgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dieresisgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dieresismacron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dieresismacron.glif index 402a3184..3d8c49b3 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dieresismacron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dieresismacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dotbelow.glif index 52acf8a9..d2f0ef86 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_grave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_grave.glif index 94988506..debff763 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_grave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_hookabove.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_hookabove.glif index 3ad554df..fccb10eb 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_horn.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_horn.glif index e3c134dd..40fc613a 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_horn.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_horn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_hornacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_hornacute.glif index 2790a00b..7e948009 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_hornacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_hornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_horndotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_horndotbelow.glif index 01d51edb..eb199a1c 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_horndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_horndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_horngrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_horngrave.glif index ba862ad5..e2fae54b 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_horngrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_horngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_hornhookabove.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_hornhookabove.glif index 9f80ac8b..fd1cf394 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_hornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_hornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_horntilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_horntilde.glif index b8cfe8f7..a348994a 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_horntilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_horntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_hungarumlaut.glif index 8e6b258f..f97071b4 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_hungarumlaut.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_hungarumlaut.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_macron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_macron.glif index 44534a2b..f40fd627 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_macron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_ring.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_ring.glif index 46254435..f5aa731d 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_ring.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_ring.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_tilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_tilde.glif index 756b63b8..7a348d5c 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/U_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/V_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/V_dotbelow.glif index 85bdfef3..4c72e054 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/V_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/V_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/W_acute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/W_acute.glif index 3844aaff..e279689d 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/W_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/W_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/W_circumflex.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/W_circumflex.glif index ccd6c067..0593fed6 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/W_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/W_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/W_dieresis.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/W_dieresis.glif index 3c58443f..a513fa2d 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/W_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/W_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/W_grave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/W_grave.glif index aa72974e..b7532bf3 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/W_grave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/W_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/X_dieresis.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/X_dieresis.glif index f7bf42f5..58ed5e6a 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/X_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/X_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_acute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_acute.glif index c8a56561..5436f1ae 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_circumflex.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_circumflex.glif index 7e869ae3..e211543c 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_dieresis.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_dieresis.glif index 12b5fac3..2509e710 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_dotaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_dotaccent.glif index c448cc18..f74cfd00 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_dotbelow.glif index ccf67892..e4ce370f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_grave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_grave.glif index dd9b85ab..5a38998b 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_grave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_hookabove.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_hookabove.glif index aa20055e..6aa16c3c 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_macron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_macron.glif index 46983961..2358b36f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_macron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_tilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_tilde.glif index 0ddf62b4..b22db90f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Y_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_acute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_acute.glif index 568871d1..975288b5 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_acute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_caron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_caron.glif index 0edff1c8..5396347b 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_caron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_circumflex.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_circumflex.glif index df67350d..be6ce3ba 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_dotaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_dotaccent.glif index c92cc2cd..8fefa51f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_dotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_dotbelow.glif index 590184e1..e2035aaf 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_linebelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_linebelow.glif index c69bfce4..77e97d04 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/Z_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/aacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/aacute.glif index d59e61e1..8095af24 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/aacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/aacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abreve.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abreve.glif index 99f7f98b..e51f73d4 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abreve.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abreveacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abreveacute.glif index 203aeb54..379db7e1 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abreveacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abreveacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abrevedotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abrevedotbelow.glif index 3ba2a918..1d0995ef 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abrevedotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abrevedotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abrevegrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abrevegrave.glif index 1b32213a..2abf44b1 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abrevegrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abrevegrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abrevehookabove.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abrevehookabove.glif index 23a43fb1..4abf8c74 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abrevehookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abrevehookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abrevetilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abrevetilde.glif index fc309b50..0ac22d93 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abrevetilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/abrevetilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acaron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acaron.glif index a8d9dda8..41311b8a 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acaron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflex.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflex.glif index 73daedc1..6cbf7afe 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflexacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflexacute.glif index 8c4375c2..ce44730c 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflexdotbelow.glif index cf1a5ce8..b129b272 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflexgrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflexgrave.glif index 104a57fe..719a8b86 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflexhookabove.glif index e146e8c2..09d4cda0 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflextilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflextilde.glif index 4408fd3c..f0fbbab2 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/acircumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/adieresis.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/adieresis.glif index eecfbe9c..d507b64c 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/adieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/adieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/adotaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/adotaccent.glif index 0b94a5a3..58df4b9a 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/adotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/adotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/adotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/adotbelow.glif index 4ee8847e..68a4d7cf 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/adotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/adotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/agrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/agrave.glif index 68c946db..ec66c352 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/agrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/agrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ahookabove.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ahookabove.glif index 0f0ed741..b1bb21a0 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ahookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ahookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/amacron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/amacron.glif index cbac8c45..538ddb4c 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/amacron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/amacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ampersand_ampersand.liga.glif new file mode 100644 index 00000000..142dc287 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ampersand_ampersand.liga.glif @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/aring.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/aring.glif index a25b3606..735bf814 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/aring.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/aring.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asciicircum_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asciicircum_equal.liga.glif new file mode 100644 index 00000000..b46e25f6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asciicircum_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..3834be32 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asciitilde_asciitilde.liga.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asciitilde_asciitilde_greater.glif new file mode 100644 index 00000000..0ee77feb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asciitilde_asciitilde_greater.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asciitilde_at.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asciitilde_at.liga.glif new file mode 100644 index 00000000..94aaccf3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asciitilde_at.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asciitilde_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asciitilde_greater.liga.glif new file mode 100644 index 00000000..753f84f9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asciitilde_greater.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asciitilde_hyphen.liga.glif new file mode 100644 index 00000000..530c812a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asciitilde_hyphen.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asterisk_asterisk.liga.glif new file mode 100644 index 00000000..5bc18e50 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asterisk_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif new file mode 100644 index 00000000..6f072acf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asterisk_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asterisk_greater.liga.glif new file mode 100644 index 00000000..ccc8138c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asterisk_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asterisk_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asterisk_slash.liga.glif new file mode 100644 index 00000000..71046ba6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/asterisk_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/atilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/atilde.glif index a3c82da5..288d075c 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/atilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/atilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/backslash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/backslash_slash.liga.glif new file mode 100644 index 00000000..7b554e8c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/backslash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar.liga.glif new file mode 100644 index 00000000..6e09a289 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_bar.liga.glif new file mode 100644 index 00000000..dc1b5564 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_bar.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_bar_greater.liga.glif new file mode 100644 index 00000000..498cc7ab --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_bar_greater.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_equal.liga.glif new file mode 100644 index 00000000..9dbd3876 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_equal.start.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_equal.start.glif new file mode 100644 index 00000000..369d9ee8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_greater.liga.glif new file mode 100644 index 00000000..aeb4d3fd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_greater.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_hyphen.liga.glif new file mode 100644 index 00000000..7efa65c7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_hyphen.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_hyphen.start.glif new file mode 100644 index 00000000..06e1e979 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bar_hyphen.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_braceright.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_braceright.liga.glif new file mode 100644 index 00000000..7b1beb2c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_braceright.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bracketright.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bracketright.liga.glif new file mode 100644 index 00000000..968e829d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_bracketright.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_equal.liga.glif new file mode 100644 index 00000000..a80f7497 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_equal.start.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_equal.start.glif new file mode 100644 index 00000000..5aed0d8d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_greater.liga.glif new file mode 100644 index 00000000..ac6fa8f1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_hyphen.liga.glif new file mode 100644 index 00000000..846a5496 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_hyphen.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_hyphen.start.glif new file mode 100644 index 00000000..b1ea1fe6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bar_hyphen.start.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/blinebelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/blinebelow.glif index af509678..3b36c1d4 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/blinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/blinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/braceleft_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/braceleft_bar.liga.glif new file mode 100644 index 00000000..7b703d88 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/braceleft_bar.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bracketleft_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bracketleft_bar.liga.glif new file mode 100644 index 00000000..ce43c8e5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bracketleft_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bracketright_numbersign.liga.glif new file mode 100644 index 00000000..ad84f221 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/bracketright_numbersign.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/breveacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/breveacute.glif index b38ffc6d..25cfb491 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/breveacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/breveacute.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/brevegrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/brevegrave.glif index 77144000..6e38cc4a 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/brevegrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/brevegrave.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/brevehook.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/brevehook.glif index 2b61285a..e6f1eb7b 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/brevehook.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/brevehook.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/brevetilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/brevetilde.glif index 2d19a4e0..373475f5 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/brevetilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/brevetilde.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/cacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/cacute.glif index 2b8d0a61..91178513 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/cacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/cacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ccaron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ccaron.glif index d8269dd2..1a31d365 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ccaron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ccaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ccircumflex.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ccircumflex.glif index 1b5d184c..bf57a1f5 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ccircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ccircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/cdotaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/cdotaccent.glif index a9dd2768..9e22af8d 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/cdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/cdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/circumflexacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/circumflexacute.glif index 28abc1fa..0ddb1897 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/circumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/circumflexacute.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/circumflexgrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/circumflexgrave.glif index 88569653..9a90354f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/circumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/circumflexgrave.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/circumflexhook.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/circumflexhook.glif index 9ab475a8..bd570506 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/circumflexhook.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/circumflexhook.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/circumflextilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/circumflextilde.glif index ff9fc1b0..1fc725d2 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/circumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/circumflextilde.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/colon_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/colon_colon.liga.glif new file mode 100644 index 00000000..513ec73c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/colon_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/colon_colon_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/colon_colon_colon.liga.glif new file mode 100644 index 00000000..4de5a363 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/colon_colon_colon.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/colon_colon_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/colon_colon_equal.liga.glif new file mode 100644 index 00000000..978234b1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/colon_colon_equal.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/colon_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/colon_equal.liga.glif new file mode 100644 index 00000000..4f67868f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/colon_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/colon_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/colon_greater.liga.glif new file mode 100644 index 00000000..e9089c8a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/colon_greater.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/colon_less.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/colon_less.liga.glif new file mode 100644 index 00000000..b1c971e6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/colon_less.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/commaturnedabovecmb.glif index 6a4ed284..5ce03dcf 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/commaturnedabovecmb.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/commaturnedabovecmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/contents.plist b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/contents.plist index 9b3fa25c..10a2ded8 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/contents.plist +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/contents.plist @@ -498,6 +498,8 @@ amacron.glif ampersand ampersand.glif + ampersand_ampersand.liga + ampersand_ampersand.liga.glif aogonek aogonek.glif apostrophemod @@ -508,10 +510,30 @@ aring.glif asciicircum asciicircum.glif + asciicircum_equal.liga + asciicircum_equal.liga.glif asciitilde asciitilde.glif + asciitilde_asciitilde.liga + asciitilde_asciitilde.liga.glif + asciitilde_asciitilde_greater + asciitilde_asciitilde_greater.glif + asciitilde_at.liga + asciitilde_at.liga.glif + asciitilde_greater.liga + asciitilde_greater.liga.glif + asciitilde_hyphen.liga + asciitilde_hyphen.liga.glif asterisk asterisk.glif + asterisk_asterisk.liga + asterisk_asterisk.liga.glif + asterisk_asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga.glif + asterisk_greater.liga + asterisk_greater.liga.glif + asterisk_slash.liga + asterisk_slash.liga.glif at at.glif atilde @@ -520,20 +542,58 @@ b.glif backslash backslash.glif + backslash_slash.liga + backslash_slash.liga.glif bahtthai bahtthai.glif bar bar.glif + bar_bar.liga + bar_bar.liga.glif + bar_bar_bar.liga + bar_bar_bar.liga.glif + bar_bar_bar_greater.liga + bar_bar_bar_greater.liga.glif + bar_bar_equal.liga + bar_bar_equal.liga.glif + bar_bar_equal.start + bar_bar_equal.start.glif + bar_bar_greater.liga + bar_bar_greater.liga.glif + bar_bar_hyphen.liga + bar_bar_hyphen.liga.glif + bar_bar_hyphen.start + bar_bar_hyphen.start.glif + bar_braceright.liga + bar_braceright.liga.glif + bar_bracketright.liga + bar_bracketright.liga.glif + bar_equal.liga + bar_equal.liga.glif + bar_equal.start + bar_equal.start.glif + bar_greater.liga + bar_greater.liga.glif + bar_hyphen.liga + bar_hyphen.liga.glif + bar_hyphen.start + bar_hyphen.start.glif blinebelow blinebelow.glif braceleft braceleft.glif + braceleft_bar.liga + braceleft_bar.liga.glif braceright braceright.glif bracketleft bracketleft.glif + bracketleft_bar.liga + bracketleft_bar.liga.glif bracketright bracketright.glif + bracketright_numbersign.liga + bracketright_numbersign.liga.glif breve breve.glif breveacute @@ -612,6 +672,18 @@ colon.glif colon.fig colon.fig.glif + colon_colon.liga + colon_colon.liga.glif + colon_colon_colon.liga + colon_colon_colon.liga.glif + colon_colon_equal.liga + colon_colon_equal.liga.glif + colon_equal.liga + colon_equal.liga.glif + colon_greater.liga + colon_greater.liga.glif + colon_less.liga + colon_less.liga.glif comma comma.glif commaaboverightcmb @@ -628,8 +700,32 @@ dagger.glif daggerdbl daggerdbl.glif + darkshade + darkshade.glif + dbldnhorzbxd + dbldnhorzbxd.glif + dbldnleftbxd + dbldnleftbxd.glif + dbldnrightbxd + dbldnrightbxd.glif + dblhorzbxd + dblhorzbxd.glif dblprimemod dblprimemod.glif + dbluphorzbxd + dbluphorzbxd.glif + dblupleftbxd + dblupleftbxd.glif + dbluprightbxd + dbluprightbxd.glif + dblvertbxd + dblvertbxd.glif + dblverthorzbxd + dblverthorzbxd.glif + dblvertleftbxd + dblvertleftbxd.glif + dblvertrightbxd + dblvertrightbxd.glif dcaron dcaron.glif dcircumflexbelow @@ -668,8 +764,64 @@ divide.glif dlinebelow dlinebelow.glif + dndblhorzsngbxd + dndblhorzsngbxd.glif + dndblleftsngbxd + dndblleftsngbxd.glif + dndblrightsngbxd + dndblrightsngbxd.glif + dneighthblock + dneighthblock.glif + dnfiveeighthsblock + dnfiveeighthsblock.glif + dnhalfblock + dnhalfblock.glif + dnheavyhorzlightbxd + dnheavyhorzlightbxd.glif + dnheavyleftlightbxd + dnheavyleftlightbxd.glif + dnheavyleftuplightbxd + dnheavyleftuplightbxd.glif + dnheavyrightlightbxd + dnheavyrightlightbxd.glif + dnheavyrightuplightbxd + dnheavyrightuplightbxd.glif + dnheavyuphorzlightbxd + dnheavyuphorzlightbxd.glif + dnleftquadrant + dnleftquadrant.glif + dnlighthorzheavybxd + dnlighthorzheavybxd.glif + dnlightleftheavybxd + dnlightleftheavybxd.glif + dnlightleftupheavybxd + dnlightleftupheavybxd.glif + dnlightrightheavybxd + dnlightrightheavybxd.glif + dnlightrightupheavybxd + dnlightrightupheavybxd.glif + dnlightuphorzheavybxd + dnlightuphorzheavybxd.glif + dnquarterblock + dnquarterblock.glif + dnrightquadrant + dnrightquadrant.glif + dnseveneighthsblock + dnseveneighthsblock.glif + dnsnghorzdblbxd + dnsnghorzdblbxd.glif + dnsngleftdblbxd + dnsngleftdblbxd.glif + dnsngrightdblbxd + dnsngrightdblbxd.glif + dnthreeeighthsblock + dnthreeeighthsblock.glif + dnthreequartersblock + dnthreequartersblock.glif dollar dollar.glif + dollar_greater.liga + dollar_greater.liga.glif dong dong.glif dotaccent @@ -738,12 +890,86 @@ eogonek.glif equal equal.glif + equal.end + equal.end.glif + equal.middle + equal.middle.glif + equal.start + equal.start.glif + equal_asciitilde.liga + equal_asciitilde.liga.glif + equal_bar.end + equal_bar.end.glif + equal_bar.liga + equal_bar.liga.glif + equal_bar_bar.end + equal_bar_bar.end.glif + equal_bar_bar.liga + equal_bar_bar.liga.glif + equal_bar_bar_equal.middle + equal_bar_bar_equal.middle.glif + equal_bar_equal.middle + equal_bar_equal.middle.glif + equal_colon_equal.middle + equal_colon_equal.middle.glif + equal_equal.liga + equal_equal.liga.glif + equal_equal_equal.liga + equal_equal_equal.liga.glif + equal_exclam_equal.middle + equal_exclam_equal.middle.glif + equal_greater.end + equal_greater.end.glif + equal_greater.liga + equal_greater.liga.glif + equal_greater_equal.middle + equal_greater_equal.middle.glif + equal_greater_greater.end + equal_greater_greater.end.glif + equal_greater_greater.liga + equal_greater_greater.liga.glif + equal_greater_greater_equal.m + equal_greater_greater_equal.m.glif + equal_less.end + equal_less.end.glif + equal_less.liga + equal_less.liga.glif + equal_less_equal.middle + equal_less_equal.middle.glif + equal_less_less.end + equal_less_less.end.glif + equal_less_less.liga + equal_less_less.liga.glif + equal_less_less_equal.middle + equal_less_less_equal.middle.glif + equal_slash.end + equal_slash.end.glif + equal_slash.liga + equal_slash.liga.glif + equal_slash_equal.middle + equal_slash_equal.middle.glif + equal_slash_slash.end + equal_slash_slash.end.glif + equal_slash_slash.liga + equal_slash_slash.liga.glif + equal_slash_slash_equal.middle + equal_slash_slash_equal.middle.glif eth eth.glif etilde etilde.glif exclam exclam.glif + exclam_asciitilde.liga + exclam_asciitilde.liga.glif + exclam_equal.liga + exclam_equal.liga.glif + exclam_equal_equal.liga + exclam_equal_equal.liga.glif + exclam_exclam.liga + exclam_exclam.liga.glif + exclam_exclam_period.liga + exclam_exclam_period.liga.glif exclamdown exclamdown.glif f @@ -778,6 +1004,8 @@ fracbar.glif fraction fraction.glif + fullblock + fullblock.glif g g.glif gbreve @@ -802,6 +1030,34 @@ gravecmb.cap.glif greater greater.glif + greater_colon.liga + greater_colon.liga.glif + greater_equal + greater_equal.glif + greater_equal.liga + greater_equal.liga.glif + greater_equal.start + greater_equal.start.glif + greater_equal_greater.liga + greater_equal_greater.liga.glif + greater_greater.liga + greater_greater.liga.glif + greater_greater_equal.liga + greater_greater_equal.liga.glif + greater_greater_equal.start + greater_greater_equal.start.glif + greater_greater_greater.liga + greater_greater_greater.liga.glif + greater_greater_hyphen.liga + greater_greater_hyphen.liga.glif + greater_greater_hyphen.start + greater_greater_hyphen.start.glif + greater_hyphen.liga + greater_hyphen.liga.glif + greater_hyphen.start + greater_hyphen.start.glif + greater_hyphen_greater.liga + greater_hyphen_greater.liga.glif greaterequal greaterequal.glif guillemetleft @@ -824,6 +1080,52 @@ hcircumflex.glif hdotbelow hdotbelow.glif + heavydbldashhorzbxd + heavydbldashhorzbxd.glif + heavydbldashvertbxd + heavydbldashvertbxd.glif + heavydnbxd + heavydnbxd.glif + heavydnhorzbxd + heavydnhorzbxd.glif + heavydnleftbxd + heavydnleftbxd.glif + heavydnrightbxd + heavydnrightbxd.glif + heavyhorzbxd + heavyhorzbxd.glif + heavyleftbxd + heavyleftbxd.glif + heavyleftlightrightbxd + heavyleftlightrightbxd.glif + heavyquaddashhorzbxd + heavyquaddashhorzbxd.glif + heavyquaddashvertbxd + heavyquaddashvertbxd.glif + heavyrightbxd + heavyrightbxd.glif + heavytrpldashhorzbxd + heavytrpldashhorzbxd.glif + heavytrpldashvertbxd + heavytrpldashvertbxd.glif + heavyupbxd + heavyupbxd.glif + heavyuphorzbxd + heavyuphorzbxd.glif + heavyupleftbxd + heavyupleftbxd.glif + heavyuplightdnbxd + heavyuplightdnbxd.glif + heavyuprightbxd + heavyuprightbxd.glif + heavyvertbxd + heavyvertbxd.glif + heavyverthorzbxd + heavyverthorzbxd.glif + heavyvertleftbxd + heavyvertleftbxd.glif + heavyvertrightbxd + heavyvertrightbxd.glif hlinebelow hlinebelow.glif hookcmb @@ -840,6 +1142,54 @@ hungarumlautcmb.cap.glif hyphen hyphen.glif + hyphen.end + hyphen.end.glif + hyphen.middle + hyphen.middle.glif + hyphen.start + hyphen.start.glif + hyphen_asciitilde.liga + hyphen_asciitilde.liga.glif + hyphen_bar.end + hyphen_bar.end.glif + hyphen_bar.liga + hyphen_bar.liga.glif + hyphen_bar_bar.end + hyphen_bar_bar.end.glif + hyphen_bar_bar.liga + hyphen_bar_bar.liga.glif + hyphen_bar_bar_hyphen.middle + hyphen_bar_bar_hyphen.middle.glif + hyphen_bar_hyphen.middle + hyphen_bar_hyphen.middle.glif + hyphen_greater.end + hyphen_greater.end.glif + hyphen_greater.liga + hyphen_greater.liga.glif + hyphen_greater_greater.end + hyphen_greater_greater.end.glif + hyphen_greater_greater.liga + hyphen_greater_greater.liga.glif + hyphen_greater_greater_hyphen.m + hyphen_greater_greater_hyphen.m.glif + hyphen_greater_hyphen.middle + hyphen_greater_hyphen.middle.glif + hyphen_hyphen.liga + hyphen_hyphen.liga.glif + hyphen_hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga.glif + hyphen_less.end + hyphen_less.end.glif + hyphen_less.liga + hyphen_less.liga.glif + hyphen_less_hyphen.middle + hyphen_less_hyphen.middle.glif + hyphen_less_less.end + hyphen_less_less.end.glif + hyphen_less_less.liga + hyphen_less_less.liga.glif + hyphen_less_less_hyphen.middle + hyphen_less_less_hyphen.middle.glif i i.glif iacute @@ -894,10 +1244,170 @@ lcommaaccent.glif ldotbelow ldotbelow.glif + leftdnheavyrightuplightbxd + leftdnheavyrightuplightbxd.glif + lefteighthblock + lefteighthblock.glif + leftfiveeighthsblock + leftfiveeighthsblock.glif + lefthalfblock + lefthalfblock.glif + leftheavyrightdnlightbxd + leftheavyrightdnlightbxd.glif + leftheavyrightuplightbxd + leftheavyrightuplightbxd.glif + leftheavyrightvertlightbxd + leftheavyrightvertlightbxd.glif + leftlightrightdnheavybxd + leftlightrightdnheavybxd.glif + leftlightrightupheavybxd + leftlightrightupheavybxd.glif + leftlightrightvertheavybxd + leftlightrightvertheavybxd.glif + leftquarterblock + leftquarterblock.glif + leftseveneighthsblock + leftseveneighthsblock.glif + leftthreeeighthsblock + leftthreeeighthsblock.glif + leftthreequartersblock + leftthreequartersblock.glif + leftupheavyrightdnlightbxd + leftupheavyrightdnlightbxd.glif less less.glif + less_asciitilde.liga + less_asciitilde.liga.glif + less_asciitilde_asciitilde.liga + less_asciitilde_asciitilde.liga.glif + less_asciitilde_greater.liga + less_asciitilde_greater.liga.glif + less_asterisk.liga + less_asterisk.liga.glif + less_asterisk_greater.liga + less_asterisk_greater.liga.glif + less_bar.liga + less_bar.liga.glif + less_bar_bar.liga + less_bar_bar.liga.glif + less_bar_bar_bar.liga + less_bar_bar_bar.liga.glif + less_bar_greater.liga + less_bar_greater.liga.glif + less_colon.liga + less_colon.liga.glif + less_dollar.liga + less_dollar.liga.glif + less_dollar_greater.liga + less_dollar_greater.liga.glif + less_equal + less_equal.glif + less_equal.liga + less_equal.liga.glif + less_equal.start + less_equal.start.glif + less_equal_greater.liga + less_equal_greater.liga.glif + less_equal_less.liga + less_equal_less.liga.glif + less_exclam_hyphen_hyphen.liga + less_exclam_hyphen_hyphen.liga.glif + less_greater.liga + less_greater.liga.glif + less_hyphen.liga + less_hyphen.liga.glif + less_hyphen.start + less_hyphen.start.glif + less_hyphen_greater.liga + less_hyphen_greater.liga.glif + less_hyphen_less.liga + less_hyphen_less.liga.glif + less_less.liga + less_less.liga.glif + less_less_equal.liga + less_less_equal.liga.glif + less_less_equal.start + less_less_equal.start.glif + less_less_hyphen.liga + less_less_hyphen.liga.glif + less_less_hyphen.start + less_less_hyphen.start.glif + less_less_less.liga + less_less_less.liga.glif + less_plus.liga + less_plus.liga.glif + less_plus_greater.liga + less_plus_greater.liga.glif + less_slash.liga + less_slash.liga.glif + less_slash_greater.liga + less_slash_greater.liga.glif lessequal lessequal.glif + lightarcdnleftbxd + lightarcdnleftbxd.glif + lightarcdnrightbxd + lightarcdnrightbxd.glif + lightarcupleftbxd + lightarcupleftbxd.glif + lightarcuprightbxd + lightarcuprightbxd.glif + lightdbldashhorzbxd + lightdbldashhorzbxd.glif + lightdbldashvertbxd + lightdbldashvertbxd.glif + lightdiagcrossbxd + lightdiagcrossbxd.glif + lightdiagupleftdnrightbxd + lightdiagupleftdnrightbxd.glif + lightdiaguprightdnleftbxd + lightdiaguprightdnleftbxd.glif + lightdnbxd + lightdnbxd.glif + lightdnhorzbxd + lightdnhorzbxd.glif + lightdnleftbxd + lightdnleftbxd.glif + lightdnrightbxd + lightdnrightbxd.glif + lighthorzbxd + lighthorzbxd.glif + lightleftbxd + lightleftbxd.glif + lightleftheavyrightbxd + lightleftheavyrightbxd.glif + lightquaddashhorzbxd + lightquaddashhorzbxd.glif + lightquaddashvertbxd + lightquaddashvertbxd.glif + lightrightbxd + lightrightbxd.glif + lightshade + lightshade.glif + lighttrpldashhorzbxd + lighttrpldashhorzbxd.glif + lighttrpldashvertbxd + lighttrpldashvertbxd.glif + lightupbxd + lightupbxd.glif + lightupheavydnbxd + lightupheavydnbxd.glif + lightuphorzbxd + lightuphorzbxd.glif + lightupleftbxd + lightupleftbxd.glif + lightuprightbxd + lightuprightbxd.glif + lightvertbxd + lightvertbxd.glif + lightverthorzbxd + lightverthorzbxd.glif + lightvertleftbxd + lightvertleftbxd.glif + lightvertrightbxd + lightvertrightbxd.glif + ligspacer + ligspacer.glif llinebelow llinebelow.glif lmacrondotbelow @@ -922,6 +1432,8 @@ mdotaccent.glif mdotbelow mdotbelow.glif + mediumshade + mediumshade.glif middotcat middotcat.glif middotcat.cap @@ -968,6 +1480,30 @@ ntilde.glif numbersign numbersign.glif + numbersign.end + numbersign.end.glif + numbersign.middle + numbersign.middle.glif + numbersign.start + numbersign.start.glif + numbersign_braceleft.liga + numbersign_braceleft.liga.glif + numbersign_bracketleft.liga + numbersign_bracketleft.liga.glif + numbersign_colon.liga + numbersign_colon.liga.glif + numbersign_equal.liga + numbersign_equal.liga.glif + numbersign_exclam.liga + numbersign_exclam.liga.glif + numbersign_parenleft.liga + numbersign_parenleft.liga.glif + numbersign_question.liga + numbersign_question.liga.glif + numbersign_underscore.liga + numbersign_underscore.liga.glif + numbersign_underscore_parenleft + numbersign_underscore_parenleft.glif o o.glif oacute @@ -1062,14 +1598,36 @@ parenright.glif percent percent.glif + percent_percent.liga + percent_percent.liga.glif period period.glif + period_equal.liga + period_equal.liga.glif + period_hyphen.liga + period_hyphen.liga.glif + period_period.liga + period_period.liga.glif + period_period_equal.liga + period_period_equal.liga.glif + period_period_less.liga + period_period_less.liga.glif + period_period_period.liga + period_period_period.liga.glif + period_question.liga + period_question.liga.glif periodcentered periodcentered.glif peso peso.glif plus plus.glif + plus_greater.liga + plus_greater.liga.glif + plus_plus.liga + plus_plus.liga.glif + plus_plus_plus.liga + plus_plus_plus.liga.glif plusminus plusminus.glif primemod @@ -1080,6 +1638,14 @@ q.glif question question.glif + question_colon.liga + question_colon.liga.glif + question_equal.liga + question_equal.liga.glif + question_period.liga + question_period.liga.glif + question_question.liga + question_question.liga.glif questiondown questiondown.glif quotedbl @@ -1112,6 +1678,26 @@ rdotbelow.glif registered registered.glif + rightdnheavyleftuplightbxd + rightdnheavyleftuplightbxd.glif + righteighthblock + righteighthblock.glif + righthalfblock + righthalfblock.glif + rightheavyleftdnlightbxd + rightheavyleftdnlightbxd.glif + rightheavyleftuplightbxd + rightheavyleftuplightbxd.glif + rightheavyleftvertlightbxd + rightheavyleftvertlightbxd.glif + rightlightleftdnheavybxd + rightlightleftdnheavybxd.glif + rightlightleftupheavybxd + rightlightleftupheavybxd.glif + rightlightleftvertheavybxd + rightlightleftvertheavybxd.glif + rightupheavyleftdnlightbxd + rightupheavyleftdnlightbxd.glif ring ring.glif ringcmb @@ -1146,6 +1732,8 @@ section.glif semicolon semicolon.glif + semicolon_semicolon.liga + semicolon_semicolon.liga.glif servicemark servicemark.glif seven @@ -1172,6 +1760,24 @@ six.sup.glif slash slash.glif + slash_asterisk.liga + slash_asterisk.liga.glif + slash_backslash.liga + slash_backslash.liga.glif + slash_equal.liga + slash_equal.liga.glif + slash_equal.start + slash_equal.start.glif + slash_greater.liga + slash_greater.liga.glif + slash_slash.liga + slash_slash.liga.glif + slash_slash_equal.liga + slash_slash_equal.liga.glif + slash_slash_equal.start + slash_slash_equal.start.glif + slash_slash_slash.liga + slash_slash_slash.liga.glif space space.glif sterling @@ -1278,6 +1884,14 @@ umacron.glif underscore underscore.glif + underscore.end + underscore.end.glif + underscore.middle + underscore.middle.glif + underscore.start + underscore.start.glif + underscore_bar_underscore.m + underscore_bar_underscore.m.glif uni00A0 uni00A_0.glif uni0326 @@ -1292,10 +1906,88 @@ uni20B_A_.glif uni20BD uni20B_D_.glif + uni2610 + uni2610.glif + uni2611 + uni2611.glif + uni2612 + uni2612.glif + uni2713 + uni2713.glif uniA788 uniA_788.glif + uniE0A0 + uniE_0A_0.glif + uniE0A1 + uniE_0A_1.glif + uniE0A2 + uniE_0A_2.glif + uniE0B0 + uniE_0B_0.glif + uniE0B1 + uniE_0B_1.glif + uniE0B2 + uniE_0B_2.glif + uniE0B3 + uniE_0B_3.glif uogonek uogonek.glif + updblhorzsngbxd + updblhorzsngbxd.glif + updblleftsngbxd + updblleftsngbxd.glif + updblrightsngbxd + updblrightsngbxd.glif + upeighthblock + upeighthblock.glif + uphalfblock + uphalfblock.glif + upheavydnhorzlightbxd + upheavydnhorzlightbxd.glif + upheavyhorzlightbxd + upheavyhorzlightbxd.glif + upheavyleftdnlightbxd + upheavyleftdnlightbxd.glif + upheavyleftlightbxd + upheavyleftlightbxd.glif + upheavyrightdnlightbxd + upheavyrightdnlightbxd.glif + upheavyrightlightbxd + upheavyrightlightbxd.glif + upleftdnleftdnrightquadrant + upleftdnleftdnrightquadrant.glif + upleftdnrightquadrant + upleftdnrightquadrant.glif + upleftquadrant + upleftquadrant.glif + upleftuprightdnleftquadrant + upleftuprightdnleftquadrant.glif + upleftuprightdnrightquadrant + upleftuprightdnrightquadrant.glif + uplightdnhorzheavybxd + uplightdnhorzheavybxd.glif + uplighthorzheavybxd + uplighthorzheavybxd.glif + uplightleftdnheavybxd + uplightleftdnheavybxd.glif + uplightleftheavybxd + uplightleftheavybxd.glif + uplightrightdnheavybxd + uplightrightdnheavybxd.glif + uplightrightheavybxd + uplightrightheavybxd.glif + uprightdnleftdnrightquadrant + uprightdnleftdnrightquadrant.glif + uprightdnleftquadrant + uprightdnleftquadrant.glif + uprightquadrant + uprightquadrant.glif + upsnghorzdblbxd + upsnghorzdblbxd.glif + upsngleftdblbxd + upsngleftdblbxd.glif + upsngrightdblbxd + upsngrightdblbxd.glif uring uring.glif utilde @@ -1304,12 +1996,38 @@ v.glif vdotbelow vdotbelow.glif + vertdblhorzsngbxd + vertdblhorzsngbxd.glif + vertdblleftsngbxd + vertdblleftsngbxd.glif + vertdblrightsngbxd + vertdblrightsngbxd.glif + vertheavyhorzlightbxd + vertheavyhorzlightbxd.glif + vertheavyleftlightbxd + vertheavyleftlightbxd.glif + vertheavyrightlightbxd + vertheavyrightlightbxd.glif verticallinelowmod verticallinelowmod.glif verticallinemod verticallinemod.glif + vertlighthorzheavybxd + vertlighthorzheavybxd.glif + vertlightleftheavybxd + vertlightleftheavybxd.glif + vertlightrightheavybxd + vertlightrightheavybxd.glif + vertsnghorzdblbxd + vertsnghorzdblbxd.glif + vertsngleftdblbxd + vertsngleftdblbxd.glif + vertsngrightdblbxd + vertsngrightdblbxd.glif w w.glif + w_w_w.liga + w_w_w.liga.glif wacute wacute.glif wcircumflex diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/darkshade.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/darkshade.glif new file mode 100644 index 00000000..fd2eb1c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/darkshade.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dbldnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dbldnhorzbxd.glif new file mode 100644 index 00000000..8e439dc4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dbldnhorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dbldnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dbldnleftbxd.glif new file mode 100644 index 00000000..81a04790 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dbldnleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dbldnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dbldnrightbxd.glif new file mode 100644 index 00000000..12877ab1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dbldnrightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dblhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dblhorzbxd.glif new file mode 100644 index 00000000..96dbd777 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dblhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dbluphorzbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dbluphorzbxd.glif new file mode 100644 index 00000000..5b34424e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dbluphorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dblupleftbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dblupleftbxd.glif new file mode 100644 index 00000000..f12b94ab --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dblupleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dbluprightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dbluprightbxd.glif new file mode 100644 index 00000000..d33920d9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dbluprightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dblvertbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dblvertbxd.glif new file mode 100644 index 00000000..39e7f5a6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dblvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dblverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dblverthorzbxd.glif new file mode 100644 index 00000000..c8d9c60a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dblverthorzbxd.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dblvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dblvertleftbxd.glif new file mode 100644 index 00000000..048993fc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dblvertleftbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dblvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dblvertrightbxd.glif new file mode 100644 index 00000000..53abe6ed --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dblvertrightbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dcaron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dcaron.glif index 31003d41..a97e3f30 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dcircumflexbelow.glif index 07e462a3..c3c274d1 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dcircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dcircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dcroat.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dcroat.glif index d260671d..aa0e959d 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dcroat.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dcroat.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ddotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ddotbelow.glif index 0aed4f1d..ca0d7f79 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ddotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ddotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresisacute.cap.glif index 44c7c0b3..bc73fe05 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresisacute.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresisacute.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresisacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresisacute.glif index de83c4f0..4f1ee1e9 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresisacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresisacute.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresisbelowcmb.glif index 9322d8dc..5f577316 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresisbelowcmb.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresisbelowcmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresiscaron.cap.glif index 7152d09e..28484d69 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresiscaron.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresiscaron.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresiscaron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresiscaron.glif index 0f992328..4e599e4f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresiscaron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresiscaron.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresisgrave.cap.glif index c2f3bb70..44f135a9 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresisgrave.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresisgrave.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresisgrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresisgrave.glif index 54a99329..4640e9a5 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresisgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresisgrave.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresismacron.cap.glif index 8422c6a1..837023f6 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresismacron.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresismacron.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresismacron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresismacron.glif index 209c3b5f..c1cc2789 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresismacron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dieresismacron.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dlinebelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dlinebelow.glif index 33a76734..faaf1771 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dndblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dndblhorzsngbxd.glif new file mode 100644 index 00000000..cc8ee037 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dndblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dndblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dndblleftsngbxd.glif new file mode 100644 index 00000000..42ea31d3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dndblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dndblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dndblrightsngbxd.glif new file mode 100644 index 00000000..b0ce7021 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dndblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dneighthblock.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dneighthblock.glif new file mode 100644 index 00000000..ff791c74 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dneighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnfiveeighthsblock.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnfiveeighthsblock.glif new file mode 100644 index 00000000..99bd1498 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnhalfblock.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnhalfblock.glif new file mode 100644 index 00000000..001cf3fb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnhalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnheavyhorzlightbxd.glif new file mode 100644 index 00000000..0cdf2eb2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnheavyleftlightbxd.glif new file mode 100644 index 00000000..add1aaa2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnheavyleftuplightbxd.glif new file mode 100644 index 00000000..5c6495d1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnheavyrightlightbxd.glif new file mode 100644 index 00000000..b5711788 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnheavyrightuplightbxd.glif new file mode 100644 index 00000000..ae5d37fe --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnheavyuphorzlightbxd.glif new file mode 100644 index 00000000..1f77795d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnheavyuphorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnleftquadrant.glif new file mode 100644 index 00000000..42729338 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnlighthorzheavybxd.glif new file mode 100644 index 00000000..dbd3427a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnlighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnlightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnlightleftheavybxd.glif new file mode 100644 index 00000000..6b2cc4f9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnlightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnlightleftupheavybxd.glif new file mode 100644 index 00000000..61324c8d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnlightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnlightrightheavybxd.glif new file mode 100644 index 00000000..c0b416bc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnlightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnlightrightupheavybxd.glif new file mode 100644 index 00000000..b58f5dfe --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnlightuphorzheavybxd.glif new file mode 100644 index 00000000..5177720e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnlightuphorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnquarterblock.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnquarterblock.glif new file mode 100644 index 00000000..c2180b50 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnrightquadrant.glif new file mode 100644 index 00000000..9858382e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnrightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnseveneighthsblock.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnseveneighthsblock.glif new file mode 100644 index 00000000..ecdac3da --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnsnghorzdblbxd.glif new file mode 100644 index 00000000..4c6f5b64 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnsngleftdblbxd.glif new file mode 100644 index 00000000..736aa602 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnsngrightdblbxd.glif new file mode 100644 index 00000000..42dc98e9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnthreeeighthsblock.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnthreeeighthsblock.glif new file mode 100644 index 00000000..7febe2aa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnthreequartersblock.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnthreequartersblock.glif new file mode 100644 index 00000000..a79dae14 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dnthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dollar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dollar_greater.liga.glif new file mode 100644 index 00000000..8ced91f5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dollar_greater.liga.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dotlessi.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dotlessi.glif index b412c3e1..59872a6c 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dotlessi.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dotlessi.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dotlessj.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dotlessj.glif index 2d7ea96f..d7ff067d 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dotlessj.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/dotlessj.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/eacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/eacute.glif index 05052d4f..399df89f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/eacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/eacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ebreve.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ebreve.glif index 401a167c..18c2ad77 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ebreve.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ebreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecaron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecaron.glif index 146346b7..26eb285c 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecaron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflex.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflex.glif index effe80c1..15d961ab 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflexacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflexacute.glif index 1ffc3f1e..371187bd 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflexdotbelow.glif index b68c19ec..e4f3512e 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflexgrave.glif index acd3b289..cf7e48cd 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflexhookabove.glif index 5916758c..87cf745c 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflextilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflextilde.glif index de3000dc..7c93e1af 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ecircumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/edieresis.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/edieresis.glif index 7f72c7e6..48a77fa0 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/edieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/edieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/edotaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/edotaccent.glif index bd7c0915..9f5a28c1 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/edotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/edotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/edotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/edotbelow.glif index 8bbce867..9066127f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/edotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/edotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/egrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/egrave.glif index 325d1a80..d1f3f1ca 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/egrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/egrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ehookabove.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ehookabove.glif index 09b25c91..5bd60e3f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ehookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ehookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/eight.num.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/eight.num.glif index 483e4107..b8fc65b8 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/eight.num.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/eight.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/emacron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/emacron.glif index 4349a61b..85931f32 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/emacron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/emacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/eogonek.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/eogonek.glif index 9863d173..25b98c96 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/eogonek.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/eogonek.glif @@ -2,8 +2,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal.end.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal.end.glif new file mode 100644 index 00000000..22b5c8dd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal.middle.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal.middle.glif new file mode 100644 index 00000000..2f525ef2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal.start.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal.start.glif new file mode 100644 index 00000000..4f6972dc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_asciitilde.liga.glif new file mode 100644 index 00000000..fb827454 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_asciitilde.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_bar.end.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_bar.end.glif new file mode 100644 index 00000000..dd2629b7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_bar.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_bar.liga.glif new file mode 100644 index 00000000..838fc968 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_bar.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_bar_bar.end.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_bar_bar.end.glif new file mode 100644 index 00000000..b8aa7b6b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_bar_bar.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_bar_bar.liga.glif new file mode 100644 index 00000000..ae3572db --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_bar_bar.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_bar_bar_equal.middle.glif new file mode 100644 index 00000000..de45ce58 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_bar_bar_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_bar_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_bar_equal.middle.glif new file mode 100644 index 00000000..0c129a3c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_bar_equal.middle.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_colon_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_colon_equal.middle.glif new file mode 100644 index 00000000..d25e0fb3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_colon_equal.middle.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_equal.liga.glif new file mode 100644 index 00000000..1dfd70a2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_equal.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_equal_equal.liga.glif new file mode 100644 index 00000000..1d544121 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_equal_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_exclam_equal.middle.glif new file mode 100644 index 00000000..a47f0094 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_exclam_equal.middle.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_greater.end.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_greater.end.glif new file mode 100644 index 00000000..dba7c029 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_greater.end.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_greater.liga.glif new file mode 100644 index 00000000..18e899a9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_greater_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_greater_equal.middle.glif new file mode 100644 index 00000000..19a38213 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_greater_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_greater_greater.end.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_greater_greater.end.glif new file mode 100644 index 00000000..8fe0e404 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_greater_greater.end.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_greater_greater.liga.glif new file mode 100644 index 00000000..5bb91074 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_greater_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_greater_greater_equal.m.glif new file mode 100644 index 00000000..fc8b8827 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_greater_greater_equal.m.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_less.end.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_less.end.glif new file mode 100644 index 00000000..d40e42e2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_less.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_less.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_less.liga.glif new file mode 100644 index 00000000..4140bd2b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_less.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_less_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_less_equal.middle.glif new file mode 100644 index 00000000..5350cd32 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_less_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_less_less.end.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_less_less.end.glif new file mode 100644 index 00000000..df40d21e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_less_less.end.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_less_less.liga.glif new file mode 100644 index 00000000..a6083042 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_less_less.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_less_less_equal.middle.glif new file mode 100644 index 00000000..f8212d5e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_less_less_equal.middle.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_slash.end.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_slash.end.glif new file mode 100644 index 00000000..8efa4fcc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_slash.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_slash.liga.glif new file mode 100644 index 00000000..6887743b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_slash.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_slash_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_slash_equal.middle.glif new file mode 100644 index 00000000..8ddaef12 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_slash_equal.middle.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_slash_slash.end.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_slash_slash.end.glif new file mode 100644 index 00000000..602e0aa2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_slash_slash.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_slash_slash.liga.glif new file mode 100644 index 00000000..e6ec5e03 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_slash_slash.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_slash_slash_equal.middle.glif new file mode 100644 index 00000000..9a4921bd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/equal_slash_slash_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/etilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/etilde.glif index 7eced16d..4270e672 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/etilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/etilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/exclam_asciitilde.liga.glif new file mode 100644 index 00000000..a80bd9f8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/exclam_asciitilde.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/exclam_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/exclam_equal.liga.glif new file mode 100644 index 00000000..02675908 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/exclam_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/exclam_equal_equal.liga.glif new file mode 100644 index 00000000..549e7c09 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/exclam_equal_equal.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/exclam_exclam.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/exclam_exclam.liga.glif new file mode 100644 index 00000000..92766d8a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/exclam_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/exclam_exclam_period.liga.glif new file mode 100644 index 00000000..aaa387b3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/exclam_exclam_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/five.num.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/five.num.glif index 62693608..1e32166f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/five.num.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/five.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/four.num.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/four.num.glif index dd11af3b..62ef719b 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/four.num.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/four.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/fullblock.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/fullblock.glif new file mode 100644 index 00000000..2c547d1b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/fullblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gbreve.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gbreve.glif index 7de61d19..8106dac7 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gbreve.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gbreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gcaron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gcaron.glif index 60ee5ad6..92d0ec94 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gcircumflex.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gcircumflex.glif index a2a4e199..b9208df8 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gcommaaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gcommaaccent.glif index ded018a4..99102b10 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gdotaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gdotaccent.glif index b1010dd0..8317dbf6 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gmacron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gmacron.glif index 78fd8b5e..a3359b27 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gmacron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gmacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gravecmb.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gravecmb.glif index 1f79778c..ed358fee 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gravecmb.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/gravecmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_colon.liga.glif new file mode 100644 index 00000000..07046c58 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_equal.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_equal.glif new file mode 100644 index 00000000..2fc58a5f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_equal.liga.glif new file mode 100644 index 00000000..2075cd29 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_equal.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_equal.start.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_equal.start.glif new file mode 100644 index 00000000..8927d722 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_equal.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_equal_greater.liga.glif new file mode 100644 index 00000000..ad8b22f4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_equal_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_greater.liga.glif new file mode 100644 index 00000000..b9a70b76 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_greater_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_greater_equal.liga.glif new file mode 100644 index 00000000..f5edb91b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_greater_equal.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_greater_equal.start.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_greater_equal.start.glif new file mode 100644 index 00000000..1390ec48 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_greater_equal.start.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_greater_greater.liga.glif new file mode 100644 index 00000000..b8a795e4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_greater_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_greater_hyphen.liga.glif new file mode 100644 index 00000000..5e798106 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_greater_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_greater_hyphen.start.glif new file mode 100644 index 00000000..e5a5cc34 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_greater_hyphen.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_hyphen.liga.glif new file mode 100644 index 00000000..271c884e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_hyphen.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_hyphen.start.glif new file mode 100644 index 00000000..e387bcc6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_hyphen.start.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_hyphen_greater.liga.glif new file mode 100644 index 00000000..0d0a73bc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/greater_hyphen_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hbrevebelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hbrevebelow.glif index 34cbd1e4..d6e375cd 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hbrevebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hbrevebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hcircumflex.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hcircumflex.glif index 42afe7a5..88d5d131 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hdotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hdotbelow.glif index 562cf7b7..016e22b4 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavydbldashhorzbxd.glif new file mode 100644 index 00000000..51ffc677 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavydbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavydbldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavydbldashvertbxd.glif new file mode 100644 index 00000000..c015368d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavydbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavydnbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavydnbxd.glif new file mode 100644 index 00000000..14d564cc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavydnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavydnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavydnhorzbxd.glif new file mode 100644 index 00000000..ed4690bb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavydnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavydnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavydnleftbxd.glif new file mode 100644 index 00000000..97ba7549 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavydnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavydnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavydnrightbxd.glif new file mode 100644 index 00000000..72a954ef --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavydnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyhorzbxd.glif new file mode 100644 index 00000000..66f97ab1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyhorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyleftbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyleftbxd.glif new file mode 100644 index 00000000..a74c76a4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyleftlightrightbxd.glif new file mode 100644 index 00000000..5e441e0d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyleftlightrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyquaddashhorzbxd.glif new file mode 100644 index 00000000..d3536bc3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyquaddashvertbxd.glif new file mode 100644 index 00000000..57194b7e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyrightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyrightbxd.glif new file mode 100644 index 00000000..9fa7054e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavytrpldashhorzbxd.glif new file mode 100644 index 00000000..39afb3b5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavytrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavytrpldashvertbxd.glif new file mode 100644 index 00000000..aaa19cc2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavytrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyupbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyupbxd.glif new file mode 100644 index 00000000..052f86e1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyuphorzbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyuphorzbxd.glif new file mode 100644 index 00000000..76da3fd6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyupleftbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyupleftbxd.glif new file mode 100644 index 00000000..e65f07b7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyuplightdnbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyuplightdnbxd.glif new file mode 100644 index 00000000..db0941e5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyuplightdnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyuprightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyuprightbxd.glif new file mode 100644 index 00000000..429c5a57 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyvertbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyvertbxd.glif new file mode 100644 index 00000000..214447ea --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyverthorzbxd.glif new file mode 100644 index 00000000..21b2ebbc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyvertleftbxd.glif new file mode 100644 index 00000000..40b8f020 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyvertrightbxd.glif new file mode 100644 index 00000000..4c9f8c02 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/heavyvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hlinebelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hlinebelow.glif index 8b11f56d..67f92c1e 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hookcmb.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hookcmb.glif index c0ea544a..664a0a4a 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hookcmb.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hookcmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/horizontalbar.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/horizontalbar.glif index 2c2b288d..ef4b3086 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/horizontalbar.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/horizontalbar.glif @@ -5,10 +5,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen.end.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen.end.glif new file mode 100644 index 00000000..9b5c39d5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen.middle.glif new file mode 100644 index 00000000..4ffcbba0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen.start.glif new file mode 100644 index 00000000..0d6b117c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_asciitilde.liga.glif new file mode 100644 index 00000000..4f8d30e2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_asciitilde.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_bar.end.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_bar.end.glif new file mode 100644 index 00000000..10367d7e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_bar.end.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_bar.liga.glif new file mode 100644 index 00000000..83a4a75c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_bar.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_bar.end.glif new file mode 100644 index 00000000..73f8d548 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_bar.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_bar.liga.glif new file mode 100644 index 00000000..6db3ee20 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif new file mode 100644 index 00000000..bbe60fd2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_hyphen.middle.glif new file mode 100644 index 00000000..0fdb0207 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_greater.end.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_greater.end.glif new file mode 100644 index 00000000..eb45ae54 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_greater.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_greater.liga.glif new file mode 100644 index 00000000..a69ffa2f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_greater.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_greater.end.glif new file mode 100644 index 00000000..73645336 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_greater.end.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_greater.liga.glif new file mode 100644 index 00000000..de38b137 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif new file mode 100644 index 00000000..ebfc51b0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_hyphen.middle.glif new file mode 100644 index 00000000..0e2c67a1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_hyphen.liga.glif new file mode 100644 index 00000000..4c49ab56 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_hyphen.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..52fb755c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_less.end.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_less.end.glif new file mode 100644 index 00000000..3bad7f55 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_less.end.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_less.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_less.liga.glif new file mode 100644 index 00000000..38325244 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_less.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_less_hyphen.middle.glif new file mode 100644 index 00000000..20379519 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_less_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_less_less.end.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_less_less.end.glif new file mode 100644 index 00000000..22669cbb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_less_less.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_less_less.liga.glif new file mode 100644 index 00000000..cbea1cce --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_less_less.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_less_less_hyphen.middle.glif new file mode 100644 index 00000000..5536f168 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/hyphen_less_less_hyphen.middle.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/iacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/iacute.glif index 87fc15d3..7471e458 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/iacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/iacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ibreve.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ibreve.glif index 2c4323ee..ca4c480a 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ibreve.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ibreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/icaron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/icaron.glif index 1943f262..a656c6f5 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/icaron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/icaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/icircumflex.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/icircumflex.glif index 5da04de2..d783a75f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/icircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/icircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/idieresis.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/idieresis.glif index 052b71ca..918306b0 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/idieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/idieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/idotaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/idotaccent.glif index 13942e46..22ebdcc5 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/idotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/idotaccent.glif @@ -5,10 +5,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/idotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/idotbelow.glif index e25ebfcd..2506bb5d 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/idotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/idotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/igrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/igrave.glif index 334dae10..3860b00b 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/igrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/igrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ihookabove.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ihookabove.glif index 75e0d5a6..4089da5e 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ihookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ihookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/imacron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/imacron.glif index 421d17b5..bd9552a4 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/imacron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/imacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/itilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/itilde.glif index aa8bd8c7..624ddb48 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/itilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/itilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/jcaron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/jcaron.glif index c9d42f22..952c55e8 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/jcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/jcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/jcircumflex.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/jcircumflex.glif index 1c99df55..fede4524 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/jcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/jcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/kcommaaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/kcommaaccent.glif index 9ad1da6d..c08932c5 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/kcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/kcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/kdotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/kdotbelow.glif index 8f243e7e..72fc259e 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/kdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/kdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/klinebelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/klinebelow.glif index 0f1d5811..56ff055f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/klinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/klinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/l.dot.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/l.dot.glif index 919dbf24..3a72d8c5 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/l.dot.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/l.dot.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lacute.glif index ad1b1ef3..975c89fd 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lcaron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lcaron.glif index 29b8eaa6..2a612039 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lcircumflexbelow.glif index 26ce7fb5..efcee067 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lcircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lcircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lcommaaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lcommaaccent.glif index 17f2c6e0..61eb9526 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ldotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ldotbelow.glif index 8517d372..e4b01ec4 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ldotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ldotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftdnheavyrightuplightbxd.glif new file mode 100644 index 00000000..49e593c4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftdnheavyrightuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lefteighthblock.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lefteighthblock.glif new file mode 100644 index 00000000..8d44dad4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lefteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftfiveeighthsblock.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftfiveeighthsblock.glif new file mode 100644 index 00000000..0eb9ccfc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lefthalfblock.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lefthalfblock.glif new file mode 100644 index 00000000..325c05f6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lefthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftheavyrightdnlightbxd.glif new file mode 100644 index 00000000..ca402460 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftheavyrightuplightbxd.glif new file mode 100644 index 00000000..5ec86bc9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftheavyrightvertlightbxd.glif new file mode 100644 index 00000000..8f6b4053 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftheavyrightvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftlightrightdnheavybxd.glif new file mode 100644 index 00000000..a4166aa5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftlightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftlightrightupheavybxd.glif new file mode 100644 index 00000000..e353acb6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftlightrightvertheavybxd.glif new file mode 100644 index 00000000..dc6c91cd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftlightrightvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftquarterblock.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftquarterblock.glif new file mode 100644 index 00000000..036dad83 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftseveneighthsblock.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftseveneighthsblock.glif new file mode 100644 index 00000000..74b69747 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftthreeeighthsblock.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftthreeeighthsblock.glif new file mode 100644 index 00000000..e5c4283a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftthreequartersblock.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftthreequartersblock.glif new file mode 100644 index 00000000..5ae5b2e3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftupheavyrightdnlightbxd.glif new file mode 100644 index 00000000..a3c7188d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/leftupheavyrightdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_asciitilde.liga.glif new file mode 100644 index 00000000..4868f628 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_asciitilde.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..46f6f5dd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_asciitilde_asciitilde.liga.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_asciitilde_greater.liga.glif new file mode 100644 index 00000000..8885087a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_asciitilde_greater.liga.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_asterisk.liga.glif new file mode 100644 index 00000000..83916b1c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_asterisk_greater.liga.glif new file mode 100644 index 00000000..f7d8ac5f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_asterisk_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_bar.liga.glif new file mode 100644 index 00000000..a3c61e52 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_bar.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_bar_bar.liga.glif new file mode 100644 index 00000000..22e00812 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_bar_bar.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_bar_bar_bar.liga.glif new file mode 100644 index 00000000..87edd278 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_bar_bar_bar.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_bar_greater.liga.glif new file mode 100644 index 00000000..b08320b3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_bar_greater.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_colon.liga.glif new file mode 100644 index 00000000..aaa24368 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_dollar.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_dollar.liga.glif new file mode 100644 index 00000000..80985f83 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_dollar.liga.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_dollar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_dollar_greater.liga.glif new file mode 100644 index 00000000..85b23afa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_dollar_greater.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_equal.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_equal.glif new file mode 100644 index 00000000..4d0db1aa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_equal.liga.glif new file mode 100644 index 00000000..01a231ec --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_equal.start.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_equal.start.glif new file mode 100644 index 00000000..34418ee6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_equal.start.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_equal_greater.liga.glif new file mode 100644 index 00000000..42da94c4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_equal_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_equal_less.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_equal_less.liga.glif new file mode 100644 index 00000000..63d44ca9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_equal_less.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..809a63ba --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_greater.liga.glif new file mode 100644 index 00000000..4b9e896a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_greater.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_hyphen.liga.glif new file mode 100644 index 00000000..859586e5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_hyphen.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_hyphen.start.glif new file mode 100644 index 00000000..6a6bb706 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_hyphen.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_hyphen_greater.liga.glif new file mode 100644 index 00000000..e99a6382 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_hyphen_greater.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_hyphen_less.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_hyphen_less.liga.glif new file mode 100644 index 00000000..b91501a8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_hyphen_less.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_less.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_less.liga.glif new file mode 100644 index 00000000..92af21ce --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_less.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_less_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_less_equal.liga.glif new file mode 100644 index 00000000..f5013846 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_less_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_less_equal.start.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_less_equal.start.glif new file mode 100644 index 00000000..08723082 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_less_equal.start.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_less_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_less_hyphen.liga.glif new file mode 100644 index 00000000..8fde760d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_less_hyphen.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_less_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_less_hyphen.start.glif new file mode 100644 index 00000000..65379af4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_less_hyphen.start.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_less_less.liga.glif new file mode 100644 index 00000000..a70371be --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_less_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_plus.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_plus.liga.glif new file mode 100644 index 00000000..99f638f0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_plus.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_plus_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_plus_greater.liga.glif new file mode 100644 index 00000000..9bdafccf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_plus_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_slash.liga.glif new file mode 100644 index 00000000..c0eea54c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_slash.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_slash_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_slash_greater.liga.glif new file mode 100644 index 00000000..3136f68f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/less_slash_greater.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightarcdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightarcdnleftbxd.glif new file mode 100644 index 00000000..50eb72d0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightarcdnleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightarcdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightarcdnrightbxd.glif new file mode 100644 index 00000000..0638b179 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightarcdnrightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightarcupleftbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightarcupleftbxd.glif new file mode 100644 index 00000000..67a044a2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightarcupleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightarcuprightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightarcuprightbxd.glif new file mode 100644 index 00000000..0557b83b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightarcuprightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdbldashhorzbxd.glif new file mode 100644 index 00000000..e067c302 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdbldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdbldashvertbxd.glif new file mode 100644 index 00000000..5e1b0314 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdiagcrossbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdiagcrossbxd.glif new file mode 100644 index 00000000..ee8a26c7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdiagcrossbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdiagupleftdnrightbxd.glif new file mode 100644 index 00000000..99e06660 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdiagupleftdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdiaguprightdnleftbxd.glif new file mode 100644 index 00000000..6cd005b1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdiaguprightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdnbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdnbxd.glif new file mode 100644 index 00000000..47bc9e98 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdnhorzbxd.glif new file mode 100644 index 00000000..5d91e147 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdnleftbxd.glif new file mode 100644 index 00000000..d3017c10 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdnrightbxd.glif new file mode 100644 index 00000000..a9f774e6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lighthorzbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lighthorzbxd.glif new file mode 100644 index 00000000..7a583254 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lighthorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightleftbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightleftbxd.glif new file mode 100644 index 00000000..116ad0da --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightleftheavyrightbxd.glif new file mode 100644 index 00000000..d1026973 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightleftheavyrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightquaddashhorzbxd.glif new file mode 100644 index 00000000..34663927 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightquaddashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightquaddashvertbxd.glif new file mode 100644 index 00000000..d5827986 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightrightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightrightbxd.glif new file mode 100644 index 00000000..d5ac820b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightshade.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightshade.glif new file mode 100644 index 00000000..156f38e4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightshade.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lighttrpldashhorzbxd.glif new file mode 100644 index 00000000..fa04127d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lighttrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lighttrpldashvertbxd.glif new file mode 100644 index 00000000..1a2e350a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lighttrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightupbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightupbxd.glif new file mode 100644 index 00000000..bf5a4db0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightupheavydnbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightupheavydnbxd.glif new file mode 100644 index 00000000..efa466ce --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightupheavydnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightuphorzbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightuphorzbxd.glif new file mode 100644 index 00000000..09b7c70f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightupleftbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightupleftbxd.glif new file mode 100644 index 00000000..497929fb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightuprightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightuprightbxd.glif new file mode 100644 index 00000000..ee74eb7c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightvertbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightvertbxd.glif new file mode 100644 index 00000000..de203168 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightverthorzbxd.glif new file mode 100644 index 00000000..5d9eb5f7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightvertleftbxd.glif new file mode 100644 index 00000000..8e0b5d50 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightvertrightbxd.glif new file mode 100644 index 00000000..b1a9a00f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lightvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ligspacer.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ligspacer.glif new file mode 100644 index 00000000..ae7011c5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ligspacer.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/llinebelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/llinebelow.glif index c45cfc87..21ce61c3 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/llinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/llinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lmacrondotbelow.glif index 4e28c761..7d1cc20f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lmacrondotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/lmacrondotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/macute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/macute.glif index 69b1f9e1..d8da0762 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/macute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/macute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/mdotaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/mdotaccent.glif index 62de5db3..7efa019f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/mdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/mdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/mdotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/mdotbelow.glif index 856de70a..13d17c03 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/mdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/mdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/mediumshade.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/mediumshade.glif new file mode 100644 index 00000000..4e438ef8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/mediumshade.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/nacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/nacute.glif index ed1513a9..08206b69 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/nacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/nacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ncaron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ncaron.glif index 891a3d06..4bc7f8e5 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ncaron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ncaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ncircumflexbelow.glif index 22965670..fc1e2ffc 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ncircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ncircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ncommaaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ncommaaccent.glif index bb649a6e..8b48958f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ncommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ncommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ndotaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ndotaccent.glif index 27d8c29d..bece7a92 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ndotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ndotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ndotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ndotbelow.glif index 684846c8..3bab207f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ngrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ngrave.glif index f85b2fb2..3fa155f0 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ngrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/nine.num.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/nine.num.glif index 177b7e98..36a7e399 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/nine.num.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/nine.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/nlinebelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/nlinebelow.glif index 47a89a60..4a8c4887 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/nlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/nlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ntilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ntilde.glif index d2f296ff..5c25937e 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ntilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign.end.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign.end.glif new file mode 100644 index 00000000..75576df5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign.end.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign.middle.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign.middle.glif new file mode 100644 index 00000000..fa4c4e63 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign.start.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign.start.glif new file mode 100644 index 00000000..aad642e9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign.start.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_braceleft.liga.glif new file mode 100644 index 00000000..eb5400bd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_braceleft.liga.glif @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_bracketleft.liga.glif new file mode 100644 index 00000000..3579b6d0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_bracketleft.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_colon.liga.glif new file mode 100644 index 00000000..63f42acd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_colon.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_equal.liga.glif new file mode 100644 index 00000000..10e2450a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_equal.liga.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_exclam.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_exclam.liga.glif new file mode 100644 index 00000000..9dd91dfe --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_parenleft.liga.glif new file mode 100644 index 00000000..5771bc2c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_parenleft.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_question.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_question.liga.glif new file mode 100644 index 00000000..736f5cfd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_underscore.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_underscore.liga.glif new file mode 100644 index 00000000..0313a5ac --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_underscore.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_underscore_parenleft.glif new file mode 100644 index 00000000..5ac8e58c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/numbersign_underscore_parenleft.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/oacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/oacute.glif index 12cc5a96..96480e1f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/oacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/oacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/obreve.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/obreve.glif index ee12ba38..c8e69603 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/obreve.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/obreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocaron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocaron.glif index 9ae2d0dc..b65b681b 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocaron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflex.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflex.glif index 1d72e3e1..bf2bdac5 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflexacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflexacute.glif index 4db9f4e2..d74c9ec8 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflexdotbelow.glif index 9f1807a2..1bd62e9f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflexgrave.glif index 2d13d7bc..a7771acb 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflexhookabove.glif index 2f5c0541..cb7c7b23 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflextilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflextilde.glif index e3359187..61b1ceb1 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ocircumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/odieresis.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/odieresis.glif index 1c3c8244..486c24fe 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/odieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/odieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/odotaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/odotaccent.glif index 33f75da7..7aba8d77 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/odotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/odotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/odotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/odotbelow.glif index 810c8153..59c1de4c 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/odotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/odotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ograve.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ograve.glif index ad67cf5d..687bd719 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ograve.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ograve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohookabove.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohookabove.glif index 43e734df..5b7c4c04 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohorn.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohorn.glif index 941b5471..59328267 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohorn.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohorn.glif @@ -2,9 +2,6 @@ - - - @@ -15,7 +12,7 @@ - + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohornacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohornacute.glif index c9fa425b..57c0339a 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohornacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohorndotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohorndotbelow.glif index 5d010c80..aea32dcd 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohorndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohorndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohorngrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohorngrave.glif index 5a0d3050..40c8f18b 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohorngrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohorngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohornhookabove.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohornhookabove.glif index f7e00b04..71cf395f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohorntilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohorntilde.glif index 597172d3..1dca34c8 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohorntilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohorntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohungarumlaut.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohungarumlaut.glif index 852fac49..fc404078 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohungarumlaut.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ohungarumlaut.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/omacron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/omacron.glif index 1a5b7e1a..04a335ca 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/omacron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/omacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/one.num.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/one.num.glif index d27ef069..33b01843 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/one.num.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/one.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/otilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/otilde.glif index d87f5242..518386b6 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/otilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/otilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/percent_percent.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/percent_percent.liga.glif new file mode 100644 index 00000000..e9a6853a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/percent_percent.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_equal.liga.glif new file mode 100644 index 00000000..ee05b651 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_hyphen.liga.glif new file mode 100644 index 00000000..c30d1a73 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_period.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_period.liga.glif new file mode 100644 index 00000000..7040f36f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_period_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_period_equal.liga.glif new file mode 100644 index 00000000..434afbbf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_period_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_period_less.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_period_less.liga.glif new file mode 100644 index 00000000..f4300be9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_period_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_period_period.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_period_period.liga.glif new file mode 100644 index 00000000..3caf3c84 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_period_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_question.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_question.liga.glif new file mode 100644 index 00000000..66f9a08d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/period_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/plus_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/plus_greater.liga.glif new file mode 100644 index 00000000..79edbed2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/plus_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/plus_plus.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/plus_plus.liga.glif new file mode 100644 index 00000000..d0c79e01 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/plus_plus.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/plus_plus_plus.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/plus_plus_plus.liga.glif new file mode 100644 index 00000000..e1f51e2f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/plus_plus_plus.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/question_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/question_colon.liga.glif new file mode 100644 index 00000000..cfffedc2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/question_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/question_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/question_equal.liga.glif new file mode 100644 index 00000000..5938e503 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/question_equal.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/question_period.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/question_period.liga.glif new file mode 100644 index 00000000..27df85cc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/question_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/question_question.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/question_question.liga.glif new file mode 100644 index 00000000..43c4bf3e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/question_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/racute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/racute.glif index 00fd8045..5c689693 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/racute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/racute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rcaron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rcaron.glif index 187ba678..651c6aa2 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rcommaaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rcommaaccent.glif index 7135c968..fc77b276 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rdotaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rdotaccent.glif index 377b9b80..9d0719ef 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rdotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rdotbelow.glif index d9a20ec6..82c27bfa 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightdnheavyleftuplightbxd.glif new file mode 100644 index 00000000..6c41ecc5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightdnheavyleftuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/righteighthblock.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/righteighthblock.glif new file mode 100644 index 00000000..9d954a40 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/righteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/righthalfblock.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/righthalfblock.glif new file mode 100644 index 00000000..7d4f8cef --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/righthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightheavyleftdnlightbxd.glif new file mode 100644 index 00000000..4c0b0089 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightheavyleftuplightbxd.glif new file mode 100644 index 00000000..7b81cdbe --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightheavyleftvertlightbxd.glif new file mode 100644 index 00000000..10939995 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightheavyleftvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightlightleftdnheavybxd.glif new file mode 100644 index 00000000..c87ff7db --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightlightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightlightleftupheavybxd.glif new file mode 100644 index 00000000..7a49ab53 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightlightleftvertheavybxd.glif new file mode 100644 index 00000000..98b611f4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightlightleftvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightupheavyleftdnlightbxd.glif new file mode 100644 index 00000000..c6b43eb3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rightupheavyleftdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ringcmb.cap.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ringcmb.cap.glif index 02a22cee..251f62cb 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ringcmb.cap.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ringcmb.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rlinebelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rlinebelow.glif index 6b0740eb..e8ff34fa 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rmacrondotbelow.glif index bfffc488..dc82987c 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rmacrondotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/rmacrondotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/sacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/sacute.glif index c15586ba..73bb3773 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/sacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/sacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/scaron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/scaron.glif index 36184eea..eddf370a 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/scaron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/scaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/scircumflex.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/scircumflex.glif index dc4eedee..8b733238 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/scircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/scircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/scommaaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/scommaaccent.glif index e0babf18..38ec0775 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/scommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/scommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/sdotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/sdotbelow.glif index 7c3019dd..7886ab3c 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/sdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/sdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/semicolon_semicolon.liga.glif new file mode 100644 index 00000000..8ac70179 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/semicolon_semicolon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/seven.num.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/seven.num.glif index b58b725e..16a9c596 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/seven.num.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/seven.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/six.num.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/six.num.glif index e558ebc3..50b656e5 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/six.num.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/six.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_asterisk.liga.glif new file mode 100644 index 00000000..d7c7e65f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_backslash.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_backslash.liga.glif new file mode 100644 index 00000000..d6071491 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_backslash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_equal.liga.glif new file mode 100644 index 00000000..3afe805e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_equal.start.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_equal.start.glif new file mode 100644 index 00000000..f7198a67 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_greater.liga.glif new file mode 100644 index 00000000..7cced3e3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_slash.liga.glif new file mode 100644 index 00000000..2bc4a71a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_slash_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_slash_equal.liga.glif new file mode 100644 index 00000000..8c1940ae --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_slash_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_slash_equal.start.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_slash_equal.start.glif new file mode 100644 index 00000000..20de9cb1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_slash_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_slash_slash.liga.glif new file mode 100644 index 00000000..3f943989 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/slash_slash_slash.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/tcaron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/tcaron.glif index a7c8e087..6021dc46 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/tcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/tcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/tcircumflexbelow.glif index 75964f43..4aaf334a 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/tcircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/tcircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/tcommaaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/tcommaaccent.glif index b49bdd8a..013cc9b9 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/tcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/tcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/tdotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/tdotbelow.glif index 7af3fc68..77dd783c 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/tdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/tdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/three.num.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/three.num.glif index 13de2a77..cfc019ee 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/three.num.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/three.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/tlinebelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/tlinebelow.glif index 1dbd3caa..09c018e3 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/tlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/tlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/two.num.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/two.num.glif index 14c3fed6..631bd1e0 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/two.num.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/two.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uacute.glif index 52d80303..24dbf89a 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ubreve.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ubreve.glif index 503a1df4..5bca42ab 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ubreve.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ubreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ucaron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ucaron.glif index 7360786a..b37fa172 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ucaron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ucaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ucircumflex.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ucircumflex.glif index c5c890b2..2ce0aceb 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ucircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ucircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udieresis.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udieresis.glif index 184fda62..2b595972 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udieresisacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udieresisacute.glif index 918ac90e..b1c5ec3c 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udieresisacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udieresisacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udieresiscaron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udieresiscaron.glif index 31749e77..0bdbe632 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udieresiscaron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udieresiscaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udieresisgrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udieresisgrave.glif index 66151703..1b365b1f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udieresisgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udieresisgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udieresismacron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udieresismacron.glif index 78456e73..ec678a0f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udieresismacron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udieresismacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udotbelow.glif index 4ff33505..569493be 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/udotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ugrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ugrave.glif index 5d79662c..886d08ed 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ugrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ugrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhookabove.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhookabove.glif index 73bf2e4d..678df7dc 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhorn.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhorn.glif index 57c7084c..453c7021 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhorn.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhorn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhornacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhornacute.glif index 72beade0..686969fe 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhornacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhorndotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhorndotbelow.glif index 69c033ea..a601d383 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhorndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhorndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhorngrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhorngrave.glif index 4b685876..f4735601 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhorngrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhorngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhornhookabove.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhornhookabove.glif index ab963fbd..439cc32f 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhorntilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhorntilde.glif index 1830deef..bc27808a 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhorntilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhorntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhungarumlaut.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhungarumlaut.glif index ed1a3e85..93da49be 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhungarumlaut.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uhungarumlaut.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/umacron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/umacron.glif index 4beca0fd..bbdc882e 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/umacron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/umacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/underscore.end.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/underscore.end.glif new file mode 100644 index 00000000..e47cecf6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/underscore.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/underscore.middle.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/underscore.middle.glif new file mode 100644 index 00000000..184c8fa9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/underscore.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/underscore.start.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/underscore.start.glif new file mode 100644 index 00000000..e2998f1c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/underscore.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/underscore_bar_underscore.m.glif new file mode 100644 index 00000000..cb7c92b4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/underscore_bar_underscore.m.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uni2011.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uni2011.glif index 937026ea..33e0d4b6 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uni2011.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uni2011.glif @@ -5,10 +5,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uni2610.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uni2610.glif new file mode 100644 index 00000000..70a2795d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uni2610.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uni2611.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uni2611.glif new file mode 100644 index 00000000..119221d8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uni2611.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uni2612.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uni2612.glif new file mode 100644 index 00000000..39b966ee --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uni2612.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uni2713.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uni2713.glif new file mode 100644 index 00000000..a5dbed9c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uni2713.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0A_0.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0A_0.glif new file mode 100644 index 00000000..13339b5b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0A_0.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0A_1.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0A_1.glif new file mode 100644 index 00000000..26d3c13d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0A_1.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0A_2.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0A_2.glif new file mode 100644 index 00000000..63bf0901 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0A_2.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0B_0.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0B_0.glif new file mode 100644 index 00000000..94854e00 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0B_0.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0B_1.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0B_1.glif new file mode 100644 index 00000000..290d1029 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0B_1.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0B_2.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0B_2.glif new file mode 100644 index 00000000..b894df86 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0B_2.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0B_3.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0B_3.glif new file mode 100644 index 00000000..8da50b53 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uniE_0B_3.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/updblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/updblhorzsngbxd.glif new file mode 100644 index 00000000..fbea73da --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/updblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/updblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/updblleftsngbxd.glif new file mode 100644 index 00000000..4cb8cd4e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/updblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/updblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/updblrightsngbxd.glif new file mode 100644 index 00000000..4d30e68b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/updblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upeighthblock.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upeighthblock.glif new file mode 100644 index 00000000..87701940 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upeighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uphalfblock.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uphalfblock.glif new file mode 100644 index 00000000..018ed615 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uphalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upheavydnhorzlightbxd.glif new file mode 100644 index 00000000..d4341da3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upheavydnhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upheavyhorzlightbxd.glif new file mode 100644 index 00000000..12f246ec --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upheavyleftdnlightbxd.glif new file mode 100644 index 00000000..b986e7b8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upheavyleftlightbxd.glif new file mode 100644 index 00000000..22654e88 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upheavyrightdnlightbxd.glif new file mode 100644 index 00000000..2256857f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upheavyrightlightbxd.glif new file mode 100644 index 00000000..cc2f9943 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upleftdnleftdnrightquadrant.glif new file mode 100644 index 00000000..91309b79 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upleftdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upleftdnrightquadrant.glif new file mode 100644 index 00000000..9bb17821 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upleftdnrightquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upleftquadrant.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upleftquadrant.glif new file mode 100644 index 00000000..ef21c49d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upleftuprightdnleftquadrant.glif new file mode 100644 index 00000000..0d5294c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upleftuprightdnleftquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upleftuprightdnrightquadrant.glif new file mode 100644 index 00000000..56cf6e14 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upleftuprightdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uplightdnhorzheavybxd.glif new file mode 100644 index 00000000..4f0c82fc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uplightdnhorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uplighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uplighthorzheavybxd.glif new file mode 100644 index 00000000..12f30e25 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uplighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uplightleftdnheavybxd.glif new file mode 100644 index 00000000..87be08c3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uplightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uplightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uplightleftheavybxd.glif new file mode 100644 index 00000000..bf26f0ed --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uplightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uplightrightdnheavybxd.glif new file mode 100644 index 00000000..1357009e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uplightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uplightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uplightrightheavybxd.glif new file mode 100644 index 00000000..a04f478d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uplightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uprightdnleftdnrightquadrant.glif new file mode 100644 index 00000000..df5a022e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uprightdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uprightdnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uprightdnleftquadrant.glif new file mode 100644 index 00000000..93cbe757 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uprightdnleftquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uprightquadrant.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uprightquadrant.glif new file mode 100644 index 00000000..de8b454f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uprightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upsnghorzdblbxd.glif new file mode 100644 index 00000000..ecf79690 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upsngleftdblbxd.glif new file mode 100644 index 00000000..d0ac6538 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upsngrightdblbxd.glif new file mode 100644 index 00000000..af44f8be --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/upsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uring.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uring.glif index 3718cc1d..191e9492 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uring.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/uring.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/utilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/utilde.glif index 69238655..2bcf8cc3 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/utilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/utilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vdotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vdotbelow.glif index ca119d26..a3c1ff84 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertdblhorzsngbxd.glif new file mode 100644 index 00000000..c87d717c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertdblhorzsngbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertdblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertdblleftsngbxd.glif new file mode 100644 index 00000000..44ab6cdb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertdblleftsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertdblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertdblrightsngbxd.glif new file mode 100644 index 00000000..c7840928 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertdblrightsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertheavyhorzlightbxd.glif new file mode 100644 index 00000000..21c0e1b9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertheavyhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertheavyleftlightbxd.glif new file mode 100644 index 00000000..cef2c326 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertheavyleftlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertheavyrightlightbxd.glif new file mode 100644 index 00000000..5e410988 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertheavyrightlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertlighthorzheavybxd.glif new file mode 100644 index 00000000..378c969e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertlighthorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertlightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertlightleftheavybxd.glif new file mode 100644 index 00000000..9cc69879 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertlightleftheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertlightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertlightrightheavybxd.glif new file mode 100644 index 00000000..ae47f552 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertlightrightheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertsnghorzdblbxd.glif new file mode 100644 index 00000000..304e8597 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertsnghorzdblbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertsngleftdblbxd.glif new file mode 100644 index 00000000..0c91712e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertsngleftdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertsngrightdblbxd.glif new file mode 100644 index 00000000..f166e6c7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/vertsngrightdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/w_w_w.liga.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/w_w_w.liga.glif new file mode 100644 index 00000000..d5a31f3c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/w_w_w.liga.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/wacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/wacute.glif index ee8ee9da..bb18b4a1 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/wacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/wacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/wcircumflex.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/wcircumflex.glif index 99259ea4..68278e09 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/wcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/wcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/wdieresis.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/wdieresis.glif index f771affa..e5a7477d 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/wdieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/wdieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/wgrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/wgrave.glif index 8ce69935..32eee467 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/wgrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/wgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/xdieresis.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/xdieresis.glif index 86e91113..b649e86b 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/xdieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/xdieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/yacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/yacute.glif index e4d531a5..4f318ae7 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/yacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/yacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ycircumflex.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ycircumflex.glif index 27d04828..5a649977 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ycircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ycircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ydieresis.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ydieresis.glif index 191b2cdb..3cdb111e 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ydieresis.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ydieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ydotaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ydotaccent.glif index 3b75b720..0b5a35e4 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ydotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ydotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ydotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ydotbelow.glif index 0fc13fa7..50612b8e 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ydotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ydotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ygrave.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ygrave.glif index 2f6e52fc..1cc3feaa 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ygrave.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ygrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/yhookabove.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/yhookabove.glif index 009e32ca..0fbc6c74 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/yhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/yhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ymacron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ymacron.glif index a9503085..5b10eabd 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ymacron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ymacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ytilde.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ytilde.glif index 6f075891..d17e2a5c 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ytilde.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/ytilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zacute.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zacute.glif index 0e325949..0a73c1ba 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zacute.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zcaron.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zcaron.glif index 117da38a..ae2f1adb 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zcaron.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zcircumflex.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zcircumflex.glif index 10ddf996..cfa0760e 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zdotaccent.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zdotaccent.glif index 0946c77a..1054a643 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zdotbelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zdotbelow.glif index c65f561e..ab0bace9 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zero.num.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zero.num.glif index 9a64cd0e..79b7d898 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zero.num.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zero.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zlinebelow.glif b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zlinebelow.glif index a0156a1e..2ad657e3 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/glyphs/zlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-Medium.ufo/lib.plist b/sources/instances/postscript/IntelOneMono-Medium.ufo/lib.plist index 8102064c..63832445 100644 --- a/sources/instances/postscript/IntelOneMono-Medium.ufo/lib.plist +++ b/sources/instances/postscript/IntelOneMono-Medium.ufo/lib.plist @@ -2,6 +2,17 @@ + com.defcon.sortDescriptor + + + allowPseudoUnicode + 0 + ascending + Intel Mono 1.4 + type + characterSet + + com.typemytype.robofont.compileSettings.MacRomanFirst com.typemytype.robofont.compileSettings.autohint @@ -712,6 +723,365 @@ circumflexgrave.cap circumflexhook.cap circumflextilde.cap + lighthorzbxd + heavyhorzbxd + lightvertbxd + heavyvertbxd + lighttrpldashhorzbxd + heavytrpldashhorzbxd + lighttrpldashvertbxd + heavytrpldashvertbxd + lightquaddashhorzbxd + heavyquaddashhorzbxd + lightquaddashvertbxd + heavyquaddashvertbxd + lightdnrightbxd + dnlightrightheavybxd + dnheavyrightlightbxd + heavydnrightbxd + lightdnleftbxd + dnlightleftheavybxd + dnheavyleftlightbxd + heavydnleftbxd + lightuprightbxd + uplightrightheavybxd + upheavyrightlightbxd + heavyuprightbxd + lightupleftbxd + uplightleftheavybxd + upheavyleftlightbxd + heavyupleftbxd + lightvertrightbxd + vertlightrightheavybxd + upheavyrightdnlightbxd + dnheavyrightuplightbxd + vertheavyrightlightbxd + dnlightrightupheavybxd + uplightrightdnheavybxd + heavyvertrightbxd + lightvertleftbxd + vertlightleftheavybxd + upheavyleftdnlightbxd + dnheavyleftuplightbxd + vertheavyleftlightbxd + dnlightleftupheavybxd + uplightleftdnheavybxd + heavyvertleftbxd + lightdnhorzbxd + leftheavyrightdnlightbxd + rightheavyleftdnlightbxd + dnlighthorzheavybxd + dnheavyhorzlightbxd + rightlightleftdnheavybxd + leftlightrightdnheavybxd + heavydnhorzbxd + lightuphorzbxd + leftheavyrightuplightbxd + rightheavyleftuplightbxd + uplighthorzheavybxd + upheavyhorzlightbxd + rightlightleftupheavybxd + leftlightrightupheavybxd + heavyuphorzbxd + lightverthorzbxd + leftheavyrightvertlightbxd + rightheavyleftvertlightbxd + vertlighthorzheavybxd + upheavydnhorzlightbxd + dnheavyuphorzlightbxd + vertheavyhorzlightbxd + leftupheavyrightdnlightbxd + rightupheavyleftdnlightbxd + leftdnheavyrightuplightbxd + rightdnheavyleftuplightbxd + dnlightuphorzheavybxd + uplightdnhorzheavybxd + rightlightleftvertheavybxd + leftlightrightvertheavybxd + heavyverthorzbxd + lightdbldashhorzbxd + heavydbldashhorzbxd + lightdbldashvertbxd + heavydbldashvertbxd + dblhorzbxd + dblvertbxd + dnsngrightdblbxd + dndblrightsngbxd + dbldnrightbxd + dnsngleftdblbxd + dndblleftsngbxd + dbldnleftbxd + upsngrightdblbxd + updblrightsngbxd + dbluprightbxd + upsngleftdblbxd + updblleftsngbxd + dblupleftbxd + vertsngrightdblbxd + vertdblrightsngbxd + dblvertrightbxd + vertsngleftdblbxd + vertdblleftsngbxd + dblvertleftbxd + dnsnghorzdblbxd + dndblhorzsngbxd + dbldnhorzbxd + upsnghorzdblbxd + updblhorzsngbxd + dbluphorzbxd + vertsnghorzdblbxd + vertdblhorzsngbxd + dblverthorzbxd + lightarcdnrightbxd + lightarcdnleftbxd + lightarcupleftbxd + lightarcuprightbxd + lightdiaguprightdnleftbxd + lightdiagupleftdnrightbxd + lightdiagcrossbxd + lightleftbxd + lightupbxd + lightrightbxd + lightdnbxd + heavyleftbxd + heavyupbxd + heavyrightbxd + heavydnbxd + lightleftheavyrightbxd + lightupheavydnbxd + heavyleftlightrightbxd + heavyuplightdnbxd + uphalfblock + dneighthblock + dnquarterblock + dnthreeeighthsblock + dnhalfblock + dnfiveeighthsblock + dnthreequartersblock + dnseveneighthsblock + fullblock + leftseveneighthsblock + leftthreequartersblock + leftfiveeighthsblock + lefthalfblock + leftthreeeighthsblock + leftquarterblock + lefteighthblock + righthalfblock + lightshade + mediumshade + darkshade + upeighthblock + righteighthblock + dnleftquadrant + dnrightquadrant + upleftquadrant + upleftdnleftdnrightquadrant + upleftdnrightquadrant + upleftuprightdnleftquadrant + upleftuprightdnrightquadrant + uprightquadrant + uprightdnleftquadrant + uprightdnleftdnrightquadrant + ligspacer + equal.start + equal.middle + equal.end + hyphen.start + hyphen.middle + hyphen.end + underscore.start + underscore.middle + underscore.end + numbersign.start + numbersign.middle + numbersign.end + period_equal.liga + period_period_equal.liga + period_hyphen.liga + colon_equal.liga + equal_equal.liga + exclam_equal.liga + equal_equal_equal.liga + exclam_equal_equal.liga + less_hyphen_less.liga + less_less_hyphen.liga + less_hyphen.liga + less_hyphen_greater.liga + hyphen_greater.liga + hyphen_greater_greater.liga + greater_hyphen_greater.liga + less_equal_less.liga + less_less_equal.liga + less_equal_greater.liga + equal_greater.liga + less_equal.liga + equal_greater_greater.liga + greater_equal_greater.liga + greater_equal.liga + greater_greater_equal.liga + greater_greater_hyphen.liga + greater_hyphen.liga + less_asciitilde_greater.liga + hyphen_less.liga + hyphen_less_less.liga + equal_less.liga + equal_less_less.liga + less_asciitilde_asciitilde.liga + less_asciitilde.liga + asciitilde_asciitilde.liga + asciitilde_greater.liga + asciitilde_asciitilde_greater + less_exclam_hyphen_hyphen.liga + slash_equal.liga + hyphen_bar.liga + bar_hyphen.liga + bar_equal.liga + hyphen_bar_bar.liga + bar_bar_hyphen.liga + equal_bar_bar.liga + bar_bar_equal.liga + equal_bar.liga + slash_slash_equal.liga + equal_slash.liga + equal_slash_slash.liga + equal_colon_equal.middle + equal_exclam_equal.middle + underscore_bar_underscore.m + hyphen_bar_hyphen.middle + equal_bar_equal.middle + hyphen_greater_hyphen.middle + hyphen_greater_greater_hyphen.m + equal_slash_slash_equal.middle + equal_slash_equal.middle + hyphen_bar_bar_hyphen.middle + equal_bar_bar_equal.middle + hyphen_less_hyphen.middle + hyphen_less_less_hyphen.middle + equal_greater_equal.middle + equal_less_equal.middle + equal_greater_greater_equal.m + equal_less_less_equal.middle + less_hyphen.start + greater_hyphen.start + bar_hyphen.start + less_equal.start + greater_equal.start + bar_equal.start + slash_equal.start + slash_slash_equal.start + less_less_hyphen.start + greater_greater_hyphen.start + bar_bar_hyphen.start + less_less_equal.start + greater_greater_equal.start + bar_bar_equal.start + hyphen_less.end + hyphen_greater.end + hyphen_bar.end + equal_less.end + equal_greater.end + equal_bar.end + hyphen_less_less.end + hyphen_greater_greater.end + hyphen_bar_bar.end + equal_less_less.end + equal_greater_greater.end + equal_bar_bar.end + equal_slash.end + equal_slash_slash.end + less_less_less.liga + less_less.liga + less_equal + less_greater.liga + greater_equal + greater_greater.liga + greater_greater_greater.liga + braceleft_bar.liga + bracketleft_bar.liga + less_colon.liga + colon_less.liga + greater_colon.liga + colon_greater.liga + bar_braceright.liga + bar_bracketright.liga + less_bar_bar_bar.liga + less_bar_bar.liga + less_bar.liga + less_bar_greater.liga + bar_greater.liga + bar_bar_greater.liga + bar_bar_bar_greater.liga + less_dollar.liga + less_dollar_greater.liga + dollar_greater.liga + less_plus.liga + less_plus_greater.liga + plus_greater.liga + less_asterisk.liga + less_asterisk_greater.liga + asterisk_greater.liga + slash_asterisk.liga + asterisk_slash.liga + slash_slash_slash.liga + slash_slash.liga + less_slash.liga + less_slash_greater.liga + slash_greater.liga + semicolon_semicolon.liga + colon_colon.liga + colon_colon_colon.liga + period_period.liga + period_period_period.liga + period_period_less.liga + exclam_exclam.liga + question_question.liga + percent_percent.liga + ampersand_ampersand.liga + bar_bar.liga + question_period.liga + question_colon.liga + plus_plus.liga + plus_plus_plus.liga + hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga + asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga + equal_asciitilde.liga + exclam_asciitilde.liga + asciitilde_hyphen.liga + w_w_w.liga + hyphen_asciitilde.liga + asciitilde_at.liga + asciicircum_equal.liga + question_equal.liga + numbersign_exclam.liga + numbersign_equal.liga + numbersign_colon.liga + numbersign_braceleft.liga + numbersign_bracketleft.liga + bracketright_numbersign.liga + numbersign_parenleft.liga + numbersign_question.liga + numbersign_underscore.liga + numbersign_underscore_parenleft + backslash_slash.liga + bar_bar_bar.liga + colon_colon_equal.liga + exclam_exclam_period.liga + period_question.liga + slash_backslash.liga + uniE0A0 + uniE0A1 + uniE0A2 + uniE0B0 + uniE0B1 + uniE0B2 + uniE0B3 + uni2610 + uni2611 + uni2612 + uni2713 public.postscriptNames diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/features.fea b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/features.fea index a1e98359..73f722ae 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/features.fea +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/features.fea @@ -1,368 +1,6 @@ -# ---------------------------- -# INTEL ONE MONO OPENTYPE CODE -# ---------------------------- -# ---------------- -# Language Systems -# ---------------- +include(../../features/shared.fea); -languagesystem DFLT dflt; -languagesystem latn dflt; -languagesystem latn TRK; -languagesystem latn AZE; -languagesystem latn CRT; -languagesystem latn CAT; +include(../../features/mark/IntelOneMono-MediumItalic mark.fea); - -# ------- -# Classes -# ------- - -# Base Letters -@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; -@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; - -# Figures -@fig = [zero one two three four five six seven eight nine]; -@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; -@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; -@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; -@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; - -# Marks Above -@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; -@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; - -# Marks Below -@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; - - -# --------------- -# Localized Forms -# --------------- - -feature locl { - script latn; - language TRK; - lookup iTurkish { - sub i by idotaccent; - } iTurkish; - language AZE; - lookup iTurkish; - language CRT; - lookup iTurkish; - language CAT; - sub l periodcentered' l by middotcat; - sub L periodcentered' L by middotcat.cap; - # try fusing them - sub L middotcat.cap by L.dot; - sub L middotcat by L.dot; - sub l middotcat by l.dot; -} locl; - - -# --------------------------------- -# Glyph Composition / Decomposition -# --------------------------------- - -feature ccmp { - - # Decompose unicode lowercase characters whose uppercase counterparts have no unicode. - lookup Decomp { - sub hlinebelow by h macronlowmod; - sub jcaron by j caron; - } Decomp; - - # Replace double above accents by combined drawings. - lookup DblMarks { - sub dieresiscmb acutecmb by dieresisacute; - sub dieresiscmb gravecmb by dieresisgrave; - sub dieresiscmb caroncmb by dieresiscaron; - sub dieresiscmb macroncmb by dieresismacron; - sub brevecmb acutecmb by breveacute; - sub brevecmb gravecmb by brevegrave; - sub brevecmb hookcmb by brevehook; - sub brevecmb tildecmb by brevetilde; - sub circumflexcmb acutecmb by circumflexacute; - sub circumflexcmb gravecmb by circumflexgrave; - sub circumflexcmb hookcmb by circumflexhook; - sub circumflexcmb tildecmb by circumflextilde; - # capital forms - sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; - sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; - sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; - sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; - sub brevecmb.cap acutecmb.cap by breveacute.cap; - sub brevecmb.cap gravecmb.cap by brevegrave.cap; - sub brevecmb.cap hookcmb.cap by brevehook.cap; - sub brevecmb.cap tildecmb.cap by brevetilde.cap; - sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; - sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; - sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; - sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; - } DblMarks; - - # Replace combining marks that follow a uppercase letter by their uppercase form - lookup CapitalMarks { - sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; - sub [@ltrUC] [@lcMarks]' by [@ucMarks]; - } CapitalMarks; - - # Replace letters with dotless counterparts when followed by a combining mark - lookup Dotless { - sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; - sub [i j]' [@lcMarks] by [dotlessi dotlessj]; - } Dotless; - - # Replace e ogonek with pre-drawn eogonek - lookup eogonek { - sub e ogonekcmb by eogonek; - } eogonek; - -} ccmp; - - -# ---------- -# Numerators -# ---------- - -feature numr { - sub @fig by @figNum; -} numr; - -# ------------ -# Denominators -# ------------ - -feature dnom { - sub @fig by @figDen; -} dnom; - -# ----------- -# Superscript -# ----------- - -feature sups { - sub @fig by @figSup; -} sups; - -# --------------------- -# Subscript & Inferiors -# --------------------- - -feature subs { - sub @fig by @figInf; -} subs; - -feature sinf { - sub @fig by @figInf; -} sinf; - - -# --------------------- -# Contextual Alternates -# --------------------- - -feature calt { - # shifts colon to align with math symbols when used together - - sub colon' [plus equal greater less hyphen] by colon.fig; - sub [plus equal less greater hyphen] colon' by colon.fig; - - sub colon' [colon colon.fig] by colon.fig; - sub colon.fig colon' by colon.fig; - -} calt; - - -# -------------- -# Stylistic Sets -# -------------- - -feature ss11 { - featureNames { - name "Raised Colon (Figures Only)"; # Windows English - name 1 0 0 "Raised Colon (Figures Only)"; # Mac English - }; - lookup FigureColonContextual { - sub @fig colon' @fig by colon.fig; - } FigureColonContextual; -} ss11; - -feature ss12 { - featureNames { - name "Raised Colon (Global)"; # Windows English - name 1 0 0 "Raised Colon (Global)"; # Mac English - }; - lookup FigureColon { - sub colon by colon.fig; - } FigureColon; -} ss12; - - -# -------------------- -# Stylistic Alternates -# -------------------- - -feature salt { - lookup FigureColon; # SS12 -} salt; - - -# --------------------------------------------------------------------- -# MARK | Generated: November 23, 2022 - 02:37:59 PM by 'markFeature.py' -# --------------------------------------------------------------------- - -markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; -markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; -markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; -markClass [cedillacmb] @mark_belowcedilla; -markClass [ogonekcmb] @mark_belowogonek; - -feature mark { - - lookup aboveLC{ - pos base [a] mark @mark_aboveLC; - pos base [c] mark @mark_aboveLC; - pos base [dotlessi] mark @mark_aboveLC; - pos base [dotlessj] mark @mark_aboveLC; - pos base [e] mark @mark_aboveLC; - pos base [eogonek] mark @mark_aboveLC; - pos base [g] mark @mark_aboveLC; - pos base [m] mark @mark_aboveLC; - pos base [n] mark @mark_aboveLC; - pos base [o] mark @mark_aboveLC; - pos base [p] mark @mark_aboveLC; - pos base [s] mark @mark_aboveLC; - pos base [u] mark @mark_aboveLC; - pos base [z] mark @mark_aboveLC; - } aboveLC; - - lookup aboveUC{ - pos base [A] mark @mark_aboveUC; - pos base [C] mark @mark_aboveUC; - pos base [E] mark @mark_aboveUC; - pos base [Eogonek] mark @mark_aboveUC; - pos base [G] mark @mark_aboveUC; - pos base [I] mark @mark_aboveUC; - pos base [J] mark @mark_aboveUC; - pos base [M] mark @mark_aboveUC; - pos base [N] mark @mark_aboveUC; - pos base [O] mark @mark_aboveUC; - pos base [P] mark @mark_aboveUC; - pos base [S] mark @mark_aboveUC; - pos base [U] mark @mark_aboveUC; - pos base [Z] mark @mark_aboveUC; - } aboveUC; - - lookup below{ - pos base [C] mark @mark_below; - pos base [Dcroat] mark @mark_below; - pos base [E] mark @mark_below; - pos base [H] mark @mark_below; - pos base [I] mark @mark_below; - pos base [O] mark @mark_below; - pos base [S] mark @mark_below; - pos base [U] mark @mark_below; - pos base [X] mark @mark_below; - pos base [Z] mark @mark_below; - pos base [c] mark @mark_below; - pos base [dcroat] mark @mark_below; - pos base [dotlessi] mark @mark_below; - pos base [e] mark @mark_below; - pos base [h] mark @mark_below; - pos base [o] mark @mark_below; - pos base [s] mark @mark_below; - pos base [u] mark @mark_below; - pos base [x] mark @mark_below; - pos base [z] mark @mark_below; - } below; - - lookup belowcedilla{ - pos base [Z] mark @mark_belowcedilla; - pos base [z] mark @mark_belowcedilla; - } belowcedilla; - - lookup belowogonek{ - pos base [A] mark @mark_belowogonek; - pos base [E] mark @mark_belowogonek; - pos base [I] mark @mark_belowogonek; - pos base [O] mark @mark_belowogonek; - pos base [U] mark @mark_belowogonek; - pos base [a] mark @mark_belowogonek; - pos base [dotlessi] mark @mark_belowogonek; - pos base [e] mark @mark_belowogonek; - pos base [o] mark @mark_belowogonek; - pos base [u] mark @mark_belowogonek; - } belowogonek; - -} mark; - -@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; -@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; - -table GDEF { - GlyphClassDef @BASES,,@MARKS,; -} GDEF; - - -# -------------- -# All Alternates -# -------------- - -feature aalt { - sub germandbls from [germandbls uni1E9E]; - sub uni1E9E from [uni1E9E germandbls]; - sub colon from [colon colon.fig]; - sub colon.fig from [colon.fig colon]; - sub eight from [eight eight.den eight.sup eight.num eight.inf]; - sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; - sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; - sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; - sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; - sub five from [five five.inf five.num five.den five.sup]; - sub five.sup from [five.sup five five.inf five.num five.den]; - sub five.den from [five.den five.sup five five.inf five.num]; - sub five.num from [five.num five.den five.sup five five.inf]; - sub five.inf from [five.inf five.num five.den five.sup five]; - sub four from [four four.sup four.num four.den four.inf]; - sub four.inf from [four.inf four four.sup four.num four.den]; - sub four.den from [four.den four.inf four four.sup four.num]; - sub four.num from [four.num four.den four.inf four four.sup]; - sub four.sup from [four.sup four.num four.den four.inf four]; - sub nine from [nine nine.den nine.inf nine.num nine.sup]; - sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; - sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; - sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; - sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; - sub one from [one one.den one.num one.inf one.sup]; - sub one.sup from [one.sup one one.den one.num one.inf]; - sub one.inf from [one.inf one.sup one one.den one.num]; - sub one.num from [one.num one.inf one.sup one one.den]; - sub one.den from [one.den one.num one.inf one.sup one]; - sub seven from [seven seven.inf seven.num seven.sup seven.den]; - sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; - sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; - sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; - sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; - sub six from [six six.num six.sup six.den six.inf]; - sub six.inf from [six.inf six six.num six.sup six.den]; - sub six.den from [six.den six.inf six six.num six.sup]; - sub six.sup from [six.sup six.den six.inf six six.num]; - sub six.num from [six.num six.sup six.den six.inf six]; - sub three from [three three.inf three.den three.num three.sup]; - sub three.sup from [three.sup three three.inf three.den three.num]; - sub three.num from [three.num three.sup three three.inf three.den]; - sub three.den from [three.den three.num three.sup three three.inf]; - sub three.inf from [three.inf three.den three.num three.sup three]; - sub two from [two two.inf two.sup two.num two.den]; - sub two.den from [two.den two two.inf two.sup two.num]; - sub two.num from [two.num two.den two two.inf two.sup]; - sub two.sup from [two.sup two.num two.den two two.inf]; - sub two.inf from [two.inf two.sup two.num two.den two]; - sub zero from [zero zero.sup zero.num zero.den zero.inf]; - sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; - sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; - sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; - sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; -} aalt; +include(../../features/aalt.fea); diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/fontinfo.plist b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/fontinfo.plist index 62fffd5f..2b2fef93 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/fontinfo.plist +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/fontinfo.plist @@ -7,7 +7,7 @@ capHeight 655 copyright - Copyright 2023 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) descender -260 familyName @@ -57,7 +57,7 @@ platformID 1 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -69,7 +69,7 @@ platformID 3 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -402,7 +402,7 @@ versionMajor 1 versionMinor - 3 + 4 xHeight 471 diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/L_.dot.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/L_.dot.glif index 365ce12a..91787da6 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/L_.dot.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/L_.dot.glif @@ -5,7 +5,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_breve.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_breve.glif index aee93b16..2abe3acf 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_breve.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_breve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_caron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_caron.glif index e365a397..93360cb1 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_caron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflex.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflex.glif index 3fe893cc..71447ce1 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexacute.glif index 78832c08..8fdbaeda 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexdotbelow.glif index 814cf18a..e9e58f1d 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexgrave.glif index 1cbfa085..c46a03a4 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexhookabove.glif index 5ccdf51b..8d30f4b5 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflextilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflextilde.glif index 60368ad4..f778089e 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_dieresis.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_dieresis.glif index 4bbfbc12..9f1826d2 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_dotaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_dotaccent.glif index d9a6d4e5..1153f7fb 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_dotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_dotbelow.glif index 45320bec..cd6c2995 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_hookabove.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_hookabove.glif index 42018bf3..e59a0cc5 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_horn.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_horn.glif index b3275112..006c5251 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_horn.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_horn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_hornacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_hornacute.glif index 891d69e5..c75dbc15 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_hornacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_hornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_horndotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_horndotbelow.glif index 90175ee7..f889ba38 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_horndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_horndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_horngrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_horngrave.glif index c72e3d45..0151f1cc 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_horngrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_horngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_hornhookabove.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_hornhookabove.glif index f7ea2be5..c371b48a 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_hornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_hornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_horntilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_horntilde.glif index 5c0ffde5..8e21a3ab 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_horntilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_horntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_macron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_macron.glif index 12d69d3d..a3dc836c 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_macron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_tilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_tilde.glif index cb35f673..3a81f2b8 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/O_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_acute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_acute.glif index 184513d8..745ee56f 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_acute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_caron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_caron.glif index 155d097f..fb61a7c4 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_caron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_commaaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_commaaccent.glif index a2845e94..993d4c7c 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_dotaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_dotaccent.glif index 01d4bdb8..37e2b833 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_dotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_dotbelow.glif index 8301beeb..89162beb 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_linebelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_linebelow.glif index 62e28b35..be375d89 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_macrondotbelow.glif index 05b5b658..73fb0724 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_macrondotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/R_macrondotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_.glif index db471dfd..254fbd27 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_acute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_acute.glif index 72f555d3..618cfef8 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_acute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_caron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_caron.glif index f050d868..e4b54a39 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_caron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_circumflex.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_circumflex.glif index 64971283..ce4d4f46 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_commaaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_commaaccent.glif index d98554de..57153110 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_dotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_dotbelow.glif index 2e387e96..96ce316b 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/S_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/T_caron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/T_caron.glif index dd28e491..a19de790 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/T_caron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/T_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/T_circumflexbelow.glif index 8408b0fc..04e62723 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/T_circumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/T_circumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/T_commaaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/T_commaaccent.glif index f6a0d2b9..8efd5833 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/T_commaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/T_commaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/T_dotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/T_dotbelow.glif index eb1d86db..3d102e5d 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/T_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/T_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/T_linebelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/T_linebelow.glif index ec706e83..7c07de34 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/T_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/T_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_acute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_acute.glif index 0e864ae6..559c98f1 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_acute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_breve.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_breve.glif index 0737c67b..1fca1b9a 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_breve.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_breve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_caron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_caron.glif index 3d07b78e..7a0b3cd6 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_caron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_circumflex.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_circumflex.glif index f7cab1ba..81b49c3d 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresis.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresis.glif index 3b345150..46ec60f2 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresisacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresisacute.glif index cdf0dd9d..fd619e5f 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresisacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresisacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresiscaron.glif index 1669c15c..ac59eded 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresiscaron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresiscaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresisgrave.glif index 0129226b..a7aaf32a 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresisgrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresisgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresismacron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresismacron.glif index 6ef6f2bc..f406713f 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresismacron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresismacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dotbelow.glif index 82edfbb5..e5734611 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_grave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_grave.glif index 473b6200..b70eee33 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_grave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_hookabove.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_hookabove.glif index 29ab6cca..91bd6c03 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_horn.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_horn.glif index 48dbae20..02762b65 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_horn.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_horn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_hornacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_hornacute.glif index 32e5659f..2fd0d981 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_hornacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_hornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_horndotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_horndotbelow.glif index 1b3ca83b..261148a5 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_horndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_horndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_horngrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_horngrave.glif index 200c185b..323cac9d 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_horngrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_horngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_hornhookabove.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_hornhookabove.glif index 7f877d1c..e91c29d4 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_hornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_hornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_horntilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_horntilde.glif index b8cfe8f7..a348994a 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_horntilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_horntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_hungarumlaut.glif index ab29d658..5cb9543f 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_hungarumlaut.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_hungarumlaut.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_macron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_macron.glif index a67007f1..1b325228 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_macron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_ring.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_ring.glif index f697668b..acecf09a 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_ring.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_ring.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_tilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_tilde.glif index 14eeeb91..09ca5efe 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/U_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/V_dotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/V_dotbelow.glif index 85bdfef3..4c72e054 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/V_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/V_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/W_acute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/W_acute.glif index 0ac9810f..72c69526 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/W_acute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/W_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/W_circumflex.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/W_circumflex.glif index 0d236680..c4cd4560 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/W_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/W_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/W_dieresis.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/W_dieresis.glif index 0d59e6ed..5465f60a 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/W_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/W_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/W_grave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/W_grave.glif index 62fb5f65..d25a854b 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/W_grave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/W_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/X_dieresis.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/X_dieresis.glif index 7cd8fc67..812f5e70 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/X_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/X_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_acute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_acute.glif index d84fc6ab..a2bc8524 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_acute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_circumflex.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_circumflex.glif index ee1deaf0..a4c660b4 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_dieresis.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_dieresis.glif index ca9c5b49..0df435a0 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_dieresis.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_dieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_dotaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_dotaccent.glif index 7bda9c05..c229bcd7 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_dotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_dotbelow.glif index ccf67892..e4ce370f 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_grave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_grave.glif index b77f05c9..7d0d015d 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_grave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_grave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_hookabove.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_hookabove.glif index 36bdd7b0..b5c429db 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_hookabove.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_hookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_macron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_macron.glif index a61d9167..7a41b2ab 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_macron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_macron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_tilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_tilde.glif index e8341bd9..43a07834 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_tilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Y_tilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_acute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_acute.glif index 3db1a9da..28fb0cae 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_acute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_acute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_caron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_caron.glif index 29c0efc7..938f001d 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_caron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_caron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_circumflex.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_circumflex.glif index 37c67f7d..a5007cb3 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_circumflex.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_circumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_dotaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_dotaccent.glif index 8235895d..981153dc 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_dotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_dotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_dotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_dotbelow.glif index 590184e1..e2035aaf 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_dotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_dotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_linebelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_linebelow.glif index c69bfce4..77e97d04 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_linebelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/Z_linebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/aacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/aacute.glif index 4ca43e8e..2b26018e 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/aacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/aacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abreve.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abreve.glif index 0352f359..e07fd1ea 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abreve.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abreveacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abreveacute.glif index b849a3c6..3f6477fe 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abreveacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abreveacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abrevedotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abrevedotbelow.glif index b412acaf..eca352a0 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abrevedotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abrevedotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abrevegrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abrevegrave.glif index 7ff7647e..a67637a4 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abrevegrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abrevegrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abrevehookabove.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abrevehookabove.glif index 7ec6eb03..58394252 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abrevehookabove.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abrevehookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abrevetilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abrevetilde.glif index 45186884..ded12276 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abrevetilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/abrevetilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acaron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acaron.glif index 297a690e..0ece181f 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acaron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflex.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflex.glif index de66a27e..d5c74b4d 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexacute.glif index fd6f25d4..79112c13 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexdotbelow.glif index d433b3af..4c644ae5 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexgrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexgrave.glif index 75102a1d..f7a4c3fb 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexhookabove.glif index 7ae6aed3..da81cb05 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflextilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflextilde.glif index bdbc65e1..eb124666 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acircumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acutecmb.cap.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acutecmb.cap.glif index 56b4ee0d..14f0ca95 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acutecmb.cap.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/acutecmb.cap.glif @@ -1,6 +1,5 @@ - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/adieresis.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/adieresis.glif index 38670c5a..47035911 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/adieresis.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/adieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/adotaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/adotaccent.glif index ddd6aeb3..829c4698 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/adotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/adotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/adotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/adotbelow.glif index 172ca354..03ef63a4 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/adotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/adotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ae.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ae.glif index 50e84c12..978ad7e4 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ae.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ae.glif @@ -71,7 +71,7 @@ - + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/agrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/agrave.glif index 39259dde..381c1f07 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/agrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/agrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ahookabove.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ahookabove.glif index 47971ecc..7ea976f4 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ahookabove.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ahookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/amacron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/amacron.glif index 22e85cb5..45befbcd 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/amacron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/amacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ampersand_ampersand.liga.glif new file mode 100644 index 00000000..9ab108b5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ampersand_ampersand.liga.glif @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/aring.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/aring.glif index cbdd47a0..82e601df 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/aring.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/aring.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asciicircum_equal.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asciicircum_equal.liga.glif new file mode 100644 index 00000000..5eeaa117 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asciicircum_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..7ad73ee5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_asciitilde_greater.glif new file mode 100644 index 00000000..558394ed --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_asciitilde_greater.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_at.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_at.liga.glif new file mode 100644 index 00000000..a6302422 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_at.liga.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_greater.liga.glif new file mode 100644 index 00000000..db770838 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_greater.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_hyphen.liga.glif new file mode 100644 index 00000000..83ba4fca --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_hyphen.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asterisk.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asterisk.glif index ccf98410..6f6243de 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asterisk.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asterisk.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_asterisk.liga.glif new file mode 100644 index 00000000..5bc18e50 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif new file mode 100644 index 00000000..6f072acf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_greater.liga.glif new file mode 100644 index 00000000..d6116d34 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_slash.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_slash.liga.glif new file mode 100644 index 00000000..71046ba6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/at.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/at.glif index 57f6ae91..648a1d39 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/at.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/at.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/atilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/atilde.glif index 32e1ace4..7181aceb 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/atilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/atilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/backslash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/backslash_slash.liga.glif new file mode 100644 index 00000000..9177ca56 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/backslash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar.liga.glif new file mode 100644 index 00000000..6e09a289 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_bar.liga.glif new file mode 100644 index 00000000..dc1b5564 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_bar.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif new file mode 100644 index 00000000..95820546 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_equal.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_equal.liga.glif new file mode 100644 index 00000000..47b80eaa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_equal.start.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_equal.start.glif new file mode 100644 index 00000000..4dd662d9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_greater.liga.glif new file mode 100644 index 00000000..623cf795 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_greater.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_hyphen.liga.glif new file mode 100644 index 00000000..6951b019 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_hyphen.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_hyphen.start.glif new file mode 100644 index 00000000..6d780545 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_hyphen.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_braceright.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_braceright.liga.glif new file mode 100644 index 00000000..dc84a193 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_braceright.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bracketright.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bracketright.liga.glif new file mode 100644 index 00000000..47be038a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_bracketright.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_equal.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_equal.liga.glif new file mode 100644 index 00000000..d56a2dd0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_equal.start.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_equal.start.glif new file mode 100644 index 00000000..c041fbe7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_greater.liga.glif new file mode 100644 index 00000000..5842a285 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_hyphen.liga.glif new file mode 100644 index 00000000..1d1ece17 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_hyphen.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_hyphen.start.glif new file mode 100644 index 00000000..f51d1ba1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bar_hyphen.start.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/blinebelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/blinebelow.glif index af509678..3b36c1d4 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/blinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/blinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/braceleft_bar.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/braceleft_bar.liga.glif new file mode 100644 index 00000000..86eec97d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/braceleft_bar.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bracketleft_bar.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bracketleft_bar.liga.glif new file mode 100644 index 00000000..5a3351f8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bracketleft_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bracketright_numbersign.liga.glif new file mode 100644 index 00000000..d0db7fe8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/bracketright_numbersign.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/breveacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/breveacute.glif index 9b82c88c..40faeaf0 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/breveacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/breveacute.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/brevegrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/brevegrave.glif index 9a85f7c4..7cef3fbf 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/brevegrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/brevegrave.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/brevehook.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/brevehook.glif index 96d6a9cd..3657dfc6 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/brevehook.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/brevehook.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/brevetilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/brevetilde.glif index 42700c0c..1de16c67 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/brevetilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/brevetilde.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/cacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/cacute.glif index 6c69a1fa..f8c570fc 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/cacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/cacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ccaron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ccaron.glif index d64f3202..fde13179 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ccaron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ccaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ccircumflex.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ccircumflex.glif index 1b5d184c..bf57a1f5 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ccircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ccircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/cdotaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/cdotaccent.glif index 2f787ca9..bbf548c9 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/cdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/cdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/circumflexacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/circumflexacute.glif index 1ad864d0..40414c92 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/circumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/circumflexacute.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/circumflexgrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/circumflexgrave.glif index d30e2a9b..d4ca0b2a 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/circumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/circumflexgrave.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/circumflexhook.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/circumflexhook.glif index eef9388a..1d2e432c 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/circumflexhook.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/circumflexhook.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/circumflextilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/circumflextilde.glif index 793d487a..c61dde90 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/circumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/circumflextilde.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/colon_colon.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/colon_colon.liga.glif new file mode 100644 index 00000000..513ec73c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/colon_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/colon_colon_colon.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/colon_colon_colon.liga.glif new file mode 100644 index 00000000..4de5a363 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/colon_colon_colon.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/colon_colon_equal.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/colon_colon_equal.liga.glif new file mode 100644 index 00000000..0f6915a1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/colon_colon_equal.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/colon_equal.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/colon_equal.liga.glif new file mode 100644 index 00000000..a9675107 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/colon_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/colon_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/colon_greater.liga.glif new file mode 100644 index 00000000..53ec7726 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/colon_greater.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/colon_less.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/colon_less.liga.glif new file mode 100644 index 00000000..502db5a9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/colon_less.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/commaturnedabovecmb.glif index d0181bc7..48d6da41 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/commaturnedabovecmb.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/commaturnedabovecmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/contents.plist b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/contents.plist index 9b3fa25c..10a2ded8 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/contents.plist +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/contents.plist @@ -498,6 +498,8 @@ amacron.glif ampersand ampersand.glif + ampersand_ampersand.liga + ampersand_ampersand.liga.glif aogonek aogonek.glif apostrophemod @@ -508,10 +510,30 @@ aring.glif asciicircum asciicircum.glif + asciicircum_equal.liga + asciicircum_equal.liga.glif asciitilde asciitilde.glif + asciitilde_asciitilde.liga + asciitilde_asciitilde.liga.glif + asciitilde_asciitilde_greater + asciitilde_asciitilde_greater.glif + asciitilde_at.liga + asciitilde_at.liga.glif + asciitilde_greater.liga + asciitilde_greater.liga.glif + asciitilde_hyphen.liga + asciitilde_hyphen.liga.glif asterisk asterisk.glif + asterisk_asterisk.liga + asterisk_asterisk.liga.glif + asterisk_asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga.glif + asterisk_greater.liga + asterisk_greater.liga.glif + asterisk_slash.liga + asterisk_slash.liga.glif at at.glif atilde @@ -520,20 +542,58 @@ b.glif backslash backslash.glif + backslash_slash.liga + backslash_slash.liga.glif bahtthai bahtthai.glif bar bar.glif + bar_bar.liga + bar_bar.liga.glif + bar_bar_bar.liga + bar_bar_bar.liga.glif + bar_bar_bar_greater.liga + bar_bar_bar_greater.liga.glif + bar_bar_equal.liga + bar_bar_equal.liga.glif + bar_bar_equal.start + bar_bar_equal.start.glif + bar_bar_greater.liga + bar_bar_greater.liga.glif + bar_bar_hyphen.liga + bar_bar_hyphen.liga.glif + bar_bar_hyphen.start + bar_bar_hyphen.start.glif + bar_braceright.liga + bar_braceright.liga.glif + bar_bracketright.liga + bar_bracketright.liga.glif + bar_equal.liga + bar_equal.liga.glif + bar_equal.start + bar_equal.start.glif + bar_greater.liga + bar_greater.liga.glif + bar_hyphen.liga + bar_hyphen.liga.glif + bar_hyphen.start + bar_hyphen.start.glif blinebelow blinebelow.glif braceleft braceleft.glif + braceleft_bar.liga + braceleft_bar.liga.glif braceright braceright.glif bracketleft bracketleft.glif + bracketleft_bar.liga + bracketleft_bar.liga.glif bracketright bracketright.glif + bracketright_numbersign.liga + bracketright_numbersign.liga.glif breve breve.glif breveacute @@ -612,6 +672,18 @@ colon.glif colon.fig colon.fig.glif + colon_colon.liga + colon_colon.liga.glif + colon_colon_colon.liga + colon_colon_colon.liga.glif + colon_colon_equal.liga + colon_colon_equal.liga.glif + colon_equal.liga + colon_equal.liga.glif + colon_greater.liga + colon_greater.liga.glif + colon_less.liga + colon_less.liga.glif comma comma.glif commaaboverightcmb @@ -628,8 +700,32 @@ dagger.glif daggerdbl daggerdbl.glif + darkshade + darkshade.glif + dbldnhorzbxd + dbldnhorzbxd.glif + dbldnleftbxd + dbldnleftbxd.glif + dbldnrightbxd + dbldnrightbxd.glif + dblhorzbxd + dblhorzbxd.glif dblprimemod dblprimemod.glif + dbluphorzbxd + dbluphorzbxd.glif + dblupleftbxd + dblupleftbxd.glif + dbluprightbxd + dbluprightbxd.glif + dblvertbxd + dblvertbxd.glif + dblverthorzbxd + dblverthorzbxd.glif + dblvertleftbxd + dblvertleftbxd.glif + dblvertrightbxd + dblvertrightbxd.glif dcaron dcaron.glif dcircumflexbelow @@ -668,8 +764,64 @@ divide.glif dlinebelow dlinebelow.glif + dndblhorzsngbxd + dndblhorzsngbxd.glif + dndblleftsngbxd + dndblleftsngbxd.glif + dndblrightsngbxd + dndblrightsngbxd.glif + dneighthblock + dneighthblock.glif + dnfiveeighthsblock + dnfiveeighthsblock.glif + dnhalfblock + dnhalfblock.glif + dnheavyhorzlightbxd + dnheavyhorzlightbxd.glif + dnheavyleftlightbxd + dnheavyleftlightbxd.glif + dnheavyleftuplightbxd + dnheavyleftuplightbxd.glif + dnheavyrightlightbxd + dnheavyrightlightbxd.glif + dnheavyrightuplightbxd + dnheavyrightuplightbxd.glif + dnheavyuphorzlightbxd + dnheavyuphorzlightbxd.glif + dnleftquadrant + dnleftquadrant.glif + dnlighthorzheavybxd + dnlighthorzheavybxd.glif + dnlightleftheavybxd + dnlightleftheavybxd.glif + dnlightleftupheavybxd + dnlightleftupheavybxd.glif + dnlightrightheavybxd + dnlightrightheavybxd.glif + dnlightrightupheavybxd + dnlightrightupheavybxd.glif + dnlightuphorzheavybxd + dnlightuphorzheavybxd.glif + dnquarterblock + dnquarterblock.glif + dnrightquadrant + dnrightquadrant.glif + dnseveneighthsblock + dnseveneighthsblock.glif + dnsnghorzdblbxd + dnsnghorzdblbxd.glif + dnsngleftdblbxd + dnsngleftdblbxd.glif + dnsngrightdblbxd + dnsngrightdblbxd.glif + dnthreeeighthsblock + dnthreeeighthsblock.glif + dnthreequartersblock + dnthreequartersblock.glif dollar dollar.glif + dollar_greater.liga + dollar_greater.liga.glif dong dong.glif dotaccent @@ -738,12 +890,86 @@ eogonek.glif equal equal.glif + equal.end + equal.end.glif + equal.middle + equal.middle.glif + equal.start + equal.start.glif + equal_asciitilde.liga + equal_asciitilde.liga.glif + equal_bar.end + equal_bar.end.glif + equal_bar.liga + equal_bar.liga.glif + equal_bar_bar.end + equal_bar_bar.end.glif + equal_bar_bar.liga + equal_bar_bar.liga.glif + equal_bar_bar_equal.middle + equal_bar_bar_equal.middle.glif + equal_bar_equal.middle + equal_bar_equal.middle.glif + equal_colon_equal.middle + equal_colon_equal.middle.glif + equal_equal.liga + equal_equal.liga.glif + equal_equal_equal.liga + equal_equal_equal.liga.glif + equal_exclam_equal.middle + equal_exclam_equal.middle.glif + equal_greater.end + equal_greater.end.glif + equal_greater.liga + equal_greater.liga.glif + equal_greater_equal.middle + equal_greater_equal.middle.glif + equal_greater_greater.end + equal_greater_greater.end.glif + equal_greater_greater.liga + equal_greater_greater.liga.glif + equal_greater_greater_equal.m + equal_greater_greater_equal.m.glif + equal_less.end + equal_less.end.glif + equal_less.liga + equal_less.liga.glif + equal_less_equal.middle + equal_less_equal.middle.glif + equal_less_less.end + equal_less_less.end.glif + equal_less_less.liga + equal_less_less.liga.glif + equal_less_less_equal.middle + equal_less_less_equal.middle.glif + equal_slash.end + equal_slash.end.glif + equal_slash.liga + equal_slash.liga.glif + equal_slash_equal.middle + equal_slash_equal.middle.glif + equal_slash_slash.end + equal_slash_slash.end.glif + equal_slash_slash.liga + equal_slash_slash.liga.glif + equal_slash_slash_equal.middle + equal_slash_slash_equal.middle.glif eth eth.glif etilde etilde.glif exclam exclam.glif + exclam_asciitilde.liga + exclam_asciitilde.liga.glif + exclam_equal.liga + exclam_equal.liga.glif + exclam_equal_equal.liga + exclam_equal_equal.liga.glif + exclam_exclam.liga + exclam_exclam.liga.glif + exclam_exclam_period.liga + exclam_exclam_period.liga.glif exclamdown exclamdown.glif f @@ -778,6 +1004,8 @@ fracbar.glif fraction fraction.glif + fullblock + fullblock.glif g g.glif gbreve @@ -802,6 +1030,34 @@ gravecmb.cap.glif greater greater.glif + greater_colon.liga + greater_colon.liga.glif + greater_equal + greater_equal.glif + greater_equal.liga + greater_equal.liga.glif + greater_equal.start + greater_equal.start.glif + greater_equal_greater.liga + greater_equal_greater.liga.glif + greater_greater.liga + greater_greater.liga.glif + greater_greater_equal.liga + greater_greater_equal.liga.glif + greater_greater_equal.start + greater_greater_equal.start.glif + greater_greater_greater.liga + greater_greater_greater.liga.glif + greater_greater_hyphen.liga + greater_greater_hyphen.liga.glif + greater_greater_hyphen.start + greater_greater_hyphen.start.glif + greater_hyphen.liga + greater_hyphen.liga.glif + greater_hyphen.start + greater_hyphen.start.glif + greater_hyphen_greater.liga + greater_hyphen_greater.liga.glif greaterequal greaterequal.glif guillemetleft @@ -824,6 +1080,52 @@ hcircumflex.glif hdotbelow hdotbelow.glif + heavydbldashhorzbxd + heavydbldashhorzbxd.glif + heavydbldashvertbxd + heavydbldashvertbxd.glif + heavydnbxd + heavydnbxd.glif + heavydnhorzbxd + heavydnhorzbxd.glif + heavydnleftbxd + heavydnleftbxd.glif + heavydnrightbxd + heavydnrightbxd.glif + heavyhorzbxd + heavyhorzbxd.glif + heavyleftbxd + heavyleftbxd.glif + heavyleftlightrightbxd + heavyleftlightrightbxd.glif + heavyquaddashhorzbxd + heavyquaddashhorzbxd.glif + heavyquaddashvertbxd + heavyquaddashvertbxd.glif + heavyrightbxd + heavyrightbxd.glif + heavytrpldashhorzbxd + heavytrpldashhorzbxd.glif + heavytrpldashvertbxd + heavytrpldashvertbxd.glif + heavyupbxd + heavyupbxd.glif + heavyuphorzbxd + heavyuphorzbxd.glif + heavyupleftbxd + heavyupleftbxd.glif + heavyuplightdnbxd + heavyuplightdnbxd.glif + heavyuprightbxd + heavyuprightbxd.glif + heavyvertbxd + heavyvertbxd.glif + heavyverthorzbxd + heavyverthorzbxd.glif + heavyvertleftbxd + heavyvertleftbxd.glif + heavyvertrightbxd + heavyvertrightbxd.glif hlinebelow hlinebelow.glif hookcmb @@ -840,6 +1142,54 @@ hungarumlautcmb.cap.glif hyphen hyphen.glif + hyphen.end + hyphen.end.glif + hyphen.middle + hyphen.middle.glif + hyphen.start + hyphen.start.glif + hyphen_asciitilde.liga + hyphen_asciitilde.liga.glif + hyphen_bar.end + hyphen_bar.end.glif + hyphen_bar.liga + hyphen_bar.liga.glif + hyphen_bar_bar.end + hyphen_bar_bar.end.glif + hyphen_bar_bar.liga + hyphen_bar_bar.liga.glif + hyphen_bar_bar_hyphen.middle + hyphen_bar_bar_hyphen.middle.glif + hyphen_bar_hyphen.middle + hyphen_bar_hyphen.middle.glif + hyphen_greater.end + hyphen_greater.end.glif + hyphen_greater.liga + hyphen_greater.liga.glif + hyphen_greater_greater.end + hyphen_greater_greater.end.glif + hyphen_greater_greater.liga + hyphen_greater_greater.liga.glif + hyphen_greater_greater_hyphen.m + hyphen_greater_greater_hyphen.m.glif + hyphen_greater_hyphen.middle + hyphen_greater_hyphen.middle.glif + hyphen_hyphen.liga + hyphen_hyphen.liga.glif + hyphen_hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga.glif + hyphen_less.end + hyphen_less.end.glif + hyphen_less.liga + hyphen_less.liga.glif + hyphen_less_hyphen.middle + hyphen_less_hyphen.middle.glif + hyphen_less_less.end + hyphen_less_less.end.glif + hyphen_less_less.liga + hyphen_less_less.liga.glif + hyphen_less_less_hyphen.middle + hyphen_less_less_hyphen.middle.glif i i.glif iacute @@ -894,10 +1244,170 @@ lcommaaccent.glif ldotbelow ldotbelow.glif + leftdnheavyrightuplightbxd + leftdnheavyrightuplightbxd.glif + lefteighthblock + lefteighthblock.glif + leftfiveeighthsblock + leftfiveeighthsblock.glif + lefthalfblock + lefthalfblock.glif + leftheavyrightdnlightbxd + leftheavyrightdnlightbxd.glif + leftheavyrightuplightbxd + leftheavyrightuplightbxd.glif + leftheavyrightvertlightbxd + leftheavyrightvertlightbxd.glif + leftlightrightdnheavybxd + leftlightrightdnheavybxd.glif + leftlightrightupheavybxd + leftlightrightupheavybxd.glif + leftlightrightvertheavybxd + leftlightrightvertheavybxd.glif + leftquarterblock + leftquarterblock.glif + leftseveneighthsblock + leftseveneighthsblock.glif + leftthreeeighthsblock + leftthreeeighthsblock.glif + leftthreequartersblock + leftthreequartersblock.glif + leftupheavyrightdnlightbxd + leftupheavyrightdnlightbxd.glif less less.glif + less_asciitilde.liga + less_asciitilde.liga.glif + less_asciitilde_asciitilde.liga + less_asciitilde_asciitilde.liga.glif + less_asciitilde_greater.liga + less_asciitilde_greater.liga.glif + less_asterisk.liga + less_asterisk.liga.glif + less_asterisk_greater.liga + less_asterisk_greater.liga.glif + less_bar.liga + less_bar.liga.glif + less_bar_bar.liga + less_bar_bar.liga.glif + less_bar_bar_bar.liga + less_bar_bar_bar.liga.glif + less_bar_greater.liga + less_bar_greater.liga.glif + less_colon.liga + less_colon.liga.glif + less_dollar.liga + less_dollar.liga.glif + less_dollar_greater.liga + less_dollar_greater.liga.glif + less_equal + less_equal.glif + less_equal.liga + less_equal.liga.glif + less_equal.start + less_equal.start.glif + less_equal_greater.liga + less_equal_greater.liga.glif + less_equal_less.liga + less_equal_less.liga.glif + less_exclam_hyphen_hyphen.liga + less_exclam_hyphen_hyphen.liga.glif + less_greater.liga + less_greater.liga.glif + less_hyphen.liga + less_hyphen.liga.glif + less_hyphen.start + less_hyphen.start.glif + less_hyphen_greater.liga + less_hyphen_greater.liga.glif + less_hyphen_less.liga + less_hyphen_less.liga.glif + less_less.liga + less_less.liga.glif + less_less_equal.liga + less_less_equal.liga.glif + less_less_equal.start + less_less_equal.start.glif + less_less_hyphen.liga + less_less_hyphen.liga.glif + less_less_hyphen.start + less_less_hyphen.start.glif + less_less_less.liga + less_less_less.liga.glif + less_plus.liga + less_plus.liga.glif + less_plus_greater.liga + less_plus_greater.liga.glif + less_slash.liga + less_slash.liga.glif + less_slash_greater.liga + less_slash_greater.liga.glif lessequal lessequal.glif + lightarcdnleftbxd + lightarcdnleftbxd.glif + lightarcdnrightbxd + lightarcdnrightbxd.glif + lightarcupleftbxd + lightarcupleftbxd.glif + lightarcuprightbxd + lightarcuprightbxd.glif + lightdbldashhorzbxd + lightdbldashhorzbxd.glif + lightdbldashvertbxd + lightdbldashvertbxd.glif + lightdiagcrossbxd + lightdiagcrossbxd.glif + lightdiagupleftdnrightbxd + lightdiagupleftdnrightbxd.glif + lightdiaguprightdnleftbxd + lightdiaguprightdnleftbxd.glif + lightdnbxd + lightdnbxd.glif + lightdnhorzbxd + lightdnhorzbxd.glif + lightdnleftbxd + lightdnleftbxd.glif + lightdnrightbxd + lightdnrightbxd.glif + lighthorzbxd + lighthorzbxd.glif + lightleftbxd + lightleftbxd.glif + lightleftheavyrightbxd + lightleftheavyrightbxd.glif + lightquaddashhorzbxd + lightquaddashhorzbxd.glif + lightquaddashvertbxd + lightquaddashvertbxd.glif + lightrightbxd + lightrightbxd.glif + lightshade + lightshade.glif + lighttrpldashhorzbxd + lighttrpldashhorzbxd.glif + lighttrpldashvertbxd + lighttrpldashvertbxd.glif + lightupbxd + lightupbxd.glif + lightupheavydnbxd + lightupheavydnbxd.glif + lightuphorzbxd + lightuphorzbxd.glif + lightupleftbxd + lightupleftbxd.glif + lightuprightbxd + lightuprightbxd.glif + lightvertbxd + lightvertbxd.glif + lightverthorzbxd + lightverthorzbxd.glif + lightvertleftbxd + lightvertleftbxd.glif + lightvertrightbxd + lightvertrightbxd.glif + ligspacer + ligspacer.glif llinebelow llinebelow.glif lmacrondotbelow @@ -922,6 +1432,8 @@ mdotaccent.glif mdotbelow mdotbelow.glif + mediumshade + mediumshade.glif middotcat middotcat.glif middotcat.cap @@ -968,6 +1480,30 @@ ntilde.glif numbersign numbersign.glif + numbersign.end + numbersign.end.glif + numbersign.middle + numbersign.middle.glif + numbersign.start + numbersign.start.glif + numbersign_braceleft.liga + numbersign_braceleft.liga.glif + numbersign_bracketleft.liga + numbersign_bracketleft.liga.glif + numbersign_colon.liga + numbersign_colon.liga.glif + numbersign_equal.liga + numbersign_equal.liga.glif + numbersign_exclam.liga + numbersign_exclam.liga.glif + numbersign_parenleft.liga + numbersign_parenleft.liga.glif + numbersign_question.liga + numbersign_question.liga.glif + numbersign_underscore.liga + numbersign_underscore.liga.glif + numbersign_underscore_parenleft + numbersign_underscore_parenleft.glif o o.glif oacute @@ -1062,14 +1598,36 @@ parenright.glif percent percent.glif + percent_percent.liga + percent_percent.liga.glif period period.glif + period_equal.liga + period_equal.liga.glif + period_hyphen.liga + period_hyphen.liga.glif + period_period.liga + period_period.liga.glif + period_period_equal.liga + period_period_equal.liga.glif + period_period_less.liga + period_period_less.liga.glif + period_period_period.liga + period_period_period.liga.glif + period_question.liga + period_question.liga.glif periodcentered periodcentered.glif peso peso.glif plus plus.glif + plus_greater.liga + plus_greater.liga.glif + plus_plus.liga + plus_plus.liga.glif + plus_plus_plus.liga + plus_plus_plus.liga.glif plusminus plusminus.glif primemod @@ -1080,6 +1638,14 @@ q.glif question question.glif + question_colon.liga + question_colon.liga.glif + question_equal.liga + question_equal.liga.glif + question_period.liga + question_period.liga.glif + question_question.liga + question_question.liga.glif questiondown questiondown.glif quotedbl @@ -1112,6 +1678,26 @@ rdotbelow.glif registered registered.glif + rightdnheavyleftuplightbxd + rightdnheavyleftuplightbxd.glif + righteighthblock + righteighthblock.glif + righthalfblock + righthalfblock.glif + rightheavyleftdnlightbxd + rightheavyleftdnlightbxd.glif + rightheavyleftuplightbxd + rightheavyleftuplightbxd.glif + rightheavyleftvertlightbxd + rightheavyleftvertlightbxd.glif + rightlightleftdnheavybxd + rightlightleftdnheavybxd.glif + rightlightleftupheavybxd + rightlightleftupheavybxd.glif + rightlightleftvertheavybxd + rightlightleftvertheavybxd.glif + rightupheavyleftdnlightbxd + rightupheavyleftdnlightbxd.glif ring ring.glif ringcmb @@ -1146,6 +1732,8 @@ section.glif semicolon semicolon.glif + semicolon_semicolon.liga + semicolon_semicolon.liga.glif servicemark servicemark.glif seven @@ -1172,6 +1760,24 @@ six.sup.glif slash slash.glif + slash_asterisk.liga + slash_asterisk.liga.glif + slash_backslash.liga + slash_backslash.liga.glif + slash_equal.liga + slash_equal.liga.glif + slash_equal.start + slash_equal.start.glif + slash_greater.liga + slash_greater.liga.glif + slash_slash.liga + slash_slash.liga.glif + slash_slash_equal.liga + slash_slash_equal.liga.glif + slash_slash_equal.start + slash_slash_equal.start.glif + slash_slash_slash.liga + slash_slash_slash.liga.glif space space.glif sterling @@ -1278,6 +1884,14 @@ umacron.glif underscore underscore.glif + underscore.end + underscore.end.glif + underscore.middle + underscore.middle.glif + underscore.start + underscore.start.glif + underscore_bar_underscore.m + underscore_bar_underscore.m.glif uni00A0 uni00A_0.glif uni0326 @@ -1292,10 +1906,88 @@ uni20B_A_.glif uni20BD uni20B_D_.glif + uni2610 + uni2610.glif + uni2611 + uni2611.glif + uni2612 + uni2612.glif + uni2713 + uni2713.glif uniA788 uniA_788.glif + uniE0A0 + uniE_0A_0.glif + uniE0A1 + uniE_0A_1.glif + uniE0A2 + uniE_0A_2.glif + uniE0B0 + uniE_0B_0.glif + uniE0B1 + uniE_0B_1.glif + uniE0B2 + uniE_0B_2.glif + uniE0B3 + uniE_0B_3.glif uogonek uogonek.glif + updblhorzsngbxd + updblhorzsngbxd.glif + updblleftsngbxd + updblleftsngbxd.glif + updblrightsngbxd + updblrightsngbxd.glif + upeighthblock + upeighthblock.glif + uphalfblock + uphalfblock.glif + upheavydnhorzlightbxd + upheavydnhorzlightbxd.glif + upheavyhorzlightbxd + upheavyhorzlightbxd.glif + upheavyleftdnlightbxd + upheavyleftdnlightbxd.glif + upheavyleftlightbxd + upheavyleftlightbxd.glif + upheavyrightdnlightbxd + upheavyrightdnlightbxd.glif + upheavyrightlightbxd + upheavyrightlightbxd.glif + upleftdnleftdnrightquadrant + upleftdnleftdnrightquadrant.glif + upleftdnrightquadrant + upleftdnrightquadrant.glif + upleftquadrant + upleftquadrant.glif + upleftuprightdnleftquadrant + upleftuprightdnleftquadrant.glif + upleftuprightdnrightquadrant + upleftuprightdnrightquadrant.glif + uplightdnhorzheavybxd + uplightdnhorzheavybxd.glif + uplighthorzheavybxd + uplighthorzheavybxd.glif + uplightleftdnheavybxd + uplightleftdnheavybxd.glif + uplightleftheavybxd + uplightleftheavybxd.glif + uplightrightdnheavybxd + uplightrightdnheavybxd.glif + uplightrightheavybxd + uplightrightheavybxd.glif + uprightdnleftdnrightquadrant + uprightdnleftdnrightquadrant.glif + uprightdnleftquadrant + uprightdnleftquadrant.glif + uprightquadrant + uprightquadrant.glif + upsnghorzdblbxd + upsnghorzdblbxd.glif + upsngleftdblbxd + upsngleftdblbxd.glif + upsngrightdblbxd + upsngrightdblbxd.glif uring uring.glif utilde @@ -1304,12 +1996,38 @@ v.glif vdotbelow vdotbelow.glif + vertdblhorzsngbxd + vertdblhorzsngbxd.glif + vertdblleftsngbxd + vertdblleftsngbxd.glif + vertdblrightsngbxd + vertdblrightsngbxd.glif + vertheavyhorzlightbxd + vertheavyhorzlightbxd.glif + vertheavyleftlightbxd + vertheavyleftlightbxd.glif + vertheavyrightlightbxd + vertheavyrightlightbxd.glif verticallinelowmod verticallinelowmod.glif verticallinemod verticallinemod.glif + vertlighthorzheavybxd + vertlighthorzheavybxd.glif + vertlightleftheavybxd + vertlightleftheavybxd.glif + vertlightrightheavybxd + vertlightrightheavybxd.glif + vertsnghorzdblbxd + vertsnghorzdblbxd.glif + vertsngleftdblbxd + vertsngleftdblbxd.glif + vertsngrightdblbxd + vertsngrightdblbxd.glif w w.glif + w_w_w.liga + w_w_w.liga.glif wacute wacute.glif wcircumflex diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/darkshade.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/darkshade.glif new file mode 100644 index 00000000..fd2eb1c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/darkshade.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dbldnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dbldnhorzbxd.glif new file mode 100644 index 00000000..8e439dc4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dbldnhorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dbldnleftbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dbldnleftbxd.glif new file mode 100644 index 00000000..81a04790 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dbldnleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dbldnrightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dbldnrightbxd.glif new file mode 100644 index 00000000..12877ab1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dbldnrightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dblhorzbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dblhorzbxd.glif new file mode 100644 index 00000000..96dbd777 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dblhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dbluphorzbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dbluphorzbxd.glif new file mode 100644 index 00000000..5b34424e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dbluphorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dblupleftbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dblupleftbxd.glif new file mode 100644 index 00000000..f12b94ab --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dblupleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dbluprightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dbluprightbxd.glif new file mode 100644 index 00000000..d33920d9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dbluprightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dblvertbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dblvertbxd.glif new file mode 100644 index 00000000..39e7f5a6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dblvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dblverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dblverthorzbxd.glif new file mode 100644 index 00000000..c8d9c60a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dblverthorzbxd.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dblvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dblvertleftbxd.glif new file mode 100644 index 00000000..048993fc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dblvertleftbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dblvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dblvertrightbxd.glif new file mode 100644 index 00000000..53abe6ed --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dblvertrightbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dcaron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dcaron.glif index 4526890a..40280ed1 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dcaron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dcircumflexbelow.glif index 07e462a3..c3c274d1 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dcircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dcircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dcroat.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dcroat.glif index a35e6a5c..c91710e4 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dcroat.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dcroat.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ddotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ddotbelow.glif index 0aed4f1d..ca0d7f79 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ddotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ddotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresisacute.cap.glif index 6d6b361e..eccc0770 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresisacute.cap.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresisacute.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresisacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresisacute.glif index fc1d00a8..bbb33f38 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresisacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresisacute.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresisbelowcmb.glif index 2bdd2472..5c42c87b 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresisbelowcmb.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresisbelowcmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresiscaron.cap.glif index 11b4fe20..b48ef54d 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresiscaron.cap.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresiscaron.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresiscaron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresiscaron.glif index ed9b7363..a1c36949 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresiscaron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresiscaron.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresisgrave.cap.glif index 0da69230..ef99523f 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresisgrave.cap.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresisgrave.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresisgrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresisgrave.glif index 72b36452..6cd572aa 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresisgrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresisgrave.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresismacron.cap.glif index 59f49a5d..5e919542 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresismacron.cap.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresismacron.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresismacron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresismacron.glif index be9e88bc..2671f1dc 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresismacron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dieresismacron.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dlinebelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dlinebelow.glif index 33a76734..faaf1771 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dndblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dndblhorzsngbxd.glif new file mode 100644 index 00000000..cc8ee037 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dndblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dndblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dndblleftsngbxd.glif new file mode 100644 index 00000000..42ea31d3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dndblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dndblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dndblrightsngbxd.glif new file mode 100644 index 00000000..b0ce7021 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dndblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dneighthblock.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dneighthblock.glif new file mode 100644 index 00000000..ff791c74 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dneighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnfiveeighthsblock.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnfiveeighthsblock.glif new file mode 100644 index 00000000..99bd1498 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnhalfblock.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnhalfblock.glif new file mode 100644 index 00000000..001cf3fb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnhalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyhorzlightbxd.glif new file mode 100644 index 00000000..0cdf2eb2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyleftlightbxd.glif new file mode 100644 index 00000000..add1aaa2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyleftuplightbxd.glif new file mode 100644 index 00000000..5c6495d1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyrightlightbxd.glif new file mode 100644 index 00000000..b5711788 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyrightuplightbxd.glif new file mode 100644 index 00000000..ae5d37fe --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyuphorzlightbxd.glif new file mode 100644 index 00000000..1f77795d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyuphorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnleftquadrant.glif new file mode 100644 index 00000000..42729338 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnlighthorzheavybxd.glif new file mode 100644 index 00000000..dbd3427a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnlighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnlightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnlightleftheavybxd.glif new file mode 100644 index 00000000..6b2cc4f9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnlightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnlightleftupheavybxd.glif new file mode 100644 index 00000000..61324c8d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnlightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnlightrightheavybxd.glif new file mode 100644 index 00000000..c0b416bc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnlightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnlightrightupheavybxd.glif new file mode 100644 index 00000000..b58f5dfe --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnlightuphorzheavybxd.glif new file mode 100644 index 00000000..5177720e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnlightuphorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnquarterblock.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnquarterblock.glif new file mode 100644 index 00000000..c2180b50 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnrightquadrant.glif new file mode 100644 index 00000000..9858382e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnrightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnseveneighthsblock.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnseveneighthsblock.glif new file mode 100644 index 00000000..ecdac3da --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnsnghorzdblbxd.glif new file mode 100644 index 00000000..4c6f5b64 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnsngleftdblbxd.glif new file mode 100644 index 00000000..736aa602 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnsngrightdblbxd.glif new file mode 100644 index 00000000..42dc98e9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnthreeeighthsblock.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnthreeeighthsblock.glif new file mode 100644 index 00000000..7febe2aa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnthreequartersblock.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnthreequartersblock.glif new file mode 100644 index 00000000..a79dae14 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dnthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dollar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dollar_greater.liga.glif new file mode 100644 index 00000000..7b8c5d3d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dollar_greater.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dotlessi.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dotlessi.glif index 6f6bb9e9..fd374590 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dotlessi.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dotlessi.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dotlessj.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dotlessj.glif index 5205669f..3ff95eb6 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dotlessj.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/dotlessj.glif @@ -2,7 +2,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/eacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/eacute.glif index 05052d4f..399df89f 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/eacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/eacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ebreve.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ebreve.glif index 401a167c..18c2ad77 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ebreve.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ebreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecaron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecaron.glif index 146346b7..26eb285c 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecaron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflex.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflex.glif index 06ad3103..19cfbb73 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexacute.glif index 736ee56d..a4b7ad44 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexdotbelow.glif index aaad63a2..c5e0d1e9 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexgrave.glif index 1a6553e7..7be696a0 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexhookabove.glif index d58ce8bf..278f01b4 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflextilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflextilde.glif index fdb44eda..b19ca7d2 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/edieresis.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/edieresis.glif index 7f72c7e6..48a77fa0 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/edieresis.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/edieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/edotaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/edotaccent.glif index bd7c0915..9f5a28c1 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/edotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/edotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/edotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/edotbelow.glif index 8bbce867..9066127f 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/edotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/edotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/egrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/egrave.glif index 325d1a80..d1f3f1ca 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/egrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/egrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ehookabove.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ehookabove.glif index 09b25c91..5bd60e3f 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ehookabove.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ehookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/eight.num.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/eight.num.glif index 34029129..cc1ad559 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/eight.num.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/eight.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/emacron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/emacron.glif index 4349a61b..85931f32 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/emacron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/emacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/eogonek.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/eogonek.glif index e476b0db..af9f5b1e 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/eogonek.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/eogonek.glif @@ -2,8 +2,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal.end.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal.end.glif new file mode 100644 index 00000000..6c1e9367 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal.middle.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal.middle.glif new file mode 100644 index 00000000..88acdbdd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal.start.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal.start.glif new file mode 100644 index 00000000..2475404e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_asciitilde.liga.glif new file mode 100644 index 00000000..97f17668 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_asciitilde.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar.end.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar.end.glif new file mode 100644 index 00000000..53a2e265 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar.liga.glif new file mode 100644 index 00000000..a397ae15 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_bar.end.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_bar.end.glif new file mode 100644 index 00000000..435990f3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_bar.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_bar.liga.glif new file mode 100644 index 00000000..e3f9daea --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_bar.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_bar_equal.middle.glif new file mode 100644 index 00000000..cfb760a7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_bar_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_equal.middle.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_equal.middle.glif new file mode 100644 index 00000000..1de8c6c8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_equal.middle.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_colon_equal.middle.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_colon_equal.middle.glif new file mode 100644 index 00000000..5e80bda7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_colon_equal.middle.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_equal.liga.glif new file mode 100644 index 00000000..72bd3071 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_equal.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_equal_equal.liga.glif new file mode 100644 index 00000000..2e62095a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_equal_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_exclam_equal.middle.glif new file mode 100644 index 00000000..1b32e8f1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_exclam_equal.middle.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater.end.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater.end.glif new file mode 100644 index 00000000..d24ab91d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater.end.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater.liga.glif new file mode 100644 index 00000000..40449447 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_equal.middle.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_equal.middle.glif new file mode 100644 index 00000000..96b4bc8a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_greater.end.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_greater.end.glif new file mode 100644 index 00000000..fcbc32d1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_greater.end.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_greater.liga.glif new file mode 100644 index 00000000..5a6b6515 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_greater_equal.m.glif new file mode 100644 index 00000000..6bbc0aa6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_greater_equal.m.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_less.end.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_less.end.glif new file mode 100644 index 00000000..3d4cc8fa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_less.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_less.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_less.liga.glif new file mode 100644 index 00000000..97b6b6ad --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_less.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_equal.middle.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_equal.middle.glif new file mode 100644 index 00000000..6dfe7ced --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_less.end.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_less.end.glif new file mode 100644 index 00000000..94432a1d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_less.end.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_less.liga.glif new file mode 100644 index 00000000..e2d74bba --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_less.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_less_equal.middle.glif new file mode 100644 index 00000000..351fe4aa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_less_equal.middle.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash.end.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash.end.glif new file mode 100644 index 00000000..0b346437 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash.liga.glif new file mode 100644 index 00000000..a973cc50 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_equal.middle.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_equal.middle.glif new file mode 100644 index 00000000..c2fa5c3a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_equal.middle.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_slash.end.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_slash.end.glif new file mode 100644 index 00000000..70408a5c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_slash.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_slash.liga.glif new file mode 100644 index 00000000..a1d38020 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_slash.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_slash_equal.middle.glif new file mode 100644 index 00000000..82ff8e8c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_slash_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/etilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/etilde.glif index 7eced16d..4270e672 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/etilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/etilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/exclam_asciitilde.liga.glif new file mode 100644 index 00000000..60b59423 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/exclam_asciitilde.liga.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/exclam_equal.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/exclam_equal.liga.glif new file mode 100644 index 00000000..e4fddea8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/exclam_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/exclam_equal_equal.liga.glif new file mode 100644 index 00000000..22bcfe17 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/exclam_equal_equal.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/exclam_exclam.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/exclam_exclam.liga.glif new file mode 100644 index 00000000..92766d8a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/exclam_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/exclam_exclam_period.liga.glif new file mode 100644 index 00000000..aaa387b3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/exclam_exclam_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/five.num.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/five.num.glif index 101e444c..c299993d 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/five.num.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/five.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/four.num.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/four.num.glif index 21b51dd4..e02b8324 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/four.num.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/four.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/fullblock.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/fullblock.glif new file mode 100644 index 00000000..2c547d1b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/fullblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gbreve.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gbreve.glif index bad90300..f0a4f6ab 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gbreve.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gbreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gcaron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gcaron.glif index 3f4e4e39..e21608fe 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gcaron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gcircumflex.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gcircumflex.glif index ab305581..889d9172 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gcommaaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gcommaaccent.glif index 979433e4..1045155b 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gdotaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gdotaccent.glif index 0f88b409..d6e4ba01 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gmacron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gmacron.glif index 941cf635..27d8af3e 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gmacron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gmacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gravecmb.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gravecmb.glif index c64fa7da..0d652b87 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gravecmb.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/gravecmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_colon.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_colon.liga.glif new file mode 100644 index 00000000..f9e406db --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal.glif new file mode 100644 index 00000000..cb2805b9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal.liga.glif new file mode 100644 index 00000000..da3a76ff --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal.start.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal.start.glif new file mode 100644 index 00000000..e1cf298a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal_greater.liga.glif new file mode 100644 index 00000000..5667a410 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater.liga.glif new file mode 100644 index 00000000..b9a70b76 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_equal.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_equal.liga.glif new file mode 100644 index 00000000..1409f505 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_equal.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_equal.start.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_equal.start.glif new file mode 100644 index 00000000..b6e68c5a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_equal.start.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_greater.liga.glif new file mode 100644 index 00000000..b8a795e4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_hyphen.liga.glif new file mode 100644 index 00000000..4b6937b1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_hyphen.start.glif new file mode 100644 index 00000000..be72f145 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_hyphen.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_hyphen.liga.glif new file mode 100644 index 00000000..8a540522 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_hyphen.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_hyphen.start.glif new file mode 100644 index 00000000..f772a574 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_hyphen.start.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_hyphen_greater.liga.glif new file mode 100644 index 00000000..e23222c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/greater_hyphen_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hbrevebelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hbrevebelow.glif index 1f3ea9fe..ec5c3dd9 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hbrevebelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hbrevebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hcircumflex.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hcircumflex.glif index 6c3abaca..a55d26b0 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hdotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hdotbelow.glif index 4ad6ebe3..f0c4f546 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavydbldashhorzbxd.glif new file mode 100644 index 00000000..51ffc677 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavydbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavydbldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavydbldashvertbxd.glif new file mode 100644 index 00000000..c015368d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavydbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavydnbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavydnbxd.glif new file mode 100644 index 00000000..14d564cc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavydnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavydnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavydnhorzbxd.glif new file mode 100644 index 00000000..ed4690bb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavydnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavydnleftbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavydnleftbxd.glif new file mode 100644 index 00000000..97ba7549 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavydnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavydnrightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavydnrightbxd.glif new file mode 100644 index 00000000..72a954ef --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavydnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyhorzbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyhorzbxd.glif new file mode 100644 index 00000000..66f97ab1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyhorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyleftbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyleftbxd.glif new file mode 100644 index 00000000..a74c76a4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyleftlightrightbxd.glif new file mode 100644 index 00000000..5e441e0d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyleftlightrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyquaddashhorzbxd.glif new file mode 100644 index 00000000..d3536bc3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyquaddashvertbxd.glif new file mode 100644 index 00000000..57194b7e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyrightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyrightbxd.glif new file mode 100644 index 00000000..9fa7054e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavytrpldashhorzbxd.glif new file mode 100644 index 00000000..39afb3b5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavytrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavytrpldashvertbxd.glif new file mode 100644 index 00000000..aaa19cc2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavytrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyupbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyupbxd.glif new file mode 100644 index 00000000..052f86e1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyuphorzbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyuphorzbxd.glif new file mode 100644 index 00000000..76da3fd6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyupleftbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyupleftbxd.glif new file mode 100644 index 00000000..e65f07b7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyuplightdnbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyuplightdnbxd.glif new file mode 100644 index 00000000..db0941e5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyuplightdnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyuprightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyuprightbxd.glif new file mode 100644 index 00000000..429c5a57 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyvertbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyvertbxd.glif new file mode 100644 index 00000000..214447ea --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyverthorzbxd.glif new file mode 100644 index 00000000..21b2ebbc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyvertleftbxd.glif new file mode 100644 index 00000000..40b8f020 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyvertrightbxd.glif new file mode 100644 index 00000000..4c9f8c02 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/heavyvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hlinebelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hlinebelow.glif index 87ae5b23..a5b4541c 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hookcmb.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hookcmb.glif index 7da2bc6e..9d929583 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hookcmb.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hookcmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/horizontalbar.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/horizontalbar.glif index 2c2b288d..ef4b3086 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/horizontalbar.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/horizontalbar.glif @@ -5,10 +5,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen.end.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen.end.glif new file mode 100644 index 00000000..3cbb2f98 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen.middle.glif new file mode 100644 index 00000000..70bc3a53 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen.start.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen.start.glif new file mode 100644 index 00000000..7d9718c2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_asciitilde.liga.glif new file mode 100644 index 00000000..d97a1756 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_asciitilde.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar.end.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar.end.glif new file mode 100644 index 00000000..e4a7adf2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar.end.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar.liga.glif new file mode 100644 index 00000000..4f20e146 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_bar.end.glif new file mode 100644 index 00000000..65e022d2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_bar.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_bar.liga.glif new file mode 100644 index 00000000..e562b8fe --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif new file mode 100644 index 00000000..2cdfe07e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_hyphen.middle.glif new file mode 100644 index 00000000..73fc6c41 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater.end.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater.end.glif new file mode 100644 index 00000000..3df9d127 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater.liga.glif new file mode 100644 index 00000000..4a6f0921 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_greater.end.glif new file mode 100644 index 00000000..59ea146a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_greater.end.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_greater.liga.glif new file mode 100644 index 00000000..b9dd9cf9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif new file mode 100644 index 00000000..62255bb6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_hyphen.middle.glif new file mode 100644 index 00000000..5bb700f2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_hyphen.liga.glif new file mode 100644 index 00000000..4c49ab56 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_hyphen.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..52fb755c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less.end.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less.end.glif new file mode 100644 index 00000000..3ac44f84 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less.end.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less.liga.glif new file mode 100644 index 00000000..c3ef6815 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_hyphen.middle.glif new file mode 100644 index 00000000..2259d924 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_less.end.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_less.end.glif new file mode 100644 index 00000000..b5f0282b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_less.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_less.liga.glif new file mode 100644 index 00000000..96bb4387 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_less.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif new file mode 100644 index 00000000..5f8f1c08 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/iacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/iacute.glif index f049f558..c6404f4f 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/iacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/iacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ibreve.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ibreve.glif index 9c693b88..3cb08ec7 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ibreve.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ibreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/icaron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/icaron.glif index 948731b9..c542d44e 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/icaron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/icaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/icircumflex.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/icircumflex.glif index 859a35f0..73412f9e 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/icircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/icircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/idieresis.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/idieresis.glif index 8281b1dd..6232ac85 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/idieresis.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/idieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/idotaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/idotaccent.glif index c048690c..804aa416 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/idotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/idotaccent.glif @@ -5,10 +5,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/idotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/idotbelow.glif index d9bad1b4..82567491 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/idotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/idotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/igrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/igrave.glif index b4e988dc..853633ae 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/igrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/igrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ihookabove.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ihookabove.glif index c670a065..178bf8f5 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ihookabove.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ihookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/imacron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/imacron.glif index e443a1c0..a832e9a0 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/imacron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/imacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/itilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/itilde.glif index 9fe5b9d6..f1dc4cbc 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/itilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/itilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/jcaron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/jcaron.glif index c9d42f22..952c55e8 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/jcaron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/jcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/jcircumflex.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/jcircumflex.glif index 1c99df55..fede4524 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/jcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/jcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/kcommaaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/kcommaaccent.glif index 9ad1da6d..c08932c5 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/kcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/kcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/kdotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/kdotbelow.glif index 8f243e7e..72fc259e 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/kdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/kdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/klinebelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/klinebelow.glif index 0f1d5811..56ff055f 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/klinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/klinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/l.dot.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/l.dot.glif index 2b9e0846..5661d36f 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/l.dot.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/l.dot.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lacute.glif index 76ef60f2..92024913 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lcaron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lcaron.glif index fd3fd4a1..57bf89ff 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lcaron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lcircumflexbelow.glif index 32d67584..ca1b0393 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lcircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lcircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lcommaaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lcommaaccent.glif index 4bb490d9..5ee9cc30 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ldotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ldotbelow.glif index 26e5f37b..8c27d7a8 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ldotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ldotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftdnheavyrightuplightbxd.glif new file mode 100644 index 00000000..49e593c4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftdnheavyrightuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lefteighthblock.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lefteighthblock.glif new file mode 100644 index 00000000..8d44dad4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lefteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftfiveeighthsblock.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftfiveeighthsblock.glif new file mode 100644 index 00000000..0eb9ccfc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lefthalfblock.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lefthalfblock.glif new file mode 100644 index 00000000..325c05f6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lefthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftheavyrightdnlightbxd.glif new file mode 100644 index 00000000..ca402460 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftheavyrightuplightbxd.glif new file mode 100644 index 00000000..5ec86bc9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftheavyrightvertlightbxd.glif new file mode 100644 index 00000000..8f6b4053 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftheavyrightvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftlightrightdnheavybxd.glif new file mode 100644 index 00000000..a4166aa5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftlightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftlightrightupheavybxd.glif new file mode 100644 index 00000000..e353acb6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftlightrightvertheavybxd.glif new file mode 100644 index 00000000..dc6c91cd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftlightrightvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftquarterblock.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftquarterblock.glif new file mode 100644 index 00000000..036dad83 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftseveneighthsblock.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftseveneighthsblock.glif new file mode 100644 index 00000000..74b69747 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftthreeeighthsblock.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftthreeeighthsblock.glif new file mode 100644 index 00000000..e5c4283a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftthreequartersblock.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftthreequartersblock.glif new file mode 100644 index 00000000..5ae5b2e3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftupheavyrightdnlightbxd.glif new file mode 100644 index 00000000..a3c7188d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/leftupheavyrightdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_asciitilde.liga.glif new file mode 100644 index 00000000..bea049f4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_asciitilde.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..143b0d94 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_asciitilde_greater.liga.glif new file mode 100644 index 00000000..61e6924f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_asciitilde_greater.liga.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_asterisk.liga.glif new file mode 100644 index 00000000..83916b1c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_asterisk_greater.liga.glif new file mode 100644 index 00000000..f7d8ac5f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_asterisk_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_bar.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_bar.liga.glif new file mode 100644 index 00000000..cc8a1323 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_bar.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_bar_bar.liga.glif new file mode 100644 index 00000000..623cfc8f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_bar_bar.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_bar_bar_bar.liga.glif new file mode 100644 index 00000000..a6996f1d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_bar_bar_bar.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_bar_greater.liga.glif new file mode 100644 index 00000000..257f5156 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_bar_greater.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_colon.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_colon.liga.glif new file mode 100644 index 00000000..90f2c3ae --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_dollar.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_dollar.liga.glif new file mode 100644 index 00000000..db5f214c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_dollar.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_dollar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_dollar_greater.liga.glif new file mode 100644 index 00000000..e5fd82d0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_dollar_greater.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_equal.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_equal.glif new file mode 100644 index 00000000..8ceeae9e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_equal.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_equal.liga.glif new file mode 100644 index 00000000..6fbce0b2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_equal.start.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_equal.start.glif new file mode 100644 index 00000000..0c348eb1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_equal.start.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_equal_greater.liga.glif new file mode 100644 index 00000000..64e34103 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_equal_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_equal_less.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_equal_less.liga.glif new file mode 100644 index 00000000..feecad25 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_equal_less.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..e2f4f4e6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_greater.liga.glif new file mode 100644 index 00000000..b9ee89bb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_greater.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen.liga.glif new file mode 100644 index 00000000..e6605161 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen.start.glif new file mode 100644 index 00000000..2fbda957 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen_greater.liga.glif new file mode 100644 index 00000000..cd21fc28 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen_greater.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen_less.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen_less.liga.glif new file mode 100644 index 00000000..90e565af --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen_less.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_less.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_less.liga.glif new file mode 100644 index 00000000..92af21ce --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_less.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_less_equal.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_less_equal.liga.glif new file mode 100644 index 00000000..51aebc35 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_less_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_less_equal.start.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_less_equal.start.glif new file mode 100644 index 00000000..9a964cea --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_less_equal.start.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_less_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_less_hyphen.liga.glif new file mode 100644 index 00000000..c2c39fcb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_less_hyphen.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_less_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_less_hyphen.start.glif new file mode 100644 index 00000000..87f7d922 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_less_hyphen.start.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_less_less.liga.glif new file mode 100644 index 00000000..a70371be --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_less_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_plus.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_plus.liga.glif new file mode 100644 index 00000000..99f638f0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_plus.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_plus_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_plus_greater.liga.glif new file mode 100644 index 00000000..9bdafccf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_plus_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_slash.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_slash.liga.glif new file mode 100644 index 00000000..34ef0aeb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_slash.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_slash_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_slash_greater.liga.glif new file mode 100644 index 00000000..ac61fecf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/less_slash_greater.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightarcdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightarcdnleftbxd.glif new file mode 100644 index 00000000..50eb72d0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightarcdnleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightarcdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightarcdnrightbxd.glif new file mode 100644 index 00000000..0638b179 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightarcdnrightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightarcupleftbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightarcupleftbxd.glif new file mode 100644 index 00000000..67a044a2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightarcupleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightarcuprightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightarcuprightbxd.glif new file mode 100644 index 00000000..0557b83b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightarcuprightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdbldashhorzbxd.glif new file mode 100644 index 00000000..e067c302 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdbldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdbldashvertbxd.glif new file mode 100644 index 00000000..5e1b0314 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdiagcrossbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdiagcrossbxd.glif new file mode 100644 index 00000000..ee8a26c7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdiagcrossbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdiagupleftdnrightbxd.glif new file mode 100644 index 00000000..99e06660 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdiagupleftdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdiaguprightdnleftbxd.glif new file mode 100644 index 00000000..6cd005b1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdiaguprightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdnbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdnbxd.glif new file mode 100644 index 00000000..47bc9e98 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdnhorzbxd.glif new file mode 100644 index 00000000..5d91e147 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdnleftbxd.glif new file mode 100644 index 00000000..d3017c10 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdnrightbxd.glif new file mode 100644 index 00000000..a9f774e6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lighthorzbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lighthorzbxd.glif new file mode 100644 index 00000000..7a583254 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lighthorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightleftbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightleftbxd.glif new file mode 100644 index 00000000..116ad0da --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightleftheavyrightbxd.glif new file mode 100644 index 00000000..d1026973 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightleftheavyrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightquaddashhorzbxd.glif new file mode 100644 index 00000000..34663927 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightquaddashvertbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightquaddashvertbxd.glif new file mode 100644 index 00000000..d5827986 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightrightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightrightbxd.glif new file mode 100644 index 00000000..d5ac820b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightshade.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightshade.glif new file mode 100644 index 00000000..156f38e4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightshade.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lighttrpldashhorzbxd.glif new file mode 100644 index 00000000..fa04127d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lighttrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lighttrpldashvertbxd.glif new file mode 100644 index 00000000..1a2e350a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lighttrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightupbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightupbxd.glif new file mode 100644 index 00000000..bf5a4db0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightupheavydnbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightupheavydnbxd.glif new file mode 100644 index 00000000..efa466ce --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightupheavydnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightuphorzbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightuphorzbxd.glif new file mode 100644 index 00000000..09b7c70f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightupleftbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightupleftbxd.glif new file mode 100644 index 00000000..497929fb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightuprightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightuprightbxd.glif new file mode 100644 index 00000000..ee74eb7c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightvertbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightvertbxd.glif new file mode 100644 index 00000000..de203168 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightverthorzbxd.glif new file mode 100644 index 00000000..5d9eb5f7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightvertleftbxd.glif new file mode 100644 index 00000000..8e0b5d50 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightvertrightbxd.glif new file mode 100644 index 00000000..b1a9a00f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lightvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ligspacer.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ligspacer.glif new file mode 100644 index 00000000..aaf0214e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ligspacer.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/llinebelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/llinebelow.glif index b9ea05b6..d12bdca3 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/llinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/llinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lmacrondotbelow.glif index fe4f2a3c..8e592ffc 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lmacrondotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/lmacrondotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/macute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/macute.glif index 2b67c7dc..baca9e9b 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/macute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/macute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/mdotaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/mdotaccent.glif index 64326260..fa6251af 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/mdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/mdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/mdotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/mdotbelow.glif index 856de70a..13d17c03 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/mdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/mdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/mediumshade.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/mediumshade.glif new file mode 100644 index 00000000..4e438ef8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/mediumshade.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/nacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/nacute.glif index 477c051f..6f2ce732 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/nacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/nacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ncaron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ncaron.glif index d43f5853..7ed9ca74 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ncaron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ncaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ncircumflexbelow.glif index 91f42e1a..c0ac714c 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ncircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ncircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ncommaaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ncommaaccent.glif index ee8facab..ee010158 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ncommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ncommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ndotaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ndotaccent.glif index f0dd9d92..c815949c 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ndotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ndotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ndotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ndotbelow.glif index de257607..a65c1852 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ngrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ngrave.glif index 470cef95..d26ff3c7 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ngrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/nine.num.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/nine.num.glif index f2d046c1..ebb0b622 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/nine.num.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/nine.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/nlinebelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/nlinebelow.glif index cef4c744..6d243c0b 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/nlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/nlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ntilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ntilde.glif index 470ecbda..2d705e10 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ntilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign.end.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign.end.glif new file mode 100644 index 00000000..77a61b1d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign.end.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign.middle.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign.middle.glif new file mode 100644 index 00000000..b704675a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign.start.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign.start.glif new file mode 100644 index 00000000..439971e1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign.start.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_braceleft.liga.glif new file mode 100644 index 00000000..548a8659 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_braceleft.liga.glif @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_bracketleft.liga.glif new file mode 100644 index 00000000..ded9e972 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_bracketleft.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_colon.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_colon.liga.glif new file mode 100644 index 00000000..cf6da716 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_colon.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_equal.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_equal.liga.glif new file mode 100644 index 00000000..562576ef --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_equal.liga.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_exclam.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_exclam.liga.glif new file mode 100644 index 00000000..9dd91dfe --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_parenleft.liga.glif new file mode 100644 index 00000000..8c1aca35 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_parenleft.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_question.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_question.liga.glif new file mode 100644 index 00000000..736f5cfd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_underscore.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_underscore.liga.glif new file mode 100644 index 00000000..0f71d1aa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_underscore.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_underscore_parenleft.glif new file mode 100644 index 00000000..44ddef05 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_underscore_parenleft.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/oacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/oacute.glif index deeecc16..62f2a8bf 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/oacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/oacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/obreve.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/obreve.glif index 2220b27a..bbac0dd3 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/obreve.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/obreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocaron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocaron.glif index e4b2827c..63a2e5ef 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocaron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflex.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflex.glif index fb18d382..6110cabb 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexacute.glif index 9e133193..37d16605 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexdotbelow.glif index d3b5af1f..e207c025 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexdotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexgrave.glif index ceab9c8f..a406a764 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexgrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexhookabove.glif index d8fb13a9..2e27e9e6 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflextilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflextilde.glif index d2d5107b..810354ce 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflextilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflextilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/odieresis.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/odieresis.glif index 24da7860..21c8600c 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/odieresis.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/odieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/odotaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/odotaccent.glif index 1564b085..4c5819ea 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/odotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/odotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/odotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/odotbelow.glif index 2cea95cc..8d7d0312 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/odotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/odotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ograve.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ograve.glif index 56046edf..ab017468 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ograve.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ograve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohookabove.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohookabove.glif index a25275d5..4956d00b 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohookabove.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohorn.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohorn.glif index 845a867a..b19d043b 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohorn.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohorn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohornacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohornacute.glif index 5a0136b0..a43974ac 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohornacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohorndotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohorndotbelow.glif index 39f93ec0..efc6deab 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohorndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohorndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohorngrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohorngrave.glif index 9bcf7f78..2217ac8b 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohorngrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohorngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohornhookabove.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohornhookabove.glif index 911b01af..e0e5928f 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohorntilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohorntilde.glif index cf3dcc7c..6568f0bc 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohorntilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohorntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohungarumlaut.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohungarumlaut.glif index a383ab6a..329d0d2e 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohungarumlaut.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ohungarumlaut.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/omacron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/omacron.glif index c9bd24b5..4030dbfb 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/omacron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/omacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/one.num.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/one.num.glif index b7c7edcc..b8fcdd09 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/one.num.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/one.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/otilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/otilde.glif index 6893b145..cbed7ae8 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/otilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/otilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/percent_percent.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/percent_percent.liga.glif new file mode 100644 index 00000000..e9a6853a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/percent_percent.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_equal.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_equal.liga.glif new file mode 100644 index 00000000..c01e251f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_hyphen.liga.glif new file mode 100644 index 00000000..9018ac94 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_period.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_period.liga.glif new file mode 100644 index 00000000..7040f36f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_period_equal.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_period_equal.liga.glif new file mode 100644 index 00000000..e549d85d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_period_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_period_less.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_period_less.liga.glif new file mode 100644 index 00000000..f4300be9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_period_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_period_period.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_period_period.liga.glif new file mode 100644 index 00000000..3caf3c84 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_period_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_question.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_question.liga.glif new file mode 100644 index 00000000..66f9a08d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/period_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/plus_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/plus_greater.liga.glif new file mode 100644 index 00000000..79edbed2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/plus_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/plus_plus.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/plus_plus.liga.glif new file mode 100644 index 00000000..343f734e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/plus_plus.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/plus_plus_plus.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/plus_plus_plus.liga.glif new file mode 100644 index 00000000..9e8642fb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/plus_plus_plus.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/question_colon.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/question_colon.liga.glif new file mode 100644 index 00000000..cfffedc2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/question_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/question_equal.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/question_equal.liga.glif new file mode 100644 index 00000000..f3405ca9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/question_equal.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/question_period.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/question_period.liga.glif new file mode 100644 index 00000000..27df85cc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/question_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/question_question.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/question_question.liga.glif new file mode 100644 index 00000000..43c4bf3e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/question_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/racute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/racute.glif index 7f97e1cf..479da293 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/racute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/racute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rcaron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rcaron.glif index a5b83124..a5c633f1 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rcaron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rcommaaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rcommaaccent.glif index 63cf30aa..334a33f2 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rdotaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rdotaccent.glif index a438c02d..7e58f462 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rdotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rdotbelow.glif index 7ecd3bff..d74c0c62 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightdnheavyleftuplightbxd.glif new file mode 100644 index 00000000..6c41ecc5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightdnheavyleftuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/righteighthblock.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/righteighthblock.glif new file mode 100644 index 00000000..9d954a40 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/righteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/righthalfblock.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/righthalfblock.glif new file mode 100644 index 00000000..7d4f8cef --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/righthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightheavyleftdnlightbxd.glif new file mode 100644 index 00000000..4c0b0089 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightheavyleftuplightbxd.glif new file mode 100644 index 00000000..7b81cdbe --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightheavyleftvertlightbxd.glif new file mode 100644 index 00000000..10939995 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightheavyleftvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightlightleftdnheavybxd.glif new file mode 100644 index 00000000..c87ff7db --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightlightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightlightleftupheavybxd.glif new file mode 100644 index 00000000..7a49ab53 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightlightleftvertheavybxd.glif new file mode 100644 index 00000000..98b611f4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightlightleftvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightupheavyleftdnlightbxd.glif new file mode 100644 index 00000000..c6b43eb3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rightupheavyleftdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ringcmb.cap.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ringcmb.cap.glif index df616ee3..b6aac3ca 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ringcmb.cap.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ringcmb.cap.glif @@ -1,7 +1,5 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rlinebelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rlinebelow.glif index 494d36dd..d5e1491e 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rmacrondotbelow.glif index e29c7a1b..5b46406a 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rmacrondotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/rmacrondotbelow.glif @@ -7,10 +7,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/sacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/sacute.glif index c15586ba..73bb3773 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/sacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/sacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/scaron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/scaron.glif index 36184eea..eddf370a 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/scaron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/scaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/scircumflex.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/scircumflex.glif index 53d35601..a8a0ad9b 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/scircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/scircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/scommaaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/scommaaccent.glif index 59a9f0a3..8f483dad 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/scommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/scommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/sdotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/sdotbelow.glif index 0776f1b9..cd145dd2 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/sdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/sdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/semicolon_semicolon.liga.glif new file mode 100644 index 00000000..8ac70179 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/semicolon_semicolon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/seven.num.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/seven.num.glif index dab83775..f4db09fd 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/seven.num.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/seven.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/six.num.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/six.num.glif index 831cf7ba..f366fc60 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/six.num.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/six.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_asterisk.liga.glif new file mode 100644 index 00000000..d7c7e65f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_backslash.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_backslash.liga.glif new file mode 100644 index 00000000..a5e3a27a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_backslash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_equal.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_equal.liga.glif new file mode 100644 index 00000000..1528c36a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_equal.start.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_equal.start.glif new file mode 100644 index 00000000..4504a04c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_greater.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_greater.liga.glif new file mode 100644 index 00000000..f3b76e66 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash.liga.glif new file mode 100644 index 00000000..2bc4a71a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash_equal.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash_equal.liga.glif new file mode 100644 index 00000000..e6a19f9f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash_equal.start.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash_equal.start.glif new file mode 100644 index 00000000..14653a46 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash_slash.liga.glif new file mode 100644 index 00000000..3f943989 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash_slash.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/tcaron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/tcaron.glif index baf414d1..c41f4cb9 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/tcaron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/tcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/tcircumflexbelow.glif index 75964f43..4aaf334a 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/tcircumflexbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/tcircumflexbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/tcommaaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/tcommaaccent.glif index b49bdd8a..013cc9b9 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/tcommaaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/tcommaaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/tdotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/tdotbelow.glif index 7af3fc68..77dd783c 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/tdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/tdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/three.num.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/three.num.glif index 6fb8e189..2d2d9aa4 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/three.num.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/three.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/tlinebelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/tlinebelow.glif index 1dbd3caa..09c018e3 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/tlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/tlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/two.num.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/two.num.glif index 4cffc661..eef8aa1d 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/two.num.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/two.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uacute.glif index 5ad43d52..7fe4d438 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ubreve.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ubreve.glif index 13c243ec..2592eb10 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ubreve.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ubreve.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ucaron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ucaron.glif index f360a86c..0737632a 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ucaron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ucaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ucircumflex.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ucircumflex.glif index 517f3d4e..ee0383fb 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ucircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ucircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udieresis.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udieresis.glif index c4fe314c..6fee56bf 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udieresis.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udieresisacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udieresisacute.glif index 7da1231b..d8fbdfc2 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udieresisacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udieresisacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udieresiscaron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udieresiscaron.glif index 5ccfea82..b1675375 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udieresiscaron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udieresiscaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udieresisgrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udieresisgrave.glif index 0c207a4c..732f7e25 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udieresisgrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udieresisgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udieresismacron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udieresismacron.glif index 21e815a0..e378ebbd 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udieresismacron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udieresismacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udotbelow.glif index 4ff33505..569493be 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/udotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ugrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ugrave.glif index 1b3f81cc..2638bf09 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ugrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ugrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhookabove.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhookabove.glif index dd47f922..e068e23a 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhorn.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhorn.glif index 7520b107..963f5058 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhorn.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhorn.glif @@ -2,9 +2,6 @@ - - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhornacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhornacute.glif index cf5509a7..95bf39e8 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhornacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhornacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhorndotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhorndotbelow.glif index 69c033ea..a601d383 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhorndotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhorndotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhorngrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhorngrave.glif index 396ebb51..ff448254 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhorngrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhorngrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhornhookabove.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhornhookabove.glif index 3895b23e..21abc232 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhornhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhornhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhorntilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhorntilde.glif index f88616b0..55d99cc5 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhorntilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhorntilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhungarumlaut.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhungarumlaut.glif index 5c992dd5..cf2d9732 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhungarumlaut.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uhungarumlaut.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/umacron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/umacron.glif index 83eff235..3ddc7d69 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/umacron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/umacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/underscore.end.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/underscore.end.glif new file mode 100644 index 00000000..fd99dab7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/underscore.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/underscore.middle.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/underscore.middle.glif new file mode 100644 index 00000000..db05689a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/underscore.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/underscore.start.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/underscore.start.glif new file mode 100644 index 00000000..5cfdbe96 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/underscore.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/underscore_bar_underscore.m.glif new file mode 100644 index 00000000..7434a357 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/underscore_bar_underscore.m.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uni2011.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uni2011.glif index 937026ea..33e0d4b6 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uni2011.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uni2011.glif @@ -5,10 +5,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uni2610.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uni2610.glif new file mode 100644 index 00000000..4dea0bee --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uni2610.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uni2611.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uni2611.glif new file mode 100644 index 00000000..f536f359 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uni2611.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uni2612.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uni2612.glif new file mode 100644 index 00000000..384e727f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uni2612.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uni2713.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uni2713.glif new file mode 100644 index 00000000..a0b38671 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uni2713.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0A_0.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0A_0.glif new file mode 100644 index 00000000..ecb0def1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0A_0.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0A_1.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0A_1.glif new file mode 100644 index 00000000..03c62ae3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0A_1.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0A_2.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0A_2.glif new file mode 100644 index 00000000..9dada2b4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0A_2.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_0.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_0.glif new file mode 100644 index 00000000..e7f05c3f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_0.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_1.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_1.glif new file mode 100644 index 00000000..51270ba5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_1.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_2.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_2.glif new file mode 100644 index 00000000..7e273a8f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_2.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_3.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_3.glif new file mode 100644 index 00000000..b472c185 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_3.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/updblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/updblhorzsngbxd.glif new file mode 100644 index 00000000..fbea73da --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/updblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/updblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/updblleftsngbxd.glif new file mode 100644 index 00000000..4cb8cd4e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/updblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/updblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/updblrightsngbxd.glif new file mode 100644 index 00000000..4d30e68b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/updblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upeighthblock.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upeighthblock.glif new file mode 100644 index 00000000..87701940 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upeighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uphalfblock.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uphalfblock.glif new file mode 100644 index 00000000..018ed615 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uphalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upheavydnhorzlightbxd.glif new file mode 100644 index 00000000..d4341da3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upheavydnhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upheavyhorzlightbxd.glif new file mode 100644 index 00000000..12f246ec --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upheavyleftdnlightbxd.glif new file mode 100644 index 00000000..b986e7b8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upheavyleftlightbxd.glif new file mode 100644 index 00000000..22654e88 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upheavyrightdnlightbxd.glif new file mode 100644 index 00000000..2256857f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upheavyrightlightbxd.glif new file mode 100644 index 00000000..cc2f9943 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upleftdnleftdnrightquadrant.glif new file mode 100644 index 00000000..91309b79 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upleftdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upleftdnrightquadrant.glif new file mode 100644 index 00000000..9bb17821 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upleftdnrightquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upleftquadrant.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upleftquadrant.glif new file mode 100644 index 00000000..ef21c49d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upleftuprightdnleftquadrant.glif new file mode 100644 index 00000000..0d5294c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upleftuprightdnleftquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upleftuprightdnrightquadrant.glif new file mode 100644 index 00000000..56cf6e14 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upleftuprightdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uplightdnhorzheavybxd.glif new file mode 100644 index 00000000..4f0c82fc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uplightdnhorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uplighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uplighthorzheavybxd.glif new file mode 100644 index 00000000..12f30e25 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uplighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uplightleftdnheavybxd.glif new file mode 100644 index 00000000..87be08c3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uplightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uplightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uplightleftheavybxd.glif new file mode 100644 index 00000000..bf26f0ed --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uplightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uplightrightdnheavybxd.glif new file mode 100644 index 00000000..1357009e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uplightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uplightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uplightrightheavybxd.glif new file mode 100644 index 00000000..a04f478d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uplightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uprightdnleftdnrightquadrant.glif new file mode 100644 index 00000000..df5a022e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uprightdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uprightdnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uprightdnleftquadrant.glif new file mode 100644 index 00000000..93cbe757 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uprightdnleftquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uprightquadrant.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uprightquadrant.glif new file mode 100644 index 00000000..de8b454f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uprightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upsnghorzdblbxd.glif new file mode 100644 index 00000000..ecf79690 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upsngleftdblbxd.glif new file mode 100644 index 00000000..d0ac6538 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upsngrightdblbxd.glif new file mode 100644 index 00000000..af44f8be --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/upsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uring.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uring.glif index 02d2a920..97f66cfa 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uring.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/uring.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/utilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/utilde.glif index 3f069d76..12cfcb8f 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/utilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/utilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vdotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vdotbelow.glif index 073ddf83..93a9c351 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertdblhorzsngbxd.glif new file mode 100644 index 00000000..c87d717c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertdblhorzsngbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertdblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertdblleftsngbxd.glif new file mode 100644 index 00000000..44ab6cdb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertdblleftsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertdblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertdblrightsngbxd.glif new file mode 100644 index 00000000..c7840928 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertdblrightsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertheavyhorzlightbxd.glif new file mode 100644 index 00000000..21c0e1b9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertheavyhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertheavyleftlightbxd.glif new file mode 100644 index 00000000..cef2c326 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertheavyleftlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertheavyrightlightbxd.glif new file mode 100644 index 00000000..5e410988 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertheavyrightlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertlighthorzheavybxd.glif new file mode 100644 index 00000000..378c969e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertlighthorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertlightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertlightleftheavybxd.glif new file mode 100644 index 00000000..9cc69879 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertlightleftheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertlightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertlightrightheavybxd.glif new file mode 100644 index 00000000..ae47f552 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertlightrightheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertsnghorzdblbxd.glif new file mode 100644 index 00000000..304e8597 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertsnghorzdblbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertsngleftdblbxd.glif new file mode 100644 index 00000000..0c91712e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertsngleftdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertsngrightdblbxd.glif new file mode 100644 index 00000000..f166e6c7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/vertsngrightdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/w_w_w.liga.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/w_w_w.liga.glif new file mode 100644 index 00000000..f4089823 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/w_w_w.liga.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/wacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/wacute.glif index bd6a538a..725f2efe 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/wacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/wacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/wcircumflex.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/wcircumflex.glif index 57d8cc75..7b1e5b04 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/wcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/wcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/wdieresis.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/wdieresis.glif index 6aa720e1..4baaede8 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/wdieresis.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/wdieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/wgrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/wgrave.glif index a84caa37..1ec9e9c8 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/wgrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/wgrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/xdieresis.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/xdieresis.glif index 35d08922..d72e89c4 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/xdieresis.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/xdieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/yacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/yacute.glif index 0b2b29d9..790b59c9 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/yacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/yacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ycircumflex.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ycircumflex.glif index 4594b032..17b5f7d4 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ycircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ycircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ydieresis.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ydieresis.glif index 6f07e044..34505dd3 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ydieresis.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ydieresis.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ydotaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ydotaccent.glif index 77b47020..986dbf20 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ydotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ydotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ydotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ydotbelow.glif index 0fc13fa7..50612b8e 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ydotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ydotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ygrave.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ygrave.glif index b8cfe3a6..9cb086b5 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ygrave.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ygrave.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/yhookabove.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/yhookabove.glif index 49cc8205..d4488491 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/yhookabove.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/yhookabove.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ymacron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ymacron.glif index 07fbe81a..345cfea8 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ymacron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ymacron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ytilde.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ytilde.glif index 700d3f1b..05546338 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ytilde.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/ytilde.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zacute.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zacute.glif index d3085d51..6bbc0ddc 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zacute.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zacute.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zcaron.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zcaron.glif index 5ea36fef..afe7e7f1 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zcaron.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zcaron.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zcircumflex.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zcircumflex.glif index 3b3ba49b..a2d46696 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zcircumflex.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zcircumflex.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zdotaccent.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zdotaccent.glif index b276753a..91c4a088 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zdotaccent.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zdotaccent.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zdotbelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zdotbelow.glif index 748fac26..79224a78 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zdotbelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zdotbelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zero.num.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zero.num.glif index bf03111e..e1ec4bd5 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zero.num.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zero.num.glif @@ -4,10 +4,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zlinebelow.glif b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zlinebelow.glif index dc982dde..08aab0a1 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zlinebelow.glif +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/glyphs/zlinebelow.glif @@ -6,10 +6,4 @@ - - - public.markColor - 0.7843,0.7843,0.7843,1 - - diff --git a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/lib.plist b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/lib.plist index 047cc547..29a765f7 100644 --- a/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/lib.plist +++ b/sources/instances/postscript/IntelOneMono-MediumItalic.ufo/lib.plist @@ -710,6 +710,365 @@ circumflexgrave.cap circumflexhook.cap circumflextilde.cap + lighthorzbxd + heavyhorzbxd + lightvertbxd + heavyvertbxd + lighttrpldashhorzbxd + heavytrpldashhorzbxd + lighttrpldashvertbxd + heavytrpldashvertbxd + lightquaddashhorzbxd + heavyquaddashhorzbxd + lightquaddashvertbxd + heavyquaddashvertbxd + lightdnrightbxd + dnlightrightheavybxd + dnheavyrightlightbxd + heavydnrightbxd + lightdnleftbxd + dnlightleftheavybxd + dnheavyleftlightbxd + heavydnleftbxd + lightuprightbxd + uplightrightheavybxd + upheavyrightlightbxd + heavyuprightbxd + lightupleftbxd + uplightleftheavybxd + upheavyleftlightbxd + heavyupleftbxd + lightvertrightbxd + vertlightrightheavybxd + upheavyrightdnlightbxd + dnheavyrightuplightbxd + vertheavyrightlightbxd + dnlightrightupheavybxd + uplightrightdnheavybxd + heavyvertrightbxd + lightvertleftbxd + vertlightleftheavybxd + upheavyleftdnlightbxd + dnheavyleftuplightbxd + vertheavyleftlightbxd + dnlightleftupheavybxd + uplightleftdnheavybxd + heavyvertleftbxd + lightdnhorzbxd + leftheavyrightdnlightbxd + rightheavyleftdnlightbxd + dnlighthorzheavybxd + dnheavyhorzlightbxd + rightlightleftdnheavybxd + leftlightrightdnheavybxd + heavydnhorzbxd + lightuphorzbxd + leftheavyrightuplightbxd + rightheavyleftuplightbxd + uplighthorzheavybxd + upheavyhorzlightbxd + rightlightleftupheavybxd + leftlightrightupheavybxd + heavyuphorzbxd + lightverthorzbxd + leftheavyrightvertlightbxd + rightheavyleftvertlightbxd + vertlighthorzheavybxd + upheavydnhorzlightbxd + dnheavyuphorzlightbxd + vertheavyhorzlightbxd + leftupheavyrightdnlightbxd + rightupheavyleftdnlightbxd + leftdnheavyrightuplightbxd + rightdnheavyleftuplightbxd + dnlightuphorzheavybxd + uplightdnhorzheavybxd + rightlightleftvertheavybxd + leftlightrightvertheavybxd + heavyverthorzbxd + lightdbldashhorzbxd + heavydbldashhorzbxd + lightdbldashvertbxd + heavydbldashvertbxd + dblhorzbxd + dblvertbxd + dnsngrightdblbxd + dndblrightsngbxd + dbldnrightbxd + dnsngleftdblbxd + dndblleftsngbxd + dbldnleftbxd + upsngrightdblbxd + updblrightsngbxd + dbluprightbxd + upsngleftdblbxd + updblleftsngbxd + dblupleftbxd + vertsngrightdblbxd + vertdblrightsngbxd + dblvertrightbxd + vertsngleftdblbxd + vertdblleftsngbxd + dblvertleftbxd + dnsnghorzdblbxd + dndblhorzsngbxd + dbldnhorzbxd + upsnghorzdblbxd + updblhorzsngbxd + dbluphorzbxd + vertsnghorzdblbxd + vertdblhorzsngbxd + dblverthorzbxd + lightarcdnrightbxd + lightarcdnleftbxd + lightarcupleftbxd + lightarcuprightbxd + lightdiaguprightdnleftbxd + lightdiagupleftdnrightbxd + lightdiagcrossbxd + lightleftbxd + lightupbxd + lightrightbxd + lightdnbxd + heavyleftbxd + heavyupbxd + heavyrightbxd + heavydnbxd + lightleftheavyrightbxd + lightupheavydnbxd + heavyleftlightrightbxd + heavyuplightdnbxd + uphalfblock + dneighthblock + dnquarterblock + dnthreeeighthsblock + dnhalfblock + dnfiveeighthsblock + dnthreequartersblock + dnseveneighthsblock + fullblock + leftseveneighthsblock + leftthreequartersblock + leftfiveeighthsblock + lefthalfblock + leftthreeeighthsblock + leftquarterblock + lefteighthblock + righthalfblock + lightshade + mediumshade + darkshade + upeighthblock + righteighthblock + dnleftquadrant + dnrightquadrant + upleftquadrant + upleftdnleftdnrightquadrant + upleftdnrightquadrant + upleftuprightdnleftquadrant + upleftuprightdnrightquadrant + uprightquadrant + uprightdnleftquadrant + uprightdnleftdnrightquadrant + ligspacer + equal.start + equal.middle + equal.end + hyphen.start + hyphen.middle + hyphen.end + underscore.start + underscore.middle + underscore.end + numbersign.start + numbersign.middle + numbersign.end + period_equal.liga + period_period_equal.liga + period_hyphen.liga + colon_equal.liga + equal_equal.liga + exclam_equal.liga + equal_equal_equal.liga + exclam_equal_equal.liga + less_hyphen_less.liga + less_less_hyphen.liga + less_hyphen.liga + less_hyphen_greater.liga + hyphen_greater.liga + hyphen_greater_greater.liga + greater_hyphen_greater.liga + less_equal_less.liga + less_less_equal.liga + less_equal_greater.liga + equal_greater.liga + less_equal.liga + equal_greater_greater.liga + greater_equal_greater.liga + greater_equal.liga + greater_greater_equal.liga + greater_greater_hyphen.liga + greater_hyphen.liga + less_asciitilde_greater.liga + hyphen_less.liga + hyphen_less_less.liga + equal_less.liga + equal_less_less.liga + less_asciitilde_asciitilde.liga + less_asciitilde.liga + asciitilde_asciitilde.liga + asciitilde_greater.liga + asciitilde_asciitilde_greater + less_exclam_hyphen_hyphen.liga + slash_equal.liga + hyphen_bar.liga + bar_hyphen.liga + bar_equal.liga + hyphen_bar_bar.liga + bar_bar_hyphen.liga + equal_bar_bar.liga + bar_bar_equal.liga + equal_bar.liga + slash_slash_equal.liga + equal_slash.liga + equal_slash_slash.liga + equal_colon_equal.middle + equal_exclam_equal.middle + underscore_bar_underscore.m + hyphen_bar_hyphen.middle + equal_bar_equal.middle + hyphen_greater_hyphen.middle + hyphen_greater_greater_hyphen.m + equal_slash_slash_equal.middle + equal_slash_equal.middle + hyphen_bar_bar_hyphen.middle + equal_bar_bar_equal.middle + hyphen_less_hyphen.middle + hyphen_less_less_hyphen.middle + equal_greater_equal.middle + equal_less_equal.middle + equal_greater_greater_equal.m + equal_less_less_equal.middle + less_hyphen.start + greater_hyphen.start + bar_hyphen.start + less_equal.start + greater_equal.start + bar_equal.start + slash_equal.start + slash_slash_equal.start + less_less_hyphen.start + greater_greater_hyphen.start + bar_bar_hyphen.start + less_less_equal.start + greater_greater_equal.start + bar_bar_equal.start + hyphen_less.end + hyphen_greater.end + hyphen_bar.end + equal_less.end + equal_greater.end + equal_bar.end + hyphen_less_less.end + hyphen_greater_greater.end + hyphen_bar_bar.end + equal_less_less.end + equal_greater_greater.end + equal_bar_bar.end + equal_slash.end + equal_slash_slash.end + less_less_less.liga + less_less.liga + less_equal + less_greater.liga + greater_equal + greater_greater.liga + greater_greater_greater.liga + braceleft_bar.liga + bracketleft_bar.liga + less_colon.liga + colon_less.liga + greater_colon.liga + colon_greater.liga + bar_braceright.liga + bar_bracketright.liga + less_bar_bar_bar.liga + less_bar_bar.liga + less_bar.liga + less_bar_greater.liga + bar_greater.liga + bar_bar_greater.liga + bar_bar_bar_greater.liga + less_dollar.liga + less_dollar_greater.liga + dollar_greater.liga + less_plus.liga + less_plus_greater.liga + plus_greater.liga + less_asterisk.liga + less_asterisk_greater.liga + asterisk_greater.liga + slash_asterisk.liga + asterisk_slash.liga + slash_slash_slash.liga + slash_slash.liga + less_slash.liga + less_slash_greater.liga + slash_greater.liga + semicolon_semicolon.liga + colon_colon.liga + colon_colon_colon.liga + period_period.liga + period_period_period.liga + period_period_less.liga + exclam_exclam.liga + question_question.liga + percent_percent.liga + ampersand_ampersand.liga + bar_bar.liga + question_period.liga + question_colon.liga + plus_plus.liga + plus_plus_plus.liga + hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga + asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga + equal_asciitilde.liga + exclam_asciitilde.liga + asciitilde_hyphen.liga + w_w_w.liga + hyphen_asciitilde.liga + asciitilde_at.liga + asciicircum_equal.liga + question_equal.liga + numbersign_exclam.liga + numbersign_equal.liga + numbersign_colon.liga + numbersign_braceleft.liga + numbersign_bracketleft.liga + bracketright_numbersign.liga + numbersign_parenleft.liga + numbersign_question.liga + numbersign_underscore.liga + numbersign_underscore_parenleft + backslash_slash.liga + bar_bar_bar.liga + colon_colon_equal.liga + exclam_exclam_period.liga + period_question.liga + slash_backslash.liga + uniE0A0 + uniE0A1 + uniE0A2 + uniE0B0 + uniE0B1 + uniE0B2 + uniE0B3 + uni2610 + uni2611 + uni2612 + uni2713 public.postscriptNames diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/features.fea b/sources/instances/postscript/IntelOneMono-Regular.ufo/features.fea index a32f0139..167ad64f 100644 --- a/sources/instances/postscript/IntelOneMono-Regular.ufo/features.fea +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/features.fea @@ -1,368 +1,6 @@ -# ---------------------------- -# INTEL ONE MONO OPENTYPE CODE -# ---------------------------- -# ---------------- -# Language Systems -# ---------------- +include(../../features/shared.fea); -languagesystem DFLT dflt; -languagesystem latn dflt; -languagesystem latn TRK; -languagesystem latn AZE; -languagesystem latn CRT; -languagesystem latn CAT; +include(../../features/mark/IntelOneMono-Regular mark.fea); - -# ------- -# Classes -# ------- - -# Base Letters -@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; -@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; - -# Figures -@fig = [zero one two three four five six seven eight nine]; -@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; -@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; -@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; -@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; - -# Marks Above -@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; -@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; - -# Marks Below -@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; - - -# --------------- -# Localized Forms -# --------------- - -feature locl { - script latn; - language TRK; - lookup iTurkish { - sub i by idotaccent; - } iTurkish; - language AZE; - lookup iTurkish; - language CRT; - lookup iTurkish; - language CAT; - sub l periodcentered' l by middotcat; - sub L periodcentered' L by middotcat.cap; - # try fusing them - sub L middotcat.cap by L.dot; - sub L middotcat by L.dot; - sub l middotcat by l.dot; -} locl; - - -# --------------------------------- -# Glyph Composition / Decomposition -# --------------------------------- - -feature ccmp { - - # Decompose unicode lowercase characters whose uppercase counterparts have no unicode. - lookup Decomp { - sub hlinebelow by h macronlowmod; - sub jcaron by j caron; - } Decomp; - - # Replace double above accents by combined drawings. - lookup DblMarks { - sub dieresiscmb acutecmb by dieresisacute; - sub dieresiscmb gravecmb by dieresisgrave; - sub dieresiscmb caroncmb by dieresiscaron; - sub dieresiscmb macroncmb by dieresismacron; - sub brevecmb acutecmb by breveacute; - sub brevecmb gravecmb by brevegrave; - sub brevecmb hookcmb by brevehook; - sub brevecmb tildecmb by brevetilde; - sub circumflexcmb acutecmb by circumflexacute; - sub circumflexcmb gravecmb by circumflexgrave; - sub circumflexcmb hookcmb by circumflexhook; - sub circumflexcmb tildecmb by circumflextilde; - # capital forms - sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; - sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; - sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; - sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; - sub brevecmb.cap acutecmb.cap by breveacute.cap; - sub brevecmb.cap gravecmb.cap by brevegrave.cap; - sub brevecmb.cap hookcmb.cap by brevehook.cap; - sub brevecmb.cap tildecmb.cap by brevetilde.cap; - sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; - sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; - sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; - sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; - } DblMarks; - - # Replace combining marks that follow a uppercase letter by their uppercase form - lookup CapitalMarks { - sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; - sub [@ltrUC] [@lcMarks]' by [@ucMarks]; - } CapitalMarks; - - # Replace letters with dotless counterparts when followed by a combining mark - lookup Dotless { - sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; - sub [i j]' [@lcMarks] by [dotlessi dotlessj]; - } Dotless; - - # Replace e ogonek with pre-drawn eogonek - lookup eogonek { - sub e ogonekcmb by eogonek; - } eogonek; - -} ccmp; - - -# ---------- -# Numerators -# ---------- - -feature numr { - sub @fig by @figNum; -} numr; - -# ------------ -# Denominators -# ------------ - -feature dnom { - sub @fig by @figDen; -} dnom; - -# ----------- -# Superscript -# ----------- - -feature sups { - sub @fig by @figSup; -} sups; - -# --------------------- -# Subscript & Inferiors -# --------------------- - -feature subs { - sub @fig by @figInf; -} subs; - -feature sinf { - sub @fig by @figInf; -} sinf; - - -# --------------------- -# Contextual Alternates -# --------------------- - -feature calt { - # shifts colon to align with math symbols when used together - - sub colon' [plus equal greater less hyphen] by colon.fig; - sub [plus equal less greater hyphen] colon' by colon.fig; - - sub colon' [colon colon.fig] by colon.fig; - sub colon.fig colon' by colon.fig; - -} calt; - - -# -------------- -# Stylistic Sets -# -------------- - -feature ss11 { - featureNames { - name "Raised Colon (Figures Only)"; # Windows English - name 1 0 0 "Raised Colon (Figures Only)"; # Mac English - }; - lookup FigureColonContextual { - sub @fig colon' @fig by colon.fig; - } FigureColonContextual; -} ss11; - -feature ss12 { - featureNames { - name "Raised Colon (Global)"; # Windows English - name 1 0 0 "Raised Colon (Global)"; # Mac English - }; - lookup FigureColon { - sub colon by colon.fig; - } FigureColon; -} ss12; - - -# -------------------- -# Stylistic Alternates -# -------------------- - -feature salt { - lookup FigureColon; # SS12 -} salt; - - -# --------------------------------------------------------------------- -# MARK | Generated: November 23, 2022 - 02:38:03 PM by 'markFeature.py' -# --------------------------------------------------------------------- - -markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; -markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; -markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; -markClass [cedillacmb] @mark_belowcedilla; -markClass [ogonekcmb] @mark_belowogonek; - -feature mark { - - lookup aboveLC{ - pos base [a] mark @mark_aboveLC; - pos base [c] mark @mark_aboveLC; - pos base [dotlessi] mark @mark_aboveLC; - pos base [dotlessj] mark @mark_aboveLC; - pos base [e] mark @mark_aboveLC; - pos base [eogonek] mark @mark_aboveLC; - pos base [g] mark @mark_aboveLC; - pos base [m] mark @mark_aboveLC; - pos base [n] mark @mark_aboveLC; - pos base [o] mark @mark_aboveLC; - pos base [p] mark @mark_aboveLC; - pos base [s] mark @mark_aboveLC; - pos base [u] mark @mark_aboveLC; - pos base [z] mark @mark_aboveLC; - } aboveLC; - - lookup aboveUC{ - pos base [A] mark @mark_aboveUC; - pos base [C] mark @mark_aboveUC; - pos base [E] mark @mark_aboveUC; - pos base [Eogonek] mark @mark_aboveUC; - pos base [G] mark @mark_aboveUC; - pos base [I] mark @mark_aboveUC; - pos base [J] mark @mark_aboveUC; - pos base [M] mark @mark_aboveUC; - pos base [N] mark @mark_aboveUC; - pos base [O] mark @mark_aboveUC; - pos base [P] mark @mark_aboveUC; - pos base [S] mark @mark_aboveUC; - pos base [U] mark @mark_aboveUC; - pos base [Z] mark @mark_aboveUC; - } aboveUC; - - lookup below{ - pos base [C] mark @mark_below; - pos base [Dcroat] mark @mark_below; - pos base [E] mark @mark_below; - pos base [H] mark @mark_below; - pos base [I] mark @mark_below; - pos base [O] mark @mark_below; - pos base [S] mark @mark_below; - pos base [U] mark @mark_below; - pos base [X] mark @mark_below; - pos base [Z] mark @mark_below; - pos base [c] mark @mark_below; - pos base [dcroat] mark @mark_below; - pos base [dotlessi] mark @mark_below; - pos base [e] mark @mark_below; - pos base [h] mark @mark_below; - pos base [o] mark @mark_below; - pos base [s] mark @mark_below; - pos base [u] mark @mark_below; - pos base [x] mark @mark_below; - pos base [z] mark @mark_below; - } below; - - lookup belowcedilla{ - pos base [Z] mark @mark_belowcedilla; - pos base [z] mark @mark_belowcedilla; - } belowcedilla; - - lookup belowogonek{ - pos base [A] mark @mark_belowogonek; - pos base [E] mark @mark_belowogonek; - pos base [I] mark @mark_belowogonek; - pos base [O] mark @mark_belowogonek; - pos base [U] mark @mark_belowogonek; - pos base [a] mark @mark_belowogonek; - pos base [dotlessi] mark @mark_belowogonek; - pos base [e] mark @mark_belowogonek; - pos base [o] mark @mark_belowogonek; - pos base [u] mark @mark_belowogonek; - } belowogonek; - -} mark; - -@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; -@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; - -table GDEF { - GlyphClassDef @BASES,,@MARKS,; -} GDEF; - - -# -------------- -# All Alternates -# -------------- - -feature aalt { - sub germandbls from [germandbls uni1E9E]; - sub uni1E9E from [uni1E9E germandbls]; - sub colon from [colon colon.fig]; - sub colon.fig from [colon.fig colon]; - sub eight from [eight eight.den eight.sup eight.num eight.inf]; - sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; - sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; - sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; - sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; - sub five from [five five.inf five.num five.den five.sup]; - sub five.sup from [five.sup five five.inf five.num five.den]; - sub five.den from [five.den five.sup five five.inf five.num]; - sub five.num from [five.num five.den five.sup five five.inf]; - sub five.inf from [five.inf five.num five.den five.sup five]; - sub four from [four four.sup four.num four.den four.inf]; - sub four.inf from [four.inf four four.sup four.num four.den]; - sub four.den from [four.den four.inf four four.sup four.num]; - sub four.num from [four.num four.den four.inf four four.sup]; - sub four.sup from [four.sup four.num four.den four.inf four]; - sub nine from [nine nine.den nine.inf nine.num nine.sup]; - sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; - sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; - sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; - sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; - sub one from [one one.den one.num one.inf one.sup]; - sub one.sup from [one.sup one one.den one.num one.inf]; - sub one.inf from [one.inf one.sup one one.den one.num]; - sub one.num from [one.num one.inf one.sup one one.den]; - sub one.den from [one.den one.num one.inf one.sup one]; - sub seven from [seven seven.inf seven.num seven.sup seven.den]; - sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; - sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; - sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; - sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; - sub six from [six six.num six.sup six.den six.inf]; - sub six.inf from [six.inf six six.num six.sup six.den]; - sub six.den from [six.den six.inf six six.num six.sup]; - sub six.sup from [six.sup six.den six.inf six six.num]; - sub six.num from [six.num six.sup six.den six.inf six]; - sub three from [three three.inf three.den three.num three.sup]; - sub three.sup from [three.sup three three.inf three.den three.num]; - sub three.num from [three.num three.sup three three.inf three.den]; - sub three.den from [three.den three.num three.sup three three.inf]; - sub three.inf from [three.inf three.den three.num three.sup three]; - sub two from [two two.inf two.sup two.num two.den]; - sub two.den from [two.den two two.inf two.sup two.num]; - sub two.num from [two.num two.den two two.inf two.sup]; - sub two.sup from [two.sup two.num two.den two two.inf]; - sub two.inf from [two.inf two.sup two.num two.den two]; - sub zero from [zero zero.sup zero.num zero.den zero.inf]; - sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; - sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; - sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; - sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; -} aalt; +include(../../features/aalt.fea); diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/fontinfo.plist b/sources/instances/postscript/IntelOneMono-Regular.ufo/fontinfo.plist index b832a012..0993ea67 100644 --- a/sources/instances/postscript/IntelOneMono-Regular.ufo/fontinfo.plist +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/fontinfo.plist @@ -7,7 +7,7 @@ capHeight 655 copyright - Copyright 2023 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) descender -260 familyName @@ -53,7 +53,7 @@ platformID 1 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -65,7 +65,7 @@ platformID 3 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -374,7 +374,7 @@ versionMajor 1 versionMinor - 3 + 4 xHeight 465 diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/L_.dot.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/L_.dot.glif index c39ffcd8..c52b781f 100644 --- a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/L_.dot.glif +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/L_.dot.glif @@ -8,7 +8,6 @@ - diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/ampersand_ampersand.liga.glif new file mode 100644 index 00000000..0861172e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/ampersand_ampersand.liga.glif @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asciicircum_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asciicircum_equal.liga.glif new file mode 100644 index 00000000..b06fbc54 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asciicircum_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..397e1796 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asciitilde_asciitilde.liga.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asciitilde_asciitilde_greater.glif new file mode 100644 index 00000000..3780c34b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asciitilde_asciitilde_greater.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asciitilde_at.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asciitilde_at.liga.glif new file mode 100644 index 00000000..33c2a21a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asciitilde_at.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asciitilde_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asciitilde_greater.liga.glif new file mode 100644 index 00000000..0a028b96 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asciitilde_greater.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asciitilde_hyphen.liga.glif new file mode 100644 index 00000000..45be08ac --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asciitilde_hyphen.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asterisk_asterisk.liga.glif new file mode 100644 index 00000000..2033b6f5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asterisk_asterisk.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif new file mode 100644 index 00000000..10bf4a07 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asterisk_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asterisk_greater.liga.glif new file mode 100644 index 00000000..827471b2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asterisk_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asterisk_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asterisk_slash.liga.glif new file mode 100644 index 00000000..25ee744f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/asterisk_slash.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/backslash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/backslash_slash.liga.glif new file mode 100644 index 00000000..0d7605fc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/backslash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar.liga.glif new file mode 100644 index 00000000..0bb2a5a7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_bar.liga.glif new file mode 100644 index 00000000..f494b682 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_bar.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_bar_greater.liga.glif new file mode 100644 index 00000000..bae3fa7b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_bar_greater.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_equal.liga.glif new file mode 100644 index 00000000..6c277016 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_equal.start.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_equal.start.glif new file mode 100644 index 00000000..e56ff253 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_greater.liga.glif new file mode 100644 index 00000000..e8132e5c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_greater.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_hyphen.liga.glif new file mode 100644 index 00000000..4506c1b5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_hyphen.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_hyphen.start.glif new file mode 100644 index 00000000..bcc4c4a2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bar_hyphen.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_braceright.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_braceright.liga.glif new file mode 100644 index 00000000..78d46c54 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_braceright.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bracketright.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bracketright.liga.glif new file mode 100644 index 00000000..aaeb707c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_bracketright.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_equal.liga.glif new file mode 100644 index 00000000..8503c507 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_equal.start.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_equal.start.glif new file mode 100644 index 00000000..18b16cee --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_greater.liga.glif new file mode 100644 index 00000000..f1dca2a7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_hyphen.liga.glif new file mode 100644 index 00000000..3ce4f909 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_hyphen.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_hyphen.start.glif new file mode 100644 index 00000000..cbd01ca0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bar_hyphen.start.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/braceleft_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/braceleft_bar.liga.glif new file mode 100644 index 00000000..4ec34441 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/braceleft_bar.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bracketleft_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bracketleft_bar.liga.glif new file mode 100644 index 00000000..933c2792 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bracketleft_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bracketright_numbersign.liga.glif new file mode 100644 index 00000000..3804f91b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/bracketright_numbersign.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/colon_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/colon_colon.liga.glif new file mode 100644 index 00000000..f03e1743 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/colon_colon.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/colon_colon_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/colon_colon_colon.liga.glif new file mode 100644 index 00000000..5d36e45f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/colon_colon_colon.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/colon_colon_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/colon_colon_equal.liga.glif new file mode 100644 index 00000000..558094fb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/colon_colon_equal.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/colon_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/colon_equal.liga.glif new file mode 100644 index 00000000..77553c8b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/colon_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/colon_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/colon_greater.liga.glif new file mode 100644 index 00000000..930d2c8a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/colon_greater.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/colon_less.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/colon_less.liga.glif new file mode 100644 index 00000000..88943992 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/colon_less.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/commaturnedabovecmb.glif index 6f8a0292..dfffceb0 100644 --- a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/commaturnedabovecmb.glif +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/commaturnedabovecmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/contents.plist b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/contents.plist index 9b3fa25c..10a2ded8 100644 --- a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/contents.plist +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/contents.plist @@ -498,6 +498,8 @@ amacron.glif ampersand ampersand.glif + ampersand_ampersand.liga + ampersand_ampersand.liga.glif aogonek aogonek.glif apostrophemod @@ -508,10 +510,30 @@ aring.glif asciicircum asciicircum.glif + asciicircum_equal.liga + asciicircum_equal.liga.glif asciitilde asciitilde.glif + asciitilde_asciitilde.liga + asciitilde_asciitilde.liga.glif + asciitilde_asciitilde_greater + asciitilde_asciitilde_greater.glif + asciitilde_at.liga + asciitilde_at.liga.glif + asciitilde_greater.liga + asciitilde_greater.liga.glif + asciitilde_hyphen.liga + asciitilde_hyphen.liga.glif asterisk asterisk.glif + asterisk_asterisk.liga + asterisk_asterisk.liga.glif + asterisk_asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga.glif + asterisk_greater.liga + asterisk_greater.liga.glif + asterisk_slash.liga + asterisk_slash.liga.glif at at.glif atilde @@ -520,20 +542,58 @@ b.glif backslash backslash.glif + backslash_slash.liga + backslash_slash.liga.glif bahtthai bahtthai.glif bar bar.glif + bar_bar.liga + bar_bar.liga.glif + bar_bar_bar.liga + bar_bar_bar.liga.glif + bar_bar_bar_greater.liga + bar_bar_bar_greater.liga.glif + bar_bar_equal.liga + bar_bar_equal.liga.glif + bar_bar_equal.start + bar_bar_equal.start.glif + bar_bar_greater.liga + bar_bar_greater.liga.glif + bar_bar_hyphen.liga + bar_bar_hyphen.liga.glif + bar_bar_hyphen.start + bar_bar_hyphen.start.glif + bar_braceright.liga + bar_braceright.liga.glif + bar_bracketright.liga + bar_bracketright.liga.glif + bar_equal.liga + bar_equal.liga.glif + bar_equal.start + bar_equal.start.glif + bar_greater.liga + bar_greater.liga.glif + bar_hyphen.liga + bar_hyphen.liga.glif + bar_hyphen.start + bar_hyphen.start.glif blinebelow blinebelow.glif braceleft braceleft.glif + braceleft_bar.liga + braceleft_bar.liga.glif braceright braceright.glif bracketleft bracketleft.glif + bracketleft_bar.liga + bracketleft_bar.liga.glif bracketright bracketright.glif + bracketright_numbersign.liga + bracketright_numbersign.liga.glif breve breve.glif breveacute @@ -612,6 +672,18 @@ colon.glif colon.fig colon.fig.glif + colon_colon.liga + colon_colon.liga.glif + colon_colon_colon.liga + colon_colon_colon.liga.glif + colon_colon_equal.liga + colon_colon_equal.liga.glif + colon_equal.liga + colon_equal.liga.glif + colon_greater.liga + colon_greater.liga.glif + colon_less.liga + colon_less.liga.glif comma comma.glif commaaboverightcmb @@ -628,8 +700,32 @@ dagger.glif daggerdbl daggerdbl.glif + darkshade + darkshade.glif + dbldnhorzbxd + dbldnhorzbxd.glif + dbldnleftbxd + dbldnleftbxd.glif + dbldnrightbxd + dbldnrightbxd.glif + dblhorzbxd + dblhorzbxd.glif dblprimemod dblprimemod.glif + dbluphorzbxd + dbluphorzbxd.glif + dblupleftbxd + dblupleftbxd.glif + dbluprightbxd + dbluprightbxd.glif + dblvertbxd + dblvertbxd.glif + dblverthorzbxd + dblverthorzbxd.glif + dblvertleftbxd + dblvertleftbxd.glif + dblvertrightbxd + dblvertrightbxd.glif dcaron dcaron.glif dcircumflexbelow @@ -668,8 +764,64 @@ divide.glif dlinebelow dlinebelow.glif + dndblhorzsngbxd + dndblhorzsngbxd.glif + dndblleftsngbxd + dndblleftsngbxd.glif + dndblrightsngbxd + dndblrightsngbxd.glif + dneighthblock + dneighthblock.glif + dnfiveeighthsblock + dnfiveeighthsblock.glif + dnhalfblock + dnhalfblock.glif + dnheavyhorzlightbxd + dnheavyhorzlightbxd.glif + dnheavyleftlightbxd + dnheavyleftlightbxd.glif + dnheavyleftuplightbxd + dnheavyleftuplightbxd.glif + dnheavyrightlightbxd + dnheavyrightlightbxd.glif + dnheavyrightuplightbxd + dnheavyrightuplightbxd.glif + dnheavyuphorzlightbxd + dnheavyuphorzlightbxd.glif + dnleftquadrant + dnleftquadrant.glif + dnlighthorzheavybxd + dnlighthorzheavybxd.glif + dnlightleftheavybxd + dnlightleftheavybxd.glif + dnlightleftupheavybxd + dnlightleftupheavybxd.glif + dnlightrightheavybxd + dnlightrightheavybxd.glif + dnlightrightupheavybxd + dnlightrightupheavybxd.glif + dnlightuphorzheavybxd + dnlightuphorzheavybxd.glif + dnquarterblock + dnquarterblock.glif + dnrightquadrant + dnrightquadrant.glif + dnseveneighthsblock + dnseveneighthsblock.glif + dnsnghorzdblbxd + dnsnghorzdblbxd.glif + dnsngleftdblbxd + dnsngleftdblbxd.glif + dnsngrightdblbxd + dnsngrightdblbxd.glif + dnthreeeighthsblock + dnthreeeighthsblock.glif + dnthreequartersblock + dnthreequartersblock.glif dollar dollar.glif + dollar_greater.liga + dollar_greater.liga.glif dong dong.glif dotaccent @@ -738,12 +890,86 @@ eogonek.glif equal equal.glif + equal.end + equal.end.glif + equal.middle + equal.middle.glif + equal.start + equal.start.glif + equal_asciitilde.liga + equal_asciitilde.liga.glif + equal_bar.end + equal_bar.end.glif + equal_bar.liga + equal_bar.liga.glif + equal_bar_bar.end + equal_bar_bar.end.glif + equal_bar_bar.liga + equal_bar_bar.liga.glif + equal_bar_bar_equal.middle + equal_bar_bar_equal.middle.glif + equal_bar_equal.middle + equal_bar_equal.middle.glif + equal_colon_equal.middle + equal_colon_equal.middle.glif + equal_equal.liga + equal_equal.liga.glif + equal_equal_equal.liga + equal_equal_equal.liga.glif + equal_exclam_equal.middle + equal_exclam_equal.middle.glif + equal_greater.end + equal_greater.end.glif + equal_greater.liga + equal_greater.liga.glif + equal_greater_equal.middle + equal_greater_equal.middle.glif + equal_greater_greater.end + equal_greater_greater.end.glif + equal_greater_greater.liga + equal_greater_greater.liga.glif + equal_greater_greater_equal.m + equal_greater_greater_equal.m.glif + equal_less.end + equal_less.end.glif + equal_less.liga + equal_less.liga.glif + equal_less_equal.middle + equal_less_equal.middle.glif + equal_less_less.end + equal_less_less.end.glif + equal_less_less.liga + equal_less_less.liga.glif + equal_less_less_equal.middle + equal_less_less_equal.middle.glif + equal_slash.end + equal_slash.end.glif + equal_slash.liga + equal_slash.liga.glif + equal_slash_equal.middle + equal_slash_equal.middle.glif + equal_slash_slash.end + equal_slash_slash.end.glif + equal_slash_slash.liga + equal_slash_slash.liga.glif + equal_slash_slash_equal.middle + equal_slash_slash_equal.middle.glif eth eth.glif etilde etilde.glif exclam exclam.glif + exclam_asciitilde.liga + exclam_asciitilde.liga.glif + exclam_equal.liga + exclam_equal.liga.glif + exclam_equal_equal.liga + exclam_equal_equal.liga.glif + exclam_exclam.liga + exclam_exclam.liga.glif + exclam_exclam_period.liga + exclam_exclam_period.liga.glif exclamdown exclamdown.glif f @@ -778,6 +1004,8 @@ fracbar.glif fraction fraction.glif + fullblock + fullblock.glif g g.glif gbreve @@ -802,6 +1030,34 @@ gravecmb.cap.glif greater greater.glif + greater_colon.liga + greater_colon.liga.glif + greater_equal + greater_equal.glif + greater_equal.liga + greater_equal.liga.glif + greater_equal.start + greater_equal.start.glif + greater_equal_greater.liga + greater_equal_greater.liga.glif + greater_greater.liga + greater_greater.liga.glif + greater_greater_equal.liga + greater_greater_equal.liga.glif + greater_greater_equal.start + greater_greater_equal.start.glif + greater_greater_greater.liga + greater_greater_greater.liga.glif + greater_greater_hyphen.liga + greater_greater_hyphen.liga.glif + greater_greater_hyphen.start + greater_greater_hyphen.start.glif + greater_hyphen.liga + greater_hyphen.liga.glif + greater_hyphen.start + greater_hyphen.start.glif + greater_hyphen_greater.liga + greater_hyphen_greater.liga.glif greaterequal greaterequal.glif guillemetleft @@ -824,6 +1080,52 @@ hcircumflex.glif hdotbelow hdotbelow.glif + heavydbldashhorzbxd + heavydbldashhorzbxd.glif + heavydbldashvertbxd + heavydbldashvertbxd.glif + heavydnbxd + heavydnbxd.glif + heavydnhorzbxd + heavydnhorzbxd.glif + heavydnleftbxd + heavydnleftbxd.glif + heavydnrightbxd + heavydnrightbxd.glif + heavyhorzbxd + heavyhorzbxd.glif + heavyleftbxd + heavyleftbxd.glif + heavyleftlightrightbxd + heavyleftlightrightbxd.glif + heavyquaddashhorzbxd + heavyquaddashhorzbxd.glif + heavyquaddashvertbxd + heavyquaddashvertbxd.glif + heavyrightbxd + heavyrightbxd.glif + heavytrpldashhorzbxd + heavytrpldashhorzbxd.glif + heavytrpldashvertbxd + heavytrpldashvertbxd.glif + heavyupbxd + heavyupbxd.glif + heavyuphorzbxd + heavyuphorzbxd.glif + heavyupleftbxd + heavyupleftbxd.glif + heavyuplightdnbxd + heavyuplightdnbxd.glif + heavyuprightbxd + heavyuprightbxd.glif + heavyvertbxd + heavyvertbxd.glif + heavyverthorzbxd + heavyverthorzbxd.glif + heavyvertleftbxd + heavyvertleftbxd.glif + heavyvertrightbxd + heavyvertrightbxd.glif hlinebelow hlinebelow.glif hookcmb @@ -840,6 +1142,54 @@ hungarumlautcmb.cap.glif hyphen hyphen.glif + hyphen.end + hyphen.end.glif + hyphen.middle + hyphen.middle.glif + hyphen.start + hyphen.start.glif + hyphen_asciitilde.liga + hyphen_asciitilde.liga.glif + hyphen_bar.end + hyphen_bar.end.glif + hyphen_bar.liga + hyphen_bar.liga.glif + hyphen_bar_bar.end + hyphen_bar_bar.end.glif + hyphen_bar_bar.liga + hyphen_bar_bar.liga.glif + hyphen_bar_bar_hyphen.middle + hyphen_bar_bar_hyphen.middle.glif + hyphen_bar_hyphen.middle + hyphen_bar_hyphen.middle.glif + hyphen_greater.end + hyphen_greater.end.glif + hyphen_greater.liga + hyphen_greater.liga.glif + hyphen_greater_greater.end + hyphen_greater_greater.end.glif + hyphen_greater_greater.liga + hyphen_greater_greater.liga.glif + hyphen_greater_greater_hyphen.m + hyphen_greater_greater_hyphen.m.glif + hyphen_greater_hyphen.middle + hyphen_greater_hyphen.middle.glif + hyphen_hyphen.liga + hyphen_hyphen.liga.glif + hyphen_hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga.glif + hyphen_less.end + hyphen_less.end.glif + hyphen_less.liga + hyphen_less.liga.glif + hyphen_less_hyphen.middle + hyphen_less_hyphen.middle.glif + hyphen_less_less.end + hyphen_less_less.end.glif + hyphen_less_less.liga + hyphen_less_less.liga.glif + hyphen_less_less_hyphen.middle + hyphen_less_less_hyphen.middle.glif i i.glif iacute @@ -894,10 +1244,170 @@ lcommaaccent.glif ldotbelow ldotbelow.glif + leftdnheavyrightuplightbxd + leftdnheavyrightuplightbxd.glif + lefteighthblock + lefteighthblock.glif + leftfiveeighthsblock + leftfiveeighthsblock.glif + lefthalfblock + lefthalfblock.glif + leftheavyrightdnlightbxd + leftheavyrightdnlightbxd.glif + leftheavyrightuplightbxd + leftheavyrightuplightbxd.glif + leftheavyrightvertlightbxd + leftheavyrightvertlightbxd.glif + leftlightrightdnheavybxd + leftlightrightdnheavybxd.glif + leftlightrightupheavybxd + leftlightrightupheavybxd.glif + leftlightrightvertheavybxd + leftlightrightvertheavybxd.glif + leftquarterblock + leftquarterblock.glif + leftseveneighthsblock + leftseveneighthsblock.glif + leftthreeeighthsblock + leftthreeeighthsblock.glif + leftthreequartersblock + leftthreequartersblock.glif + leftupheavyrightdnlightbxd + leftupheavyrightdnlightbxd.glif less less.glif + less_asciitilde.liga + less_asciitilde.liga.glif + less_asciitilde_asciitilde.liga + less_asciitilde_asciitilde.liga.glif + less_asciitilde_greater.liga + less_asciitilde_greater.liga.glif + less_asterisk.liga + less_asterisk.liga.glif + less_asterisk_greater.liga + less_asterisk_greater.liga.glif + less_bar.liga + less_bar.liga.glif + less_bar_bar.liga + less_bar_bar.liga.glif + less_bar_bar_bar.liga + less_bar_bar_bar.liga.glif + less_bar_greater.liga + less_bar_greater.liga.glif + less_colon.liga + less_colon.liga.glif + less_dollar.liga + less_dollar.liga.glif + less_dollar_greater.liga + less_dollar_greater.liga.glif + less_equal + less_equal.glif + less_equal.liga + less_equal.liga.glif + less_equal.start + less_equal.start.glif + less_equal_greater.liga + less_equal_greater.liga.glif + less_equal_less.liga + less_equal_less.liga.glif + less_exclam_hyphen_hyphen.liga + less_exclam_hyphen_hyphen.liga.glif + less_greater.liga + less_greater.liga.glif + less_hyphen.liga + less_hyphen.liga.glif + less_hyphen.start + less_hyphen.start.glif + less_hyphen_greater.liga + less_hyphen_greater.liga.glif + less_hyphen_less.liga + less_hyphen_less.liga.glif + less_less.liga + less_less.liga.glif + less_less_equal.liga + less_less_equal.liga.glif + less_less_equal.start + less_less_equal.start.glif + less_less_hyphen.liga + less_less_hyphen.liga.glif + less_less_hyphen.start + less_less_hyphen.start.glif + less_less_less.liga + less_less_less.liga.glif + less_plus.liga + less_plus.liga.glif + less_plus_greater.liga + less_plus_greater.liga.glif + less_slash.liga + less_slash.liga.glif + less_slash_greater.liga + less_slash_greater.liga.glif lessequal lessequal.glif + lightarcdnleftbxd + lightarcdnleftbxd.glif + lightarcdnrightbxd + lightarcdnrightbxd.glif + lightarcupleftbxd + lightarcupleftbxd.glif + lightarcuprightbxd + lightarcuprightbxd.glif + lightdbldashhorzbxd + lightdbldashhorzbxd.glif + lightdbldashvertbxd + lightdbldashvertbxd.glif + lightdiagcrossbxd + lightdiagcrossbxd.glif + lightdiagupleftdnrightbxd + lightdiagupleftdnrightbxd.glif + lightdiaguprightdnleftbxd + lightdiaguprightdnleftbxd.glif + lightdnbxd + lightdnbxd.glif + lightdnhorzbxd + lightdnhorzbxd.glif + lightdnleftbxd + lightdnleftbxd.glif + lightdnrightbxd + lightdnrightbxd.glif + lighthorzbxd + lighthorzbxd.glif + lightleftbxd + lightleftbxd.glif + lightleftheavyrightbxd + lightleftheavyrightbxd.glif + lightquaddashhorzbxd + lightquaddashhorzbxd.glif + lightquaddashvertbxd + lightquaddashvertbxd.glif + lightrightbxd + lightrightbxd.glif + lightshade + lightshade.glif + lighttrpldashhorzbxd + lighttrpldashhorzbxd.glif + lighttrpldashvertbxd + lighttrpldashvertbxd.glif + lightupbxd + lightupbxd.glif + lightupheavydnbxd + lightupheavydnbxd.glif + lightuphorzbxd + lightuphorzbxd.glif + lightupleftbxd + lightupleftbxd.glif + lightuprightbxd + lightuprightbxd.glif + lightvertbxd + lightvertbxd.glif + lightverthorzbxd + lightverthorzbxd.glif + lightvertleftbxd + lightvertleftbxd.glif + lightvertrightbxd + lightvertrightbxd.glif + ligspacer + ligspacer.glif llinebelow llinebelow.glif lmacrondotbelow @@ -922,6 +1432,8 @@ mdotaccent.glif mdotbelow mdotbelow.glif + mediumshade + mediumshade.glif middotcat middotcat.glif middotcat.cap @@ -968,6 +1480,30 @@ ntilde.glif numbersign numbersign.glif + numbersign.end + numbersign.end.glif + numbersign.middle + numbersign.middle.glif + numbersign.start + numbersign.start.glif + numbersign_braceleft.liga + numbersign_braceleft.liga.glif + numbersign_bracketleft.liga + numbersign_bracketleft.liga.glif + numbersign_colon.liga + numbersign_colon.liga.glif + numbersign_equal.liga + numbersign_equal.liga.glif + numbersign_exclam.liga + numbersign_exclam.liga.glif + numbersign_parenleft.liga + numbersign_parenleft.liga.glif + numbersign_question.liga + numbersign_question.liga.glif + numbersign_underscore.liga + numbersign_underscore.liga.glif + numbersign_underscore_parenleft + numbersign_underscore_parenleft.glif o o.glif oacute @@ -1062,14 +1598,36 @@ parenright.glif percent percent.glif + percent_percent.liga + percent_percent.liga.glif period period.glif + period_equal.liga + period_equal.liga.glif + period_hyphen.liga + period_hyphen.liga.glif + period_period.liga + period_period.liga.glif + period_period_equal.liga + period_period_equal.liga.glif + period_period_less.liga + period_period_less.liga.glif + period_period_period.liga + period_period_period.liga.glif + period_question.liga + period_question.liga.glif periodcentered periodcentered.glif peso peso.glif plus plus.glif + plus_greater.liga + plus_greater.liga.glif + plus_plus.liga + plus_plus.liga.glif + plus_plus_plus.liga + plus_plus_plus.liga.glif plusminus plusminus.glif primemod @@ -1080,6 +1638,14 @@ q.glif question question.glif + question_colon.liga + question_colon.liga.glif + question_equal.liga + question_equal.liga.glif + question_period.liga + question_period.liga.glif + question_question.liga + question_question.liga.glif questiondown questiondown.glif quotedbl @@ -1112,6 +1678,26 @@ rdotbelow.glif registered registered.glif + rightdnheavyleftuplightbxd + rightdnheavyleftuplightbxd.glif + righteighthblock + righteighthblock.glif + righthalfblock + righthalfblock.glif + rightheavyleftdnlightbxd + rightheavyleftdnlightbxd.glif + rightheavyleftuplightbxd + rightheavyleftuplightbxd.glif + rightheavyleftvertlightbxd + rightheavyleftvertlightbxd.glif + rightlightleftdnheavybxd + rightlightleftdnheavybxd.glif + rightlightleftupheavybxd + rightlightleftupheavybxd.glif + rightlightleftvertheavybxd + rightlightleftvertheavybxd.glif + rightupheavyleftdnlightbxd + rightupheavyleftdnlightbxd.glif ring ring.glif ringcmb @@ -1146,6 +1732,8 @@ section.glif semicolon semicolon.glif + semicolon_semicolon.liga + semicolon_semicolon.liga.glif servicemark servicemark.glif seven @@ -1172,6 +1760,24 @@ six.sup.glif slash slash.glif + slash_asterisk.liga + slash_asterisk.liga.glif + slash_backslash.liga + slash_backslash.liga.glif + slash_equal.liga + slash_equal.liga.glif + slash_equal.start + slash_equal.start.glif + slash_greater.liga + slash_greater.liga.glif + slash_slash.liga + slash_slash.liga.glif + slash_slash_equal.liga + slash_slash_equal.liga.glif + slash_slash_equal.start + slash_slash_equal.start.glif + slash_slash_slash.liga + slash_slash_slash.liga.glif space space.glif sterling @@ -1278,6 +1884,14 @@ umacron.glif underscore underscore.glif + underscore.end + underscore.end.glif + underscore.middle + underscore.middle.glif + underscore.start + underscore.start.glif + underscore_bar_underscore.m + underscore_bar_underscore.m.glif uni00A0 uni00A_0.glif uni0326 @@ -1292,10 +1906,88 @@ uni20B_A_.glif uni20BD uni20B_D_.glif + uni2610 + uni2610.glif + uni2611 + uni2611.glif + uni2612 + uni2612.glif + uni2713 + uni2713.glif uniA788 uniA_788.glif + uniE0A0 + uniE_0A_0.glif + uniE0A1 + uniE_0A_1.glif + uniE0A2 + uniE_0A_2.glif + uniE0B0 + uniE_0B_0.glif + uniE0B1 + uniE_0B_1.glif + uniE0B2 + uniE_0B_2.glif + uniE0B3 + uniE_0B_3.glif uogonek uogonek.glif + updblhorzsngbxd + updblhorzsngbxd.glif + updblleftsngbxd + updblleftsngbxd.glif + updblrightsngbxd + updblrightsngbxd.glif + upeighthblock + upeighthblock.glif + uphalfblock + uphalfblock.glif + upheavydnhorzlightbxd + upheavydnhorzlightbxd.glif + upheavyhorzlightbxd + upheavyhorzlightbxd.glif + upheavyleftdnlightbxd + upheavyleftdnlightbxd.glif + upheavyleftlightbxd + upheavyleftlightbxd.glif + upheavyrightdnlightbxd + upheavyrightdnlightbxd.glif + upheavyrightlightbxd + upheavyrightlightbxd.glif + upleftdnleftdnrightquadrant + upleftdnleftdnrightquadrant.glif + upleftdnrightquadrant + upleftdnrightquadrant.glif + upleftquadrant + upleftquadrant.glif + upleftuprightdnleftquadrant + upleftuprightdnleftquadrant.glif + upleftuprightdnrightquadrant + upleftuprightdnrightquadrant.glif + uplightdnhorzheavybxd + uplightdnhorzheavybxd.glif + uplighthorzheavybxd + uplighthorzheavybxd.glif + uplightleftdnheavybxd + uplightleftdnheavybxd.glif + uplightleftheavybxd + uplightleftheavybxd.glif + uplightrightdnheavybxd + uplightrightdnheavybxd.glif + uplightrightheavybxd + uplightrightheavybxd.glif + uprightdnleftdnrightquadrant + uprightdnleftdnrightquadrant.glif + uprightdnleftquadrant + uprightdnleftquadrant.glif + uprightquadrant + uprightquadrant.glif + upsnghorzdblbxd + upsnghorzdblbxd.glif + upsngleftdblbxd + upsngleftdblbxd.glif + upsngrightdblbxd + upsngrightdblbxd.glif uring uring.glif utilde @@ -1304,12 +1996,38 @@ v.glif vdotbelow vdotbelow.glif + vertdblhorzsngbxd + vertdblhorzsngbxd.glif + vertdblleftsngbxd + vertdblleftsngbxd.glif + vertdblrightsngbxd + vertdblrightsngbxd.glif + vertheavyhorzlightbxd + vertheavyhorzlightbxd.glif + vertheavyleftlightbxd + vertheavyleftlightbxd.glif + vertheavyrightlightbxd + vertheavyrightlightbxd.glif verticallinelowmod verticallinelowmod.glif verticallinemod verticallinemod.glif + vertlighthorzheavybxd + vertlighthorzheavybxd.glif + vertlightleftheavybxd + vertlightleftheavybxd.glif + vertlightrightheavybxd + vertlightrightheavybxd.glif + vertsnghorzdblbxd + vertsnghorzdblbxd.glif + vertsngleftdblbxd + vertsngleftdblbxd.glif + vertsngrightdblbxd + vertsngrightdblbxd.glif w w.glif + w_w_w.liga + w_w_w.liga.glif wacute wacute.glif wcircumflex diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/darkshade.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/darkshade.glif new file mode 100644 index 00000000..fd2eb1c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/darkshade.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dbldnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dbldnhorzbxd.glif new file mode 100644 index 00000000..8502575d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dbldnhorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dbldnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dbldnleftbxd.glif new file mode 100644 index 00000000..7543dba2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dbldnleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dbldnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dbldnrightbxd.glif new file mode 100644 index 00000000..840b1c38 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dbldnrightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dblhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dblhorzbxd.glif new file mode 100644 index 00000000..29bb2483 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dblhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dbluphorzbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dbluphorzbxd.glif new file mode 100644 index 00000000..a346d1ef --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dbluphorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dblupleftbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dblupleftbxd.glif new file mode 100644 index 00000000..33af3598 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dblupleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dbluprightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dbluprightbxd.glif new file mode 100644 index 00000000..d65c524f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dbluprightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dblvertbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dblvertbxd.glif new file mode 100644 index 00000000..fe19cfa9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dblvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dblverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dblverthorzbxd.glif new file mode 100644 index 00000000..785f2580 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dblverthorzbxd.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dblvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dblvertleftbxd.glif new file mode 100644 index 00000000..82d4473b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dblvertleftbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dblvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dblvertrightbxd.glif new file mode 100644 index 00000000..dd8ab501 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dblvertrightbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dieresisbelowcmb.glif index 19834d4d..ed5af7da 100644 --- a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dieresisbelowcmb.glif +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dieresisbelowcmb.glif @@ -1,8 +1,6 @@ - - diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dndblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dndblhorzsngbxd.glif new file mode 100644 index 00000000..d27b4491 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dndblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dndblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dndblleftsngbxd.glif new file mode 100644 index 00000000..af5056e4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dndblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dndblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dndblrightsngbxd.glif new file mode 100644 index 00000000..d264d33a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dndblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dneighthblock.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dneighthblock.glif new file mode 100644 index 00000000..ff791c74 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dneighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnfiveeighthsblock.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnfiveeighthsblock.glif new file mode 100644 index 00000000..99bd1498 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnhalfblock.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnhalfblock.glif new file mode 100644 index 00000000..001cf3fb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnhalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnheavyhorzlightbxd.glif new file mode 100644 index 00000000..2d1fe590 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnheavyleftlightbxd.glif new file mode 100644 index 00000000..e2af396b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnheavyleftuplightbxd.glif new file mode 100644 index 00000000..cefb06ac --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnheavyrightlightbxd.glif new file mode 100644 index 00000000..d93be5c0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnheavyrightuplightbxd.glif new file mode 100644 index 00000000..6b965fa8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnheavyuphorzlightbxd.glif new file mode 100644 index 00000000..12db5f8c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnheavyuphorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnleftquadrant.glif new file mode 100644 index 00000000..42729338 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnlighthorzheavybxd.glif new file mode 100644 index 00000000..f978d416 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnlighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnlightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnlightleftheavybxd.glif new file mode 100644 index 00000000..862af40f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnlightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnlightleftupheavybxd.glif new file mode 100644 index 00000000..01b6ba1c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnlightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnlightrightheavybxd.glif new file mode 100644 index 00000000..d1c12ce6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnlightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnlightrightupheavybxd.glif new file mode 100644 index 00000000..f4a275f0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnlightuphorzheavybxd.glif new file mode 100644 index 00000000..81bd0d40 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnlightuphorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnquarterblock.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnquarterblock.glif new file mode 100644 index 00000000..c2180b50 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnrightquadrant.glif new file mode 100644 index 00000000..9858382e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnrightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnseveneighthsblock.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnseveneighthsblock.glif new file mode 100644 index 00000000..ecdac3da --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnsnghorzdblbxd.glif new file mode 100644 index 00000000..e5da9b8c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnsngleftdblbxd.glif new file mode 100644 index 00000000..607a54eb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnsngrightdblbxd.glif new file mode 100644 index 00000000..7b168004 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnthreeeighthsblock.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnthreeeighthsblock.glif new file mode 100644 index 00000000..7febe2aa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnthreequartersblock.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnthreequartersblock.glif new file mode 100644 index 00000000..a79dae14 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dnthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dollar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dollar_greater.liga.glif new file mode 100644 index 00000000..ccbd5656 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/dollar_greater.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal.end.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal.end.glif new file mode 100644 index 00000000..d87dda78 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal.middle.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal.middle.glif new file mode 100644 index 00000000..21f91fad --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal.start.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal.start.glif new file mode 100644 index 00000000..e538d777 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_asciitilde.liga.glif new file mode 100644 index 00000000..75cb8eb3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_asciitilde.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_bar.end.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_bar.end.glif new file mode 100644 index 00000000..6d25b721 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_bar.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_bar.liga.glif new file mode 100644 index 00000000..526a13f9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_bar.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_bar_bar.end.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_bar_bar.end.glif new file mode 100644 index 00000000..c9f989f5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_bar_bar.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_bar_bar.liga.glif new file mode 100644 index 00000000..f8a829ce --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_bar_bar.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_bar_bar_equal.middle.glif new file mode 100644 index 00000000..6696f93e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_bar_bar_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_bar_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_bar_equal.middle.glif new file mode 100644 index 00000000..a5368ee8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_bar_equal.middle.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_colon_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_colon_equal.middle.glif new file mode 100644 index 00000000..5dde9eb6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_colon_equal.middle.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_equal.liga.glif new file mode 100644 index 00000000..bf65a4a6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_equal.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_equal_equal.liga.glif new file mode 100644 index 00000000..05bab797 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_equal_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_exclam_equal.middle.glif new file mode 100644 index 00000000..f65e1b34 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_exclam_equal.middle.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_greater.end.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_greater.end.glif new file mode 100644 index 00000000..8463d9b9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_greater.end.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_greater.liga.glif new file mode 100644 index 00000000..c0df8339 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_greater_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_greater_equal.middle.glif new file mode 100644 index 00000000..0442338e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_greater_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_greater_greater.end.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_greater_greater.end.glif new file mode 100644 index 00000000..9ee3a3cf --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_greater_greater.end.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_greater_greater.liga.glif new file mode 100644 index 00000000..18106293 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_greater_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_greater_greater_equal.m.glif new file mode 100644 index 00000000..c9e2d54c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_greater_greater_equal.m.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_less.end.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_less.end.glif new file mode 100644 index 00000000..93a57e77 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_less.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_less.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_less.liga.glif new file mode 100644 index 00000000..7151471c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_less.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_less_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_less_equal.middle.glif new file mode 100644 index 00000000..98e14b32 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_less_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_less_less.end.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_less_less.end.glif new file mode 100644 index 00000000..61982a3b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_less_less.end.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_less_less.liga.glif new file mode 100644 index 00000000..596026d4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_less_less.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_less_less_equal.middle.glif new file mode 100644 index 00000000..965c85a6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_less_less_equal.middle.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_slash.end.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_slash.end.glif new file mode 100644 index 00000000..3d0a3298 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_slash.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_slash.liga.glif new file mode 100644 index 00000000..2dfb30d2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_slash.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_slash_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_slash_equal.middle.glif new file mode 100644 index 00000000..8c3c5fa1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_slash_equal.middle.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_slash_slash.end.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_slash_slash.end.glif new file mode 100644 index 00000000..5c42868c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_slash_slash.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_slash_slash.liga.glif new file mode 100644 index 00000000..9d87cf6a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_slash_slash.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_slash_slash_equal.middle.glif new file mode 100644 index 00000000..a6ae26e7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/equal_slash_slash_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/exclam_asciitilde.liga.glif new file mode 100644 index 00000000..2c5d54be --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/exclam_asciitilde.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/exclam_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/exclam_equal.liga.glif new file mode 100644 index 00000000..cc5aed56 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/exclam_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/exclam_equal_equal.liga.glif new file mode 100644 index 00000000..ac1f5708 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/exclam_equal_equal.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/exclam_exclam.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/exclam_exclam.liga.glif new file mode 100644 index 00000000..30253af4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/exclam_exclam.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/exclam_exclam_period.liga.glif new file mode 100644 index 00000000..3b95834d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/exclam_exclam_period.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/fullblock.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/fullblock.glif new file mode 100644 index 00000000..2c547d1b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/fullblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_colon.liga.glif new file mode 100644 index 00000000..dddd8c1c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_equal.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_equal.glif new file mode 100644 index 00000000..57c8ee84 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_equal.liga.glif new file mode 100644 index 00000000..3f4f411c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_equal.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_equal.start.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_equal.start.glif new file mode 100644 index 00000000..3ec33317 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_equal.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_equal_greater.liga.glif new file mode 100644 index 00000000..1490208f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_equal_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_greater.liga.glif new file mode 100644 index 00000000..30cb8c50 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_greater_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_greater_equal.liga.glif new file mode 100644 index 00000000..359e3dd9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_greater_equal.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_greater_equal.start.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_greater_equal.start.glif new file mode 100644 index 00000000..8f073962 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_greater_equal.start.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_greater_greater.liga.glif new file mode 100644 index 00000000..14ba7366 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_greater_greater.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_greater_hyphen.liga.glif new file mode 100644 index 00000000..d41a4b3d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_greater_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_greater_hyphen.start.glif new file mode 100644 index 00000000..77a5eb14 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_greater_hyphen.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_hyphen.liga.glif new file mode 100644 index 00000000..f762cf00 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_hyphen.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_hyphen.start.glif new file mode 100644 index 00000000..fd38c37f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_hyphen.start.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_hyphen_greater.liga.glif new file mode 100644 index 00000000..d9468298 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/greater_hyphen_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavydbldashhorzbxd.glif new file mode 100644 index 00000000..c6d7708b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavydbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavydbldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavydbldashvertbxd.glif new file mode 100644 index 00000000..65b72b4e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavydbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavydnbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavydnbxd.glif new file mode 100644 index 00000000..55ebe382 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavydnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavydnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavydnhorzbxd.glif new file mode 100644 index 00000000..f1f24257 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavydnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavydnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavydnleftbxd.glif new file mode 100644 index 00000000..5b12d9bd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavydnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavydnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavydnrightbxd.glif new file mode 100644 index 00000000..11696dcc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavydnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyhorzbxd.glif new file mode 100644 index 00000000..e0367e4e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyhorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyleftbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyleftbxd.glif new file mode 100644 index 00000000..0f6de015 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyleftlightrightbxd.glif new file mode 100644 index 00000000..73e6885e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyleftlightrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyquaddashhorzbxd.glif new file mode 100644 index 00000000..42e55de1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyquaddashvertbxd.glif new file mode 100644 index 00000000..c45da1b6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyrightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyrightbxd.glif new file mode 100644 index 00000000..c10df1f4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavytrpldashhorzbxd.glif new file mode 100644 index 00000000..102309a3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavytrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavytrpldashvertbxd.glif new file mode 100644 index 00000000..3bfc4500 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavytrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyupbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyupbxd.glif new file mode 100644 index 00000000..707761f4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyuphorzbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyuphorzbxd.glif new file mode 100644 index 00000000..af2a7597 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyupleftbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyupleftbxd.glif new file mode 100644 index 00000000..d551278d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyuplightdnbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyuplightdnbxd.glif new file mode 100644 index 00000000..fc0d4b8d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyuplightdnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyuprightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyuprightbxd.glif new file mode 100644 index 00000000..d5335444 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyvertbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyvertbxd.glif new file mode 100644 index 00000000..e7b6f548 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyverthorzbxd.glif new file mode 100644 index 00000000..53fdd49f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyvertleftbxd.glif new file mode 100644 index 00000000..2376c0fa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyvertrightbxd.glif new file mode 100644 index 00000000..87236f5f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/heavyvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen.end.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen.end.glif new file mode 100644 index 00000000..330d37f9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen.middle.glif new file mode 100644 index 00000000..ffffe70e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen.start.glif new file mode 100644 index 00000000..16f29d53 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_asciitilde.liga.glif new file mode 100644 index 00000000..5049adc4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_asciitilde.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_bar.end.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_bar.end.glif new file mode 100644 index 00000000..6d1119a3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_bar.end.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_bar.liga.glif new file mode 100644 index 00000000..fef66f4c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_bar.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_bar.end.glif new file mode 100644 index 00000000..52d5ad34 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_bar.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_bar.liga.glif new file mode 100644 index 00000000..e58dc72c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif new file mode 100644 index 00000000..705270aa --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_hyphen.middle.glif new file mode 100644 index 00000000..71a83c98 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_greater.end.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_greater.end.glif new file mode 100644 index 00000000..3f3d3bae --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_greater.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_greater.liga.glif new file mode 100644 index 00000000..ccf61948 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_greater.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_greater.end.glif new file mode 100644 index 00000000..553d2b69 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_greater.end.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_greater.liga.glif new file mode 100644 index 00000000..a08253d5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif new file mode 100644 index 00000000..6f2f74bc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_hyphen.middle.glif new file mode 100644 index 00000000..986bf14a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_hyphen.liga.glif new file mode 100644 index 00000000..6f8fac00 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_hyphen.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..7c9168ee --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_less.end.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_less.end.glif new file mode 100644 index 00000000..d8fd14a9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_less.end.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_less.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_less.liga.glif new file mode 100644 index 00000000..c1ef2cdc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_less.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_less_hyphen.middle.glif new file mode 100644 index 00000000..ef359fe6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_less_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_less_less.end.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_less_less.end.glif new file mode 100644 index 00000000..f55ec55c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_less_less.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_less_less.liga.glif new file mode 100644 index 00000000..d760f2b6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_less_less.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_less_less_hyphen.middle.glif new file mode 100644 index 00000000..df74b5f7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/hyphen_less_less_hyphen.middle.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftdnheavyrightuplightbxd.glif new file mode 100644 index 00000000..f9a33a5a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftdnheavyrightuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lefteighthblock.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lefteighthblock.glif new file mode 100644 index 00000000..8d44dad4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lefteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftfiveeighthsblock.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftfiveeighthsblock.glif new file mode 100644 index 00000000..0eb9ccfc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lefthalfblock.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lefthalfblock.glif new file mode 100644 index 00000000..325c05f6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lefthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftheavyrightdnlightbxd.glif new file mode 100644 index 00000000..cd8979a4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftheavyrightuplightbxd.glif new file mode 100644 index 00000000..d19973b0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftheavyrightvertlightbxd.glif new file mode 100644 index 00000000..8e3b0cfe --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftheavyrightvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftlightrightdnheavybxd.glif new file mode 100644 index 00000000..d6fdf394 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftlightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftlightrightupheavybxd.glif new file mode 100644 index 00000000..54059e00 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftlightrightvertheavybxd.glif new file mode 100644 index 00000000..dd3c789c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftlightrightvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftquarterblock.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftquarterblock.glif new file mode 100644 index 00000000..036dad83 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftseveneighthsblock.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftseveneighthsblock.glif new file mode 100644 index 00000000..74b69747 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftthreeeighthsblock.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftthreeeighthsblock.glif new file mode 100644 index 00000000..e5c4283a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftthreequartersblock.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftthreequartersblock.glif new file mode 100644 index 00000000..5ae5b2e3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftupheavyrightdnlightbxd.glif new file mode 100644 index 00000000..fbdabb62 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/leftupheavyrightdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_asciitilde.liga.glif new file mode 100644 index 00000000..8f3373da --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_asciitilde.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..962d7960 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_asciitilde_asciitilde.liga.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_asciitilde_greater.liga.glif new file mode 100644 index 00000000..b596e22a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_asciitilde_greater.liga.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_asterisk.liga.glif new file mode 100644 index 00000000..d6e5dab0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_asterisk.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_asterisk_greater.liga.glif new file mode 100644 index 00000000..676d2fb0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_asterisk_greater.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_bar.liga.glif new file mode 100644 index 00000000..a2ebc0d2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_bar.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_bar_bar.liga.glif new file mode 100644 index 00000000..880f1777 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_bar_bar.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_bar_bar_bar.liga.glif new file mode 100644 index 00000000..d9c88c9c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_bar_bar_bar.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_bar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_bar_greater.liga.glif new file mode 100644 index 00000000..bb941a94 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_bar_greater.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_colon.liga.glif new file mode 100644 index 00000000..ed5b2f90 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_dollar.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_dollar.liga.glif new file mode 100644 index 00000000..cd4f3b00 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_dollar.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_dollar_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_dollar_greater.liga.glif new file mode 100644 index 00000000..52abea6e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_dollar_greater.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_equal.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_equal.glif new file mode 100644 index 00000000..7631b2c8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_equal.liga.glif new file mode 100644 index 00000000..8e85db10 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_equal.start.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_equal.start.glif new file mode 100644 index 00000000..8fe306db --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_equal.start.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_equal_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_equal_greater.liga.glif new file mode 100644 index 00000000..009384fb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_equal_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_equal_less.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_equal_less.liga.glif new file mode 100644 index 00000000..e1d1e519 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_equal_less.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..72cf7c3c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_greater.liga.glif new file mode 100644 index 00000000..6a07f400 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_greater.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_hyphen.liga.glif new file mode 100644 index 00000000..27cbc09c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_hyphen.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_hyphen.start.glif new file mode 100644 index 00000000..f18a35ca --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_hyphen.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_hyphen_greater.liga.glif new file mode 100644 index 00000000..33e8066b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_hyphen_greater.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_hyphen_less.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_hyphen_less.liga.glif new file mode 100644 index 00000000..34278973 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_hyphen_less.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_less.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_less.liga.glif new file mode 100644 index 00000000..6300f366 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_less.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_less_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_less_equal.liga.glif new file mode 100644 index 00000000..7743389b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_less_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_less_equal.start.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_less_equal.start.glif new file mode 100644 index 00000000..f31c6de9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_less_equal.start.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_less_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_less_hyphen.liga.glif new file mode 100644 index 00000000..3615edeb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_less_hyphen.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_less_hyphen.start.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_less_hyphen.start.glif new file mode 100644 index 00000000..91b500d2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_less_hyphen.start.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_less_less.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_less_less.liga.glif new file mode 100644 index 00000000..7575de66 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_less_less.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_plus.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_plus.liga.glif new file mode 100644 index 00000000..b87cbd2c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_plus.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_plus_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_plus_greater.liga.glif new file mode 100644 index 00000000..1af7fd70 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_plus_greater.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_slash.liga.glif new file mode 100644 index 00000000..5b524862 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_slash.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_slash_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_slash_greater.liga.glif new file mode 100644 index 00000000..5c6fd9fb --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/less_slash_greater.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightarcdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightarcdnleftbxd.glif new file mode 100644 index 00000000..2aed0533 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightarcdnleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightarcdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightarcdnrightbxd.glif new file mode 100644 index 00000000..dd7e92d6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightarcdnrightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightarcupleftbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightarcupleftbxd.glif new file mode 100644 index 00000000..78721318 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightarcupleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightarcuprightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightarcuprightbxd.glif new file mode 100644 index 00000000..2888ca21 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightarcuprightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdbldashhorzbxd.glif new file mode 100644 index 00000000..57aa6481 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdbldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdbldashvertbxd.glif new file mode 100644 index 00000000..c64a3964 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdiagcrossbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdiagcrossbxd.glif new file mode 100644 index 00000000..8e7f9637 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdiagcrossbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdiagupleftdnrightbxd.glif new file mode 100644 index 00000000..da9d64ef --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdiagupleftdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdiaguprightdnleftbxd.glif new file mode 100644 index 00000000..f1a0e62e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdiaguprightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdnbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdnbxd.glif new file mode 100644 index 00000000..c761f349 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdnhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdnhorzbxd.glif new file mode 100644 index 00000000..e93b70c2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdnleftbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdnleftbxd.glif new file mode 100644 index 00000000..cf64c416 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdnrightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdnrightbxd.glif new file mode 100644 index 00000000..958e2b6c --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lighthorzbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lighthorzbxd.glif new file mode 100644 index 00000000..9da8ba0b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lighthorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightleftbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightleftbxd.glif new file mode 100644 index 00000000..4dd0d94d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightleftheavyrightbxd.glif new file mode 100644 index 00000000..66b0103f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightleftheavyrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightquaddashhorzbxd.glif new file mode 100644 index 00000000..f15d9e80 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightquaddashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightquaddashvertbxd.glif new file mode 100644 index 00000000..daf62d82 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightrightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightrightbxd.glif new file mode 100644 index 00000000..2cdf0919 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightshade.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightshade.glif new file mode 100644 index 00000000..156f38e4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightshade.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lighttrpldashhorzbxd.glif new file mode 100644 index 00000000..2e5dc3ca --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lighttrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lighttrpldashvertbxd.glif new file mode 100644 index 00000000..dd7195dc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lighttrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightupbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightupbxd.glif new file mode 100644 index 00000000..69c496ba --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightupheavydnbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightupheavydnbxd.glif new file mode 100644 index 00000000..7d5dd61d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightupheavydnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightuphorzbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightuphorzbxd.glif new file mode 100644 index 00000000..617e6c1f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightupleftbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightupleftbxd.glif new file mode 100644 index 00000000..c054c293 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightuprightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightuprightbxd.glif new file mode 100644 index 00000000..9ed787de --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightvertbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightvertbxd.glif new file mode 100644 index 00000000..10975f92 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightverthorzbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightverthorzbxd.glif new file mode 100644 index 00000000..f12cbfc6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightvertleftbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightvertleftbxd.glif new file mode 100644 index 00000000..84187942 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightvertrightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightvertrightbxd.glif new file mode 100644 index 00000000..952ab37f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/lightvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/ligspacer.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/ligspacer.glif new file mode 100644 index 00000000..a706de7e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/ligspacer.glif @@ -0,0 +1,13 @@ + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/mediumshade.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/mediumshade.glif new file mode 100644 index 00000000..4e438ef8 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/mediumshade.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign.end.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign.end.glif new file mode 100644 index 00000000..eef3f114 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign.end.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign.middle.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign.middle.glif new file mode 100644 index 00000000..4b5d8e84 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign.start.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign.start.glif new file mode 100644 index 00000000..06dd6322 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign.start.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_braceleft.liga.glif new file mode 100644 index 00000000..aa8a08b3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_braceleft.liga.glif @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_bracketleft.liga.glif new file mode 100644 index 00000000..ca4f53ac --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_bracketleft.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_colon.liga.glif new file mode 100644 index 00000000..6cafe710 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_colon.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_equal.liga.glif new file mode 100644 index 00000000..720d09d9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_equal.liga.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_exclam.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_exclam.liga.glif new file mode 100644 index 00000000..bfbde264 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_exclam.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_parenleft.liga.glif new file mode 100644 index 00000000..ebc88f1f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_parenleft.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_question.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_question.liga.glif new file mode 100644 index 00000000..627c38a4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_question.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_underscore.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_underscore.liga.glif new file mode 100644 index 00000000..20eb8797 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_underscore.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_underscore_parenleft.glif new file mode 100644 index 00000000..a55cd564 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/numbersign_underscore_parenleft.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/percent_percent.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/percent_percent.liga.glif new file mode 100644 index 00000000..a698ef92 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/percent_percent.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_equal.liga.glif new file mode 100644 index 00000000..a0921655 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_hyphen.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_hyphen.liga.glif new file mode 100644 index 00000000..6a77bdcd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_period.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_period.liga.glif new file mode 100644 index 00000000..df885b62 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_period.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_period_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_period_equal.liga.glif new file mode 100644 index 00000000..272858a2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_period_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_period_less.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_period_less.liga.glif new file mode 100644 index 00000000..dd7c38b5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_period_less.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_period_period.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_period_period.liga.glif new file mode 100644 index 00000000..d5f6d1b7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_period_period.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_question.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_question.liga.glif new file mode 100644 index 00000000..534e22fd --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/period_question.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/plus_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/plus_greater.liga.glif new file mode 100644 index 00000000..448f5231 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/plus_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/plus_plus.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/plus_plus.liga.glif new file mode 100644 index 00000000..34d3cc5d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/plus_plus.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/plus_plus_plus.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/plus_plus_plus.liga.glif new file mode 100644 index 00000000..d1e80101 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/plus_plus_plus.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/question_colon.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/question_colon.liga.glif new file mode 100644 index 00000000..0d44403e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/question_colon.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/question_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/question_equal.liga.glif new file mode 100644 index 00000000..0b74ad35 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/question_equal.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/question_period.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/question_period.liga.glif new file mode 100644 index 00000000..ec760cd5 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/question_period.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/question_question.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/question_question.liga.glif new file mode 100644 index 00000000..6f9ee81d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/question_question.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightdnheavyleftuplightbxd.glif new file mode 100644 index 00000000..dfeefee1 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightdnheavyleftuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/righteighthblock.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/righteighthblock.glif new file mode 100644 index 00000000..9d954a40 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/righteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/righthalfblock.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/righthalfblock.glif new file mode 100644 index 00000000..7d4f8cef --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/righthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightheavyleftdnlightbxd.glif new file mode 100644 index 00000000..b81ffacc --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightheavyleftuplightbxd.glif new file mode 100644 index 00000000..2114074f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightheavyleftvertlightbxd.glif new file mode 100644 index 00000000..6905b12d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightheavyleftvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightlightleftdnheavybxd.glif new file mode 100644 index 00000000..b54477ce --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightlightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightlightleftupheavybxd.glif new file mode 100644 index 00000000..124a2166 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightlightleftvertheavybxd.glif new file mode 100644 index 00000000..a3bdd289 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightlightleftvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightupheavyleftdnlightbxd.glif new file mode 100644 index 00000000..acdeea29 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/rightupheavyleftdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/semicolon_semicolon.liga.glif new file mode 100644 index 00000000..c14d7463 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/semicolon_semicolon.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_asterisk.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_asterisk.liga.glif new file mode 100644 index 00000000..9ca9d534 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_asterisk.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_backslash.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_backslash.liga.glif new file mode 100644 index 00000000..9bd58338 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_backslash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_equal.liga.glif new file mode 100644 index 00000000..87b982d4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_equal.start.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_equal.start.glif new file mode 100644 index 00000000..2d48154e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_greater.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_greater.liga.glif new file mode 100644 index 00000000..d9f0f824 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_slash.liga.glif new file mode 100644 index 00000000..f3f2b730 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_slash.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_slash_equal.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_slash_equal.liga.glif new file mode 100644 index 00000000..4f776b6d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_slash_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_slash_equal.start.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_slash_equal.start.glif new file mode 100644 index 00000000..28bb6bec --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_slash_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_slash_slash.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_slash_slash.liga.glif new file mode 100644 index 00000000..2da5cfa3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/slash_slash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/underscore.end.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/underscore.end.glif new file mode 100644 index 00000000..30055604 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/underscore.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/underscore.middle.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/underscore.middle.glif new file mode 100644 index 00000000..0faecc15 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/underscore.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/underscore.start.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/underscore.start.glif new file mode 100644 index 00000000..1f0124c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/underscore.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/underscore_bar_underscore.m.glif new file mode 100644 index 00000000..a21e3d8d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/underscore_bar_underscore.m.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uni2610.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uni2610.glif new file mode 100644 index 00000000..e06b7e93 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uni2610.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uni2611.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uni2611.glif new file mode 100644 index 00000000..879b714a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uni2611.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uni2612.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uni2612.glif new file mode 100644 index 00000000..a7f61eb2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uni2612.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uni2713.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uni2713.glif new file mode 100644 index 00000000..9ec5b6d3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uni2713.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0A_0.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0A_0.glif new file mode 100644 index 00000000..d4a9b7f9 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0A_0.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0A_1.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0A_1.glif new file mode 100644 index 00000000..1d1ed57e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0A_1.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0A_2.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0A_2.glif new file mode 100644 index 00000000..63bf0901 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0A_2.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0B_0.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0B_0.glif new file mode 100644 index 00000000..94854e00 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0B_0.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0B_1.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0B_1.glif new file mode 100644 index 00000000..18c410ae --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0B_1.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0B_2.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0B_2.glif new file mode 100644 index 00000000..b894df86 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0B_2.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0B_3.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0B_3.glif new file mode 100644 index 00000000..d6132ca2 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uniE_0B_3.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/updblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/updblhorzsngbxd.glif new file mode 100644 index 00000000..34ab7f3e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/updblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/updblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/updblleftsngbxd.glif new file mode 100644 index 00000000..d8160159 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/updblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/updblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/updblrightsngbxd.glif new file mode 100644 index 00000000..51b8970a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/updblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upeighthblock.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upeighthblock.glif new file mode 100644 index 00000000..87701940 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upeighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uphalfblock.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uphalfblock.glif new file mode 100644 index 00000000..018ed615 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uphalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upheavydnhorzlightbxd.glif new file mode 100644 index 00000000..d60f37d0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upheavydnhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upheavyhorzlightbxd.glif new file mode 100644 index 00000000..8a58aae7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upheavyleftdnlightbxd.glif new file mode 100644 index 00000000..6f56e67d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upheavyleftlightbxd.glif new file mode 100644 index 00000000..e9e2c2c4 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upheavyrightdnlightbxd.glif new file mode 100644 index 00000000..071d1e39 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upheavyrightlightbxd.glif new file mode 100644 index 00000000..d7dce54a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upleftdnleftdnrightquadrant.glif new file mode 100644 index 00000000..91309b79 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upleftdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upleftdnrightquadrant.glif new file mode 100644 index 00000000..9bb17821 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upleftdnrightquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upleftquadrant.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upleftquadrant.glif new file mode 100644 index 00000000..ef21c49d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upleftuprightdnleftquadrant.glif new file mode 100644 index 00000000..0d5294c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upleftuprightdnleftquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upleftuprightdnrightquadrant.glif new file mode 100644 index 00000000..56cf6e14 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upleftuprightdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uplightdnhorzheavybxd.glif new file mode 100644 index 00000000..b9ec0e3b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uplightdnhorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uplighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uplighthorzheavybxd.glif new file mode 100644 index 00000000..c712f7a0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uplighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uplightleftdnheavybxd.glif new file mode 100644 index 00000000..81578c73 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uplightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uplightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uplightleftheavybxd.glif new file mode 100644 index 00000000..b045bd0a --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uplightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uplightrightdnheavybxd.glif new file mode 100644 index 00000000..427fd591 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uplightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uplightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uplightrightheavybxd.glif new file mode 100644 index 00000000..b70f3c25 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uplightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uprightdnleftdnrightquadrant.glif new file mode 100644 index 00000000..df5a022e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uprightdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uprightdnleftquadrant.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uprightdnleftquadrant.glif new file mode 100644 index 00000000..93cbe757 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uprightdnleftquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uprightquadrant.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uprightquadrant.glif new file mode 100644 index 00000000..de8b454f --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/uprightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upsnghorzdblbxd.glif new file mode 100644 index 00000000..5065c752 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upsngleftdblbxd.glif new file mode 100644 index 00000000..ee0cd26b --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upsngrightdblbxd.glif new file mode 100644 index 00000000..776d328d --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/upsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertdblhorzsngbxd.glif new file mode 100644 index 00000000..e08f69c6 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertdblhorzsngbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertdblleftsngbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertdblleftsngbxd.glif new file mode 100644 index 00000000..17c9d927 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertdblleftsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertdblrightsngbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertdblrightsngbxd.glif new file mode 100644 index 00000000..b45d79b3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertdblrightsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertheavyhorzlightbxd.glif new file mode 100644 index 00000000..06413495 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertheavyhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertheavyleftlightbxd.glif new file mode 100644 index 00000000..1c81bdad --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertheavyleftlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertheavyrightlightbxd.glif new file mode 100644 index 00000000..61c97480 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertheavyrightlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertlighthorzheavybxd.glif new file mode 100644 index 00000000..44d942a7 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertlighthorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertlightleftheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertlightleftheavybxd.glif new file mode 100644 index 00000000..2d9792c0 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertlightleftheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertlightrightheavybxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertlightrightheavybxd.glif new file mode 100644 index 00000000..111b19ed --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertlightrightheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertsnghorzdblbxd.glif new file mode 100644 index 00000000..3e97304e --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertsnghorzdblbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertsngleftdblbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertsngleftdblbxd.glif new file mode 100644 index 00000000..935d0336 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertsngleftdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertsngrightdblbxd.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertsngrightdblbxd.glif new file mode 100644 index 00000000..4fc34453 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/vertsngrightdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/w_w_w.liga.glif b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/w_w_w.liga.glif new file mode 100644 index 00000000..d12509a3 --- /dev/null +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/glyphs/w_w_w.liga.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/postscript/IntelOneMono-Regular.ufo/lib.plist b/sources/instances/postscript/IntelOneMono-Regular.ufo/lib.plist index 047cc547..eabdd4b6 100644 --- a/sources/instances/postscript/IntelOneMono-Regular.ufo/lib.plist +++ b/sources/instances/postscript/IntelOneMono-Regular.ufo/lib.plist @@ -2,6 +2,17 @@ + com.defcon.sortDescriptor + + + allowPseudoUnicode + 0 + ascending + Intel Mono 1.4 + type + characterSet + + com.typemytype.robofont.compileSettings.MacRomanFirst com.typemytype.robofont.compileSettings.autohint @@ -710,6 +721,365 @@ circumflexgrave.cap circumflexhook.cap circumflextilde.cap + lighthorzbxd + heavyhorzbxd + lightvertbxd + heavyvertbxd + lighttrpldashhorzbxd + heavytrpldashhorzbxd + lighttrpldashvertbxd + heavytrpldashvertbxd + lightquaddashhorzbxd + heavyquaddashhorzbxd + lightquaddashvertbxd + heavyquaddashvertbxd + lightdnrightbxd + dnlightrightheavybxd + dnheavyrightlightbxd + heavydnrightbxd + lightdnleftbxd + dnlightleftheavybxd + dnheavyleftlightbxd + heavydnleftbxd + lightuprightbxd + uplightrightheavybxd + upheavyrightlightbxd + heavyuprightbxd + lightupleftbxd + uplightleftheavybxd + upheavyleftlightbxd + heavyupleftbxd + lightvertrightbxd + vertlightrightheavybxd + upheavyrightdnlightbxd + dnheavyrightuplightbxd + vertheavyrightlightbxd + dnlightrightupheavybxd + uplightrightdnheavybxd + heavyvertrightbxd + lightvertleftbxd + vertlightleftheavybxd + upheavyleftdnlightbxd + dnheavyleftuplightbxd + vertheavyleftlightbxd + dnlightleftupheavybxd + uplightleftdnheavybxd + heavyvertleftbxd + lightdnhorzbxd + leftheavyrightdnlightbxd + rightheavyleftdnlightbxd + dnlighthorzheavybxd + dnheavyhorzlightbxd + rightlightleftdnheavybxd + leftlightrightdnheavybxd + heavydnhorzbxd + lightuphorzbxd + leftheavyrightuplightbxd + rightheavyleftuplightbxd + uplighthorzheavybxd + upheavyhorzlightbxd + rightlightleftupheavybxd + leftlightrightupheavybxd + heavyuphorzbxd + lightverthorzbxd + leftheavyrightvertlightbxd + rightheavyleftvertlightbxd + vertlighthorzheavybxd + upheavydnhorzlightbxd + dnheavyuphorzlightbxd + vertheavyhorzlightbxd + leftupheavyrightdnlightbxd + rightupheavyleftdnlightbxd + leftdnheavyrightuplightbxd + rightdnheavyleftuplightbxd + dnlightuphorzheavybxd + uplightdnhorzheavybxd + rightlightleftvertheavybxd + leftlightrightvertheavybxd + heavyverthorzbxd + lightdbldashhorzbxd + heavydbldashhorzbxd + lightdbldashvertbxd + heavydbldashvertbxd + dblhorzbxd + dblvertbxd + dnsngrightdblbxd + dndblrightsngbxd + dbldnrightbxd + dnsngleftdblbxd + dndblleftsngbxd + dbldnleftbxd + upsngrightdblbxd + updblrightsngbxd + dbluprightbxd + upsngleftdblbxd + updblleftsngbxd + dblupleftbxd + vertsngrightdblbxd + vertdblrightsngbxd + dblvertrightbxd + vertsngleftdblbxd + vertdblleftsngbxd + dblvertleftbxd + dnsnghorzdblbxd + dndblhorzsngbxd + dbldnhorzbxd + upsnghorzdblbxd + updblhorzsngbxd + dbluphorzbxd + vertsnghorzdblbxd + vertdblhorzsngbxd + dblverthorzbxd + lightarcdnrightbxd + lightarcdnleftbxd + lightarcupleftbxd + lightarcuprightbxd + lightdiaguprightdnleftbxd + lightdiagupleftdnrightbxd + lightdiagcrossbxd + lightleftbxd + lightupbxd + lightrightbxd + lightdnbxd + heavyleftbxd + heavyupbxd + heavyrightbxd + heavydnbxd + lightleftheavyrightbxd + lightupheavydnbxd + heavyleftlightrightbxd + heavyuplightdnbxd + uphalfblock + dneighthblock + dnquarterblock + dnthreeeighthsblock + dnhalfblock + dnfiveeighthsblock + dnthreequartersblock + dnseveneighthsblock + fullblock + leftseveneighthsblock + leftthreequartersblock + leftfiveeighthsblock + lefthalfblock + leftthreeeighthsblock + leftquarterblock + lefteighthblock + righthalfblock + lightshade + mediumshade + darkshade + upeighthblock + righteighthblock + dnleftquadrant + dnrightquadrant + upleftquadrant + upleftdnleftdnrightquadrant + upleftdnrightquadrant + upleftuprightdnleftquadrant + upleftuprightdnrightquadrant + uprightquadrant + uprightdnleftquadrant + uprightdnleftdnrightquadrant + ligspacer + equal.start + equal.middle + equal.end + hyphen.start + hyphen.middle + hyphen.end + underscore.start + underscore.middle + underscore.end + numbersign.start + numbersign.middle + numbersign.end + period_equal.liga + period_period_equal.liga + period_hyphen.liga + colon_equal.liga + equal_equal.liga + exclam_equal.liga + equal_equal_equal.liga + exclam_equal_equal.liga + less_hyphen_less.liga + less_less_hyphen.liga + less_hyphen.liga + less_hyphen_greater.liga + hyphen_greater.liga + hyphen_greater_greater.liga + greater_hyphen_greater.liga + less_equal_less.liga + less_less_equal.liga + less_equal_greater.liga + equal_greater.liga + less_equal.liga + equal_greater_greater.liga + greater_equal_greater.liga + greater_equal.liga + greater_greater_equal.liga + greater_greater_hyphen.liga + greater_hyphen.liga + less_asciitilde_greater.liga + hyphen_less.liga + hyphen_less_less.liga + equal_less.liga + equal_less_less.liga + less_asciitilde_asciitilde.liga + less_asciitilde.liga + asciitilde_asciitilde.liga + asciitilde_greater.liga + asciitilde_asciitilde_greater + less_exclam_hyphen_hyphen.liga + slash_equal.liga + hyphen_bar.liga + bar_hyphen.liga + bar_equal.liga + hyphen_bar_bar.liga + bar_bar_hyphen.liga + equal_bar_bar.liga + bar_bar_equal.liga + equal_bar.liga + slash_slash_equal.liga + equal_slash.liga + equal_slash_slash.liga + equal_colon_equal.middle + equal_exclam_equal.middle + underscore_bar_underscore.m + hyphen_bar_hyphen.middle + equal_bar_equal.middle + hyphen_greater_hyphen.middle + hyphen_greater_greater_hyphen.m + equal_slash_slash_equal.middle + equal_slash_equal.middle + hyphen_bar_bar_hyphen.middle + equal_bar_bar_equal.middle + hyphen_less_hyphen.middle + hyphen_less_less_hyphen.middle + equal_greater_equal.middle + equal_less_equal.middle + equal_greater_greater_equal.m + equal_less_less_equal.middle + less_hyphen.start + greater_hyphen.start + bar_hyphen.start + less_equal.start + greater_equal.start + bar_equal.start + slash_equal.start + slash_slash_equal.start + less_less_hyphen.start + greater_greater_hyphen.start + bar_bar_hyphen.start + less_less_equal.start + greater_greater_equal.start + bar_bar_equal.start + hyphen_less.end + hyphen_greater.end + hyphen_bar.end + equal_less.end + equal_greater.end + equal_bar.end + hyphen_less_less.end + hyphen_greater_greater.end + hyphen_bar_bar.end + equal_less_less.end + equal_greater_greater.end + equal_bar_bar.end + equal_slash.end + equal_slash_slash.end + less_less_less.liga + less_less.liga + less_equal + less_greater.liga + greater_equal + greater_greater.liga + greater_greater_greater.liga + braceleft_bar.liga + bracketleft_bar.liga + less_colon.liga + colon_less.liga + greater_colon.liga + colon_greater.liga + bar_braceright.liga + bar_bracketright.liga + less_bar_bar_bar.liga + less_bar_bar.liga + less_bar.liga + less_bar_greater.liga + bar_greater.liga + bar_bar_greater.liga + bar_bar_bar_greater.liga + less_dollar.liga + less_dollar_greater.liga + dollar_greater.liga + less_plus.liga + less_plus_greater.liga + plus_greater.liga + less_asterisk.liga + less_asterisk_greater.liga + asterisk_greater.liga + slash_asterisk.liga + asterisk_slash.liga + slash_slash_slash.liga + slash_slash.liga + less_slash.liga + less_slash_greater.liga + slash_greater.liga + semicolon_semicolon.liga + colon_colon.liga + colon_colon_colon.liga + period_period.liga + period_period_period.liga + period_period_less.liga + exclam_exclam.liga + question_question.liga + percent_percent.liga + ampersand_ampersand.liga + bar_bar.liga + question_period.liga + question_colon.liga + plus_plus.liga + plus_plus_plus.liga + hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga + asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga + equal_asciitilde.liga + exclam_asciitilde.liga + asciitilde_hyphen.liga + w_w_w.liga + hyphen_asciitilde.liga + asciitilde_at.liga + asciicircum_equal.liga + question_equal.liga + numbersign_exclam.liga + numbersign_equal.liga + numbersign_colon.liga + numbersign_braceleft.liga + numbersign_bracketleft.liga + bracketright_numbersign.liga + numbersign_parenleft.liga + numbersign_question.liga + numbersign_underscore.liga + numbersign_underscore_parenleft + backslash_slash.liga + bar_bar_bar.liga + colon_colon_equal.liga + exclam_exclam_period.liga + period_question.liga + slash_backslash.liga + uniE0A0 + uniE0A1 + uniE0A2 + uniE0B0 + uniE0B1 + uniE0B2 + uniE0B3 + uni2610 + uni2611 + uni2612 + uni2713 public.postscriptNames diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/features.fea b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/features.fea deleted file mode 100644 index 6197aed6..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/features.fea +++ /dev/null @@ -1,368 +0,0 @@ -# ---------------------------- -# INTEL ONE MONO OPENTYPE CODE -# ---------------------------- - -# ---------------- -# Language Systems -# ---------------- - -languagesystem DFLT dflt; -languagesystem latn dflt; -languagesystem latn TRK; -languagesystem latn AZE; -languagesystem latn CRT; -languagesystem latn CAT; - - -# ------- -# Classes -# ------- - -# Base Letters -@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; -@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; - -# Figures -@fig = [zero one two three four five six seven eight nine]; -@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; -@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; -@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; -@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; - -# Marks Above -@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; -@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; - -# Marks Below -@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; - - -# --------------- -# Localized Forms -# --------------- - -feature locl { - script latn; - language TRK; - lookup iTurkish { - sub i by idotaccent; - } iTurkish; - language AZE; - lookup iTurkish; - language CRT; - lookup iTurkish; - language CAT; - sub l periodcentered' l by middotcat; - sub L periodcentered' L by middotcat.cap; - # try fusing them - sub L middotcat.cap by L.dot; - sub L middotcat by L.dot; - sub l middotcat by l.dot; -} locl; - - -# --------------------------------- -# Glyph Composition / Decomposition -# --------------------------------- - -feature ccmp { - - # Decompose unicode lowercase characters whose uppercase counterparts have no unicode. - lookup Decomp { - sub hlinebelow by h macronlowmod; - sub jcaron by j caron; - } Decomp; - - # Replace double above accents by combined drawings. - lookup DblMarks { - sub dieresiscmb acutecmb by dieresisacute; - sub dieresiscmb gravecmb by dieresisgrave; - sub dieresiscmb caroncmb by dieresiscaron; - sub dieresiscmb macroncmb by dieresismacron; - sub brevecmb acutecmb by breveacute; - sub brevecmb gravecmb by brevegrave; - sub brevecmb hookcmb by brevehook; - sub brevecmb tildecmb by brevetilde; - sub circumflexcmb acutecmb by circumflexacute; - sub circumflexcmb gravecmb by circumflexgrave; - sub circumflexcmb hookcmb by circumflexhook; - sub circumflexcmb tildecmb by circumflextilde; - # capital forms - sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; - sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; - sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; - sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; - sub brevecmb.cap acutecmb.cap by breveacute.cap; - sub brevecmb.cap gravecmb.cap by brevegrave.cap; - sub brevecmb.cap hookcmb.cap by brevehook.cap; - sub brevecmb.cap tildecmb.cap by brevetilde.cap; - sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; - sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; - sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; - sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; - } DblMarks; - - # Replace combining marks that follow a uppercase letter by their uppercase form - lookup CapitalMarks { - sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; - sub [@ltrUC] [@lcMarks]' by [@ucMarks]; - } CapitalMarks; - - # Replace letters with dotless counterparts when followed by a combining mark - lookup Dotless { - sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; - sub [i j]' [@lcMarks] by [dotlessi dotlessj]; - } Dotless; - - # Replace e ogonek with pre-drawn eogonek - lookup eogonek { - sub e ogonekcmb by eogonek; - } eogonek; - -} ccmp; - - -# ---------- -# Numerators -# ---------- - -feature numr { - sub @fig by @figNum; -} numr; - -# ------------ -# Denominators -# ------------ - -feature dnom { - sub @fig by @figDen; -} dnom; - -# ----------- -# Superscript -# ----------- - -feature sups { - sub @fig by @figSup; -} sups; - -# --------------------- -# Subscript & Inferiors -# --------------------- - -feature subs { - sub @fig by @figInf; -} subs; - -feature sinf { - sub @fig by @figInf; -} sinf; - - -# --------------------- -# Contextual Alternates -# --------------------- - -feature calt { - # shifts colon to align with math symbols when used together - - sub colon' [plus equal greater less hyphen] by colon.fig; - sub [plus equal less greater hyphen] colon' by colon.fig; - - sub colon' [colon colon.fig] by colon.fig; - sub colon.fig colon' by colon.fig; - -} calt; - - -# -------------- -# Stylistic Sets -# -------------- - -feature ss11 { - featureNames { - name "Raised Colon (Figures Only)"; # Windows English - name 1 0 0 "Raised Colon (Figures Only)"; # Mac English - }; - lookup FigureColonContextual { - sub @fig colon' @fig by colon.fig; - } FigureColonContextual; -} ss11; - -feature ss12 { - featureNames { - name "Raised Colon (Global)"; # Windows English - name 1 0 0 "Raised Colon (Global)"; # Mac English - }; - lookup FigureColon { - sub colon by colon.fig; - } FigureColon; -} ss12; - - -# -------------------- -# Stylistic Alternates -# -------------------- - -feature salt { - lookup FigureColon; # SS12 -} salt; - - -# --------------------------------------------------------------------- -# MARK | Generated: November 23, 2022 - 02:37:49 PM by 'markFeature.py' -# --------------------------------------------------------------------- - -markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; -markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; -markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; -markClass [cedillacmb] @mark_belowcedilla; -markClass [ogonekcmb] @mark_belowogonek; - -feature mark { - - lookup aboveLC{ - pos base [a] mark @mark_aboveLC; - pos base [c] mark @mark_aboveLC; - pos base [dotlessi] mark @mark_aboveLC; - pos base [dotlessj] mark @mark_aboveLC; - pos base [e] mark @mark_aboveLC; - pos base [eogonek] mark @mark_aboveLC; - pos base [g] mark @mark_aboveLC; - pos base [m] mark @mark_aboveLC; - pos base [n] mark @mark_aboveLC; - pos base [o] mark @mark_aboveLC; - pos base [p] mark @mark_aboveLC; - pos base [s] mark @mark_aboveLC; - pos base [u] mark @mark_aboveLC; - pos base [z] mark @mark_aboveLC; - } aboveLC; - - lookup aboveUC{ - pos base [A] mark @mark_aboveUC; - pos base [C] mark @mark_aboveUC; - pos base [E] mark @mark_aboveUC; - pos base [Eogonek] mark @mark_aboveUC; - pos base [G] mark @mark_aboveUC; - pos base [I] mark @mark_aboveUC; - pos base [J] mark @mark_aboveUC; - pos base [M] mark @mark_aboveUC; - pos base [N] mark @mark_aboveUC; - pos base [O] mark @mark_aboveUC; - pos base [P] mark @mark_aboveUC; - pos base [S] mark @mark_aboveUC; - pos base [U] mark @mark_aboveUC; - pos base [Z] mark @mark_aboveUC; - } aboveUC; - - lookup below{ - pos base [C] mark @mark_below; - pos base [Dcroat] mark @mark_below; - pos base [E] mark @mark_below; - pos base [H] mark @mark_below; - pos base [I] mark @mark_below; - pos base [O] mark @mark_below; - pos base [S] mark @mark_below; - pos base [U] mark @mark_below; - pos base [X] mark @mark_below; - pos base [Z] mark @mark_below; - pos base [c] mark @mark_below; - pos base [dcroat] mark @mark_below; - pos base [dotlessi] mark @mark_below; - pos base [e] mark @mark_below; - pos base [h] mark @mark_below; - pos base [o] mark @mark_below; - pos base [s] mark @mark_below; - pos base [u] mark @mark_below; - pos base [x] mark @mark_below; - pos base [z] mark @mark_below; - } below; - - lookup belowcedilla{ - pos base [Z] mark @mark_belowcedilla; - pos base [z] mark @mark_belowcedilla; - } belowcedilla; - - lookup belowogonek{ - pos base [A] mark @mark_belowogonek; - pos base [E] mark @mark_belowogonek; - pos base [I] mark @mark_belowogonek; - pos base [O] mark @mark_belowogonek; - pos base [U] mark @mark_belowogonek; - pos base [a] mark @mark_belowogonek; - pos base [dotlessi] mark @mark_belowogonek; - pos base [e] mark @mark_belowogonek; - pos base [o] mark @mark_belowogonek; - pos base [u] mark @mark_belowogonek; - } belowogonek; - -} mark; - -@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; -@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; - -table GDEF { - GlyphClassDef @BASES,,@MARKS,; -} GDEF; - - -# -------------- -# All Alternates -# -------------- - -feature aalt { - sub germandbls from [germandbls uni1E9E]; - sub uni1E9E from [uni1E9E germandbls]; - sub colon from [colon colon.fig]; - sub colon.fig from [colon.fig colon]; - sub eight from [eight eight.den eight.sup eight.num eight.inf]; - sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; - sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; - sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; - sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; - sub five from [five five.inf five.num five.den five.sup]; - sub five.sup from [five.sup five five.inf five.num five.den]; - sub five.den from [five.den five.sup five five.inf five.num]; - sub five.num from [five.num five.den five.sup five five.inf]; - sub five.inf from [five.inf five.num five.den five.sup five]; - sub four from [four four.sup four.num four.den four.inf]; - sub four.inf from [four.inf four four.sup four.num four.den]; - sub four.den from [four.den four.inf four four.sup four.num]; - sub four.num from [four.num four.den four.inf four four.sup]; - sub four.sup from [four.sup four.num four.den four.inf four]; - sub nine from [nine nine.den nine.inf nine.num nine.sup]; - sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; - sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; - sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; - sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; - sub one from [one one.den one.num one.inf one.sup]; - sub one.sup from [one.sup one one.den one.num one.inf]; - sub one.inf from [one.inf one.sup one one.den one.num]; - sub one.num from [one.num one.inf one.sup one one.den]; - sub one.den from [one.den one.num one.inf one.sup one]; - sub seven from [seven seven.inf seven.num seven.sup seven.den]; - sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; - sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; - sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; - sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; - sub six from [six six.num six.sup six.den six.inf]; - sub six.inf from [six.inf six six.num six.sup six.den]; - sub six.den from [six.den six.inf six six.num six.sup]; - sub six.sup from [six.sup six.den six.inf six six.num]; - sub six.num from [six.num six.sup six.den six.inf six]; - sub three from [three three.inf three.den three.num three.sup]; - sub three.sup from [three.sup three three.inf three.den three.num]; - sub three.num from [three.num three.sup three three.inf three.den]; - sub three.den from [three.den three.num three.sup three three.inf]; - sub three.inf from [three.inf three.den three.num three.sup three]; - sub two from [two two.inf two.sup two.num two.den]; - sub two.den from [two.den two two.inf two.sup two.num]; - sub two.num from [two.num two.den two two.inf two.sup]; - sub two.sup from [two.sup two.num two.den two two.inf]; - sub two.inf from [two.inf two.sup two.num two.den two]; - sub zero from [zero zero.sup zero.num zero.den zero.inf]; - sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; - sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; - sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; - sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; -} aalt; diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/fontinfo.plist b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/fontinfo.plist deleted file mode 100644 index ebc1b0a0..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/fontinfo.plist +++ /dev/null @@ -1,408 +0,0 @@ - - - - - ascender - 740 - capHeight - 655 - copyright - Copyright 2023 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) - descender - -260 - familyName - Intel One Mono - guidelines - - italicAngle - 0.0 - openTypeHeadFlags - - 0 - 1 - - openTypeHheaAscender - 1090 - openTypeHheaDescender - -290 - openTypeHheaLineGap - 0 - openTypeNameDesigner - Fred Shallcrass - openTypeNameDesignerURL - http://frerejones.com - openTypeNameLicense - This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL - openTypeNameLicenseURL - https://github.com/intel/intel-one-mono/blob/main/license - openTypeNameManufacturer - Frere-Jones Type LLC - openTypeNameManufacturerURL - http://frerejones.com - openTypeNamePreferredFamilyName - Intel One Mono - openTypeNamePreferredSubfamilyName - Bold - openTypeNameRecords - - - encodingID - 0 - languageID - 0 - nameID - 0 - platformID - 1 - string - (C) 2023 Intel Corporation - - - encodingID - 1 - languageID - 1033 - nameID - 0 - platformID - 3 - string - (C) 2023 Intel Corporation - - - encodingID - 0 - languageID - 0 - nameID - 1 - platformID - 1 - string - Intel One Mono - - - encodingID - 1 - languageID - 1033 - nameID - 1 - platformID - 3 - string - Intel One Mono - - - encodingID - 0 - languageID - 0 - nameID - 2 - platformID - 1 - string - Bold - - - encodingID - 1 - languageID - 1033 - nameID - 2 - platformID - 3 - string - Bold - - - encodingID - 0 - languageID - 0 - nameID - 4 - platformID - 1 - string - Intel One Mono Bold - - - encodingID - 1 - languageID - 1033 - nameID - 4 - platformID - 3 - string - Intel One Mono Bold - - - encodingID - 0 - languageID - 0 - nameID - 6 - platformID - 1 - string - IntelOneMono-Bold - - - encodingID - 1 - languageID - 1033 - nameID - 6 - platformID - 3 - string - IntelOneMono-Bold - - - encodingID - 0 - languageID - 0 - nameID - 8 - platformID - 1 - string - Frere-Jones Type LLC - - - encodingID - 1 - languageID - 1033 - nameID - 8 - platformID - 3 - string - Frere-Jones Type LLC - - - encodingID - 0 - languageID - 0 - nameID - 9 - platformID - 1 - string - Fred Shallcrass - - - encodingID - 1 - languageID - 1033 - nameID - 9 - platformID - 3 - string - Fred Shallcrass - - - encodingID - 0 - languageID - 0 - nameID - 11 - platformID - 1 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 11 - platformID - 3 - string - http://frerejones.com - - - encodingID - 0 - languageID - 0 - nameID - 12 - platformID - 1 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 12 - platformID - 3 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 16 - platformID - 3 - string - Intel One Mono - - - encodingID - 1 - languageID - 1033 - nameID - 17 - platformID - 3 - string - Bold - - - openTypeOS2CodePageRanges - - 0 - 1 - 4 - 7 - 8 - 29 - - openTypeOS2Panose - - 2 - 11 - 8 - 9 - 2 - 2 - 3 - 2 - 2 - 4 - - openTypeOS2Selection - - 7 - 8 - - openTypeOS2StrikeoutPosition - 286 - openTypeOS2StrikeoutSize - 50 - openTypeOS2Type - - openTypeOS2TypoAscender - 1090 - openTypeOS2TypoDescender - -290 - openTypeOS2TypoLineGap - 0 - openTypeOS2UnicodeRanges - - 0 - 1 - 2 - 29 - 32 - - openTypeOS2VendorID - FRJN - openTypeOS2WeightClass - 700 - openTypeOS2WidthClass - 5 - openTypeOS2WinAscent - 1090 - openTypeOS2WinDescent - 290 - postscriptBlueFuzz - 0 - postscriptBlueScale - 0.05 - postscriptBlueValues - - -15 - 0 - 477 - 492 - 655 - 670 - 710 - 725 - - postscriptDefaultWidthX - 614 - postscriptFamilyBlues - - postscriptFamilyOtherBlues - - postscriptFontName - IntelOneMono-Bold - postscriptForceBold - - postscriptFullName - Intel One Mono Bold - postscriptIsFixedPitch - - postscriptOtherBlues - - -245 - -230 - - postscriptStemSnapH - - 120 - - postscriptStemSnapV - - 145 - 150 - - postscriptUnderlinePosition - -75 - postscriptUnderlineThickness - 50 - styleMapFamilyName - Intel One Mono - styleMapStyleName - bold - styleName - Bold - unitsPerEm - 1000 - versionMajor - 1 - versionMinor - 3 - xHeight - 477 - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_.dot.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_.dot.glif deleted file mode 100644 index e02a91df..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_.dot.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_E_.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_E_.glif deleted file mode 100644 index 9f59115d..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_E_.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_breve.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_breve.glif deleted file mode 100644 index 6c0feff6..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_breve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_caron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_caron.glif deleted file mode 100644 index ee011634..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_circumflex.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_circumflex.glif deleted file mode 100644 index 651d669b..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_circumflexacute.glif deleted file mode 100644 index 06cac0c2..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_circumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_circumflexdotbelow.glif deleted file mode 100644 index dd40c61a..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_circumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_circumflexgrave.glif deleted file mode 100644 index 88b7c541..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_circumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_circumflexhookabove.glif deleted file mode 100644 index c42358a8..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_circumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_circumflextilde.glif deleted file mode 100644 index 992714bb..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_circumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_dieresis.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_dieresis.glif deleted file mode 100644 index 3bd88ecc..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_dotaccent.glif deleted file mode 100644 index df3f61b9..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_dotbelow.glif deleted file mode 100644 index 9bfe1d41..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_hookabove.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_hookabove.glif deleted file mode 100644 index 3d0d18ae..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_horn.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_horn.glif deleted file mode 100644 index 68433a14..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_horn.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_hornacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_hornacute.glif deleted file mode 100644 index 5e44a7a6..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_hornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_horndotbelow.glif deleted file mode 100644 index 3aa9065c..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_horndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_horngrave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_horngrave.glif deleted file mode 100644 index d3c7fa33..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_horngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_hornhookabove.glif deleted file mode 100644 index 30a65673..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_hornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_horntilde.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_horntilde.glif deleted file mode 100644 index b5a14e47..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_horntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_macron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_macron.glif deleted file mode 100644 index b86c0d0f..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_ogonek.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_ogonek.glif deleted file mode 100644 index a82dbcdb..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_ogonek.glif +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_slash.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_slash.glif deleted file mode 100644 index a93bfd83..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_slash.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_tilde.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_tilde.glif deleted file mode 100644 index aca46c76..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_acute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_acute.glif deleted file mode 100644 index 354276b2..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_caron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_caron.glif deleted file mode 100644 index 9fbe35de..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_commaaccent.glif deleted file mode 100644 index e6bbb04e..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_dotaccent.glif deleted file mode 100644 index e1045fdb..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_dotbelow.glif deleted file mode 100644 index 68864791..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_linebelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_linebelow.glif deleted file mode 100644 index 5bd37057..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_macrondotbelow.glif deleted file mode 100644 index c3b8472c..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_macrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_acute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_acute.glif deleted file mode 100644 index f4dbf425..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_caron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_caron.glif deleted file mode 100644 index 02aac19e..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_cedilla.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_cedilla.glif deleted file mode 100644 index 5bf71c4f..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_cedilla.glif +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_chwa.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_chwa.glif deleted file mode 100644 index 48667af3..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_chwa.glif +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_circumflex.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_circumflex.glif deleted file mode 100644 index 32134b3b..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_commaaccent.glif deleted file mode 100644 index 7c77ead5..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_dotbelow.glif deleted file mode 100644 index 846321e5..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_caron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_caron.glif deleted file mode 100644 index 9478200a..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_cedilla.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_cedilla.glif deleted file mode 100644 index 2960e191..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_cedilla.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_horn.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_horn.glif deleted file mode 100644 index a02216f7..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_horn.glif +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_acute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_acute.glif deleted file mode 100644 index aa7e40e0..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_breve.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_breve.glif deleted file mode 100644 index 2d75fcd2..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_breve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_caron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_caron.glif deleted file mode 100644 index a518822d..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_circumflex.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_circumflex.glif deleted file mode 100644 index a790e335..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_dieresis.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_dieresis.glif deleted file mode 100644 index a6d22fd5..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_dieresisacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_dieresisacute.glif deleted file mode 100644 index ce10b66d..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_dieresisacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_dieresiscaron.glif deleted file mode 100644 index da612539..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_dieresiscaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_dieresisgrave.glif deleted file mode 100644 index 877c3631..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_dieresisgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_dieresismacron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_dieresismacron.glif deleted file mode 100644 index 7ad542b1..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_dieresismacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_dotbelow.glif deleted file mode 100644 index 92e6fae5..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_grave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_grave.glif deleted file mode 100644 index d27e9ec0..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_hookabove.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_hookabove.glif deleted file mode 100644 index 5a7b97cf..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_horn.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_horn.glif deleted file mode 100644 index 6341c524..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_horn.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_hornacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_hornacute.glif deleted file mode 100644 index b3dff414..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_hornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_horndotbelow.glif deleted file mode 100644 index 654c67ae..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_horndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_horngrave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_horngrave.glif deleted file mode 100644 index 7c31ea4d..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_horngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_hornhookabove.glif deleted file mode 100644 index 0cd806c5..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_hornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_hungarumlaut.glif deleted file mode 100644 index 2fb78f3e..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_hungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_macron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_macron.glif deleted file mode 100644 index f0eb5564..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_ogonek.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_ogonek.glif deleted file mode 100644 index 6660ca97..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_ogonek.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_ring.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_ring.glif deleted file mode 100644 index 349ebf10..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_ring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_tilde.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_tilde.glif deleted file mode 100644 index 52835fdf..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/V_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/V_dotbelow.glif deleted file mode 100644 index 6d5acd0f..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/V_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/W_acute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/W_acute.glif deleted file mode 100644 index eff2da56..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/W_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/W_circumflex.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/W_circumflex.glif deleted file mode 100644 index d51dcbeb..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/W_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/W_dieresis.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/W_dieresis.glif deleted file mode 100644 index a1dbedd3..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/W_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/W_grave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/W_grave.glif deleted file mode 100644 index feb2e8e7..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/W_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/X_dieresis.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/X_dieresis.glif deleted file mode 100644 index a96b53ca..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/X_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_acute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_acute.glif deleted file mode 100644 index a750b084..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_circumflex.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_circumflex.glif deleted file mode 100644 index 00103651..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_dieresis.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_dieresis.glif deleted file mode 100644 index 1c5ecb4d..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_dotaccent.glif deleted file mode 100644 index 65d72bed..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_dotbelow.glif deleted file mode 100644 index b3430da3..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_grave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_grave.glif deleted file mode 100644 index 460e764c..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_hookabove.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_hookabove.glif deleted file mode 100644 index 37914f3a..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_macron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_macron.glif deleted file mode 100644 index d553ce79..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_tilde.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_tilde.glif deleted file mode 100644 index 0f072c32..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Z_acute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Z_acute.glif deleted file mode 100644 index 04edf86a..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Z_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Z_caron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Z_caron.glif deleted file mode 100644 index aa6e3b72..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Z_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Z_circumflex.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Z_circumflex.glif deleted file mode 100644 index dd20112e..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Z_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Z_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Z_dotaccent.glif deleted file mode 100644 index 94bf601c..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Z_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Z_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Z_dotbelow.glif deleted file mode 100644 index 8c67b1bb..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Z_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Z_linebelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Z_linebelow.glif deleted file mode 100644 index 21898337..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Z_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/aacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/aacute.glif deleted file mode 100644 index d4f9abc3..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/aacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/abreve.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/abreve.glif deleted file mode 100644 index 58b96469..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/abreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/abreveacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/abreveacute.glif deleted file mode 100644 index 3653d7a9..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/abreveacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/abrevedotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/abrevedotbelow.glif deleted file mode 100644 index d8d19245..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/abrevedotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/abrevegrave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/abrevegrave.glif deleted file mode 100644 index bbc0b631..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/abrevegrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/abrevehookabove.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/abrevehookabove.glif deleted file mode 100644 index 638dd863..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/abrevehookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/abrevetilde.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/abrevetilde.glif deleted file mode 100644 index 7e3fdc36..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/abrevetilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acaron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acaron.glif deleted file mode 100644 index 3d6a4b77..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acircumflexdotbelow.glif deleted file mode 100644 index 7a5abf14..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/adieresis.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/adieresis.glif deleted file mode 100644 index 0283b196..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/adieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/adotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/adotaccent.glif deleted file mode 100644 index 035f9fff..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/adotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/adotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/adotbelow.glif deleted file mode 100644 index 3ef18183..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/adotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ae.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ae.glif deleted file mode 100644 index 4ac17513..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ae.glif +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/agrave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/agrave.glif deleted file mode 100644 index e9a9e49e..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/agrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ahookabove.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ahookabove.glif deleted file mode 100644 index 0b520efb..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ahookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/amacron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/amacron.glif deleted file mode 100644 index 192316b2..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/amacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/aogonek.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/aogonek.glif deleted file mode 100644 index ac62ee11..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/aogonek.glif +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/aring.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/aring.glif deleted file mode 100644 index 99a0ebca..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/aring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/atilde.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/atilde.glif deleted file mode 100644 index 579b462e..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/atilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/blinebelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/blinebelow.glif deleted file mode 100644 index e3d2bcff..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/blinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/breveacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/breveacute.glif deleted file mode 100644 index a9326e10..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/breveacute.glif +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevegrave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevegrave.glif deleted file mode 100644 index ffefe147..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevegrave.glif +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevehook.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevehook.glif deleted file mode 100644 index 13be1805..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevehook.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevetilde.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevetilde.glif deleted file mode 100644 index f54cacf7..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevetilde.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/cacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/cacute.glif deleted file mode 100644 index 232d0885..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/cacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ccaron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ccaron.glif deleted file mode 100644 index 911c38c3..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ccaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ccedilla.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ccedilla.glif deleted file mode 100644 index 86eec733..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ccedilla.glif +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ccircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ccircumflex.glif deleted file mode 100644 index f9a08b19..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ccircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/cdotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/cdotaccent.glif deleted file mode 100644 index aa80327b..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/cdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflexhook.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflexhook.glif deleted file mode 100644 index b264a668..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflexhook.glif +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflextilde.glif deleted file mode 100644 index 2a652e0b..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflextilde.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/commaturnedabovecmb.glif deleted file mode 100644 index f5af065e..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/commaturnedabovecmb.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/contents.plist b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/contents.plist deleted file mode 100644 index 9b3fa25c..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/contents.plist +++ /dev/null @@ -1,1374 +0,0 @@ - - - - - .notdef - _notdef.glif - A - A_.glif - AE - A_E_.glif - Aacute - A_acute.glif - Abreve - A_breve.glif - Abreveacute - A_breveacute.glif - Abrevedotbelow - A_brevedotbelow.glif - Abrevegrave - A_brevegrave.glif - Abrevehookabove - A_brevehookabove.glif - Abrevetilde - A_brevetilde.glif - Acaron - A_caron.glif - Acircumflex - A_circumflex.glif - Acircumflexacute - A_circumflexacute.glif - Acircumflexdotbelow - A_circumflexdotbelow.glif - Acircumflexgrave - A_circumflexgrave.glif - Acircumflexhookabove - A_circumflexhookabove.glif - Acircumflextilde - A_circumflextilde.glif - Adieresis - A_dieresis.glif - Adotaccent - A_dotaccent.glif - Adotbelow - A_dotbelow.glif - Agrave - A_grave.glif - Ahookabove - A_hookabove.glif - Amacron - A_macron.glif - Aogonek - A_ogonek.glif - Aring - A_ring.glif - Atilde - A_tilde.glif - B - B_.glif - Blinebelow - B_linebelow.glif - C - C_.glif - Cacute - C_acute.glif - Ccaron - C_caron.glif - Ccedilla - C_cedilla.glif - Ccircumflex - C_circumflex.glif - Cdotaccent - C_dotaccent.glif - D - D_.glif - Dcaron - D_caron.glif - Dcircumflexbelow - D_circumflexbelow.glif - Dcroat - D_croat.glif - Ddotbelow - D_dotbelow.glif - Dlinebelow - D_linebelow.glif - E - E_.glif - Eacute - E_acute.glif - Ebreve - E_breve.glif - Ecaron - E_caron.glif - Ecircumflex - E_circumflex.glif - Ecircumflexacute - E_circumflexacute.glif - Ecircumflexdotbelow - E_circumflexdotbelow.glif - Ecircumflexgrave - E_circumflexgrave.glif - Ecircumflexhookabove - E_circumflexhookabove.glif - Ecircumflextilde - E_circumflextilde.glif - Edieresis - E_dieresis.glif - Edotaccent - E_dotaccent.glif - Edotbelow - E_dotbelow.glif - Egrave - E_grave.glif - Ehookabove - E_hookabove.glif - Emacron - E_macron.glif - Eng - E_ng.glif - Eogonek - E_ogonek.glif - Eth - E_th.glif - Etilde - E_tilde.glif - Euro - E_uro.glif - F - F_.glif - G - G_.glif - Gbreve - G_breve.glif - Gcaron - G_caron.glif - Gcircumflex - G_circumflex.glif - Gcommaaccent - G_commaaccent.glif - Gdotaccent - G_dotaccent.glif - Gmacron - G_macron.glif - H - H_.glif - Hbar - H_bar.glif - Hbrevebelow - H_brevebelow.glif - Hcedilla - H_cedilla.glif - Hcircumflex - H_circumflex.glif - Hdotbelow - H_dotbelow.glif - I - I_.glif - Iacute - I_acute.glif - Ibreve - I_breve.glif - Icaron - I_caron.glif - Icircumflex - I_circumflex.glif - Idieresis - I_dieresis.glif - Idotaccent - I_dotaccent.glif - Idotbelow - I_dotbelow.glif - Igrave - I_grave.glif - Ihookabove - I_hookabove.glif - Imacron - I_macron.glif - Iogonek - I_ogonek.glif - Itilde - I_tilde.glif - J - J_.glif - Jcircumflex - J_circumflex.glif - K - K_.glif - Kcommaaccent - K_commaaccent.glif - Kdotbelow - K_dotbelow.glif - Klinebelow - K_linebelow.glif - L - L_.glif - L.dot - L_.dot.glif - Lacute - L_acute.glif - Lcaron - L_caron.glif - Lcircumflexbelow - L_circumflexbelow.glif - Lcommaaccent - L_commaaccent.glif - Ldotbelow - L_dotbelow.glif - Llinebelow - L_linebelow.glif - Lmacrondotbelow - L_macrondotbelow.glif - Lslash - L_slash.glif - M - M_.glif - Macute - M_acute.glif - Mdotaccent - M_dotaccent.glif - Mdotbelow - M_dotbelow.glif - N - N_.glif - Nacute - N_acute.glif - Ncaron - N_caron.glif - Ncircumflexbelow - N_circumflexbelow.glif - Ncommaaccent - N_commaaccent.glif - Ndotaccent - N_dotaccent.glif - Ndotbelow - N_dotbelow.glif - Ngrave - N_grave.glif - Nlinebelow - N_linebelow.glif - Ntilde - N_tilde.glif - O - O_.glif - OE - O_E_.glif - Oacute - O_acute.glif - Obreve - O_breve.glif - Ocaron - O_caron.glif - Ocircumflex - O_circumflex.glif - Ocircumflexacute - O_circumflexacute.glif - Ocircumflexdotbelow - O_circumflexdotbelow.glif - Ocircumflexgrave - O_circumflexgrave.glif - Ocircumflexhookabove - O_circumflexhookabove.glif - Ocircumflextilde - O_circumflextilde.glif - Odieresis - O_dieresis.glif - Odotaccent - O_dotaccent.glif - Odotbelow - O_dotbelow.glif - Ograve - O_grave.glif - Ohookabove - O_hookabove.glif - Ohorn - O_horn.glif - Ohornacute - O_hornacute.glif - Ohorndotbelow - O_horndotbelow.glif - Ohorngrave - O_horngrave.glif - Ohornhookabove - O_hornhookabove.glif - Ohorntilde - O_horntilde.glif - Ohungarumlaut - O_hungarumlaut.glif - Omacron - O_macron.glif - Oogonek - O_ogonek.glif - Oslash - O_slash.glif - Otilde - O_tilde.glif - P - P_.glif - Q - Q_.glif - R - R_.glif - Racute - R_acute.glif - Rcaron - R_caron.glif - Rcommaaccent - R_commaaccent.glif - Rdotaccent - R_dotaccent.glif - Rdotbelow - R_dotbelow.glif - Rlinebelow - R_linebelow.glif - Rmacrondotbelow - R_macrondotbelow.glif - S - S_.glif - Sacute - S_acute.glif - Scaron - S_caron.glif - Scedilla - S_cedilla.glif - Schwa - S_chwa.glif - Scircumflex - S_circumflex.glif - Scommaaccent - S_commaaccent.glif - Sdotbelow - S_dotbelow.glif - T - T_.glif - Tbar - T_bar.glif - Tcaron - T_caron.glif - Tcedilla - T_cedilla.glif - Tcircumflexbelow - T_circumflexbelow.glif - Tcommaaccent - T_commaaccent.glif - Tdotbelow - T_dotbelow.glif - Thorn - T_horn.glif - Tlinebelow - T_linebelow.glif - U - U_.glif - Uacute - U_acute.glif - Ubreve - U_breve.glif - Ucaron - U_caron.glif - Ucircumflex - U_circumflex.glif - Udieresis - U_dieresis.glif - Udieresisacute - U_dieresisacute.glif - Udieresiscaron - U_dieresiscaron.glif - Udieresisgrave - U_dieresisgrave.glif - Udieresismacron - U_dieresismacron.glif - Udotbelow - U_dotbelow.glif - Ugrave - U_grave.glif - Uhookabove - U_hookabove.glif - Uhorn - U_horn.glif - Uhornacute - U_hornacute.glif - Uhorndotbelow - U_horndotbelow.glif - Uhorngrave - U_horngrave.glif - Uhornhookabove - U_hornhookabove.glif - Uhorntilde - U_horntilde.glif - Uhungarumlaut - U_hungarumlaut.glif - Umacron - U_macron.glif - Uogonek - U_ogonek.glif - Uring - U_ring.glif - Utilde - U_tilde.glif - V - V_.glif - Vdotbelow - V_dotbelow.glif - W - W_.glif - Wacute - W_acute.glif - Wcircumflex - W_circumflex.glif - Wdieresis - W_dieresis.glif - Wgrave - W_grave.glif - X - X_.glif - Xdieresis - X_dieresis.glif - Y - Y_.glif - Yacute - Y_acute.glif - Ycircumflex - Y_circumflex.glif - Ydieresis - Y_dieresis.glif - Ydotaccent - Y_dotaccent.glif - Ydotbelow - Y_dotbelow.glif - Ygrave - Y_grave.glif - Yhookabove - Y_hookabove.glif - Ymacron - Y_macron.glif - Ytilde - Y_tilde.glif - Z - Z_.glif - Zacute - Z_acute.glif - Zcaron - Z_caron.glif - Zcircumflex - Z_circumflex.glif - Zdotaccent - Z_dotaccent.glif - Zdotbelow - Z_dotbelow.glif - Zlinebelow - Z_linebelow.glif - a - a.glif - aacute - aacute.glif - abreve - abreve.glif - abreveacute - abreveacute.glif - abrevedotbelow - abrevedotbelow.glif - abrevegrave - abrevegrave.glif - abrevehookabove - abrevehookabove.glif - abrevetilde - abrevetilde.glif - acaron - acaron.glif - acircumflex - acircumflex.glif - acircumflexacute - acircumflexacute.glif - acircumflexdotbelow - acircumflexdotbelow.glif - acircumflexgrave - acircumflexgrave.glif - acircumflexhookabove - acircumflexhookabove.glif - acircumflextilde - acircumflextilde.glif - acute - acute.glif - acutecmb - acutecmb.glif - acutecmb.cap - acutecmb.cap.glif - adieresis - adieresis.glif - adotaccent - adotaccent.glif - adotbelow - adotbelow.glif - ae - ae.glif - agrave - agrave.glif - ahookabove - ahookabove.glif - amacron - amacron.glif - ampersand - ampersand.glif - aogonek - aogonek.glif - apostrophemod - apostrophemod.glif - approxequal - approxequal.glif - aring - aring.glif - asciicircum - asciicircum.glif - asciitilde - asciitilde.glif - asterisk - asterisk.glif - at - at.glif - atilde - atilde.glif - b - b.glif - backslash - backslash.glif - bahtthai - bahtthai.glif - bar - bar.glif - blinebelow - blinebelow.glif - braceleft - braceleft.glif - braceright - braceright.glif - bracketleft - bracketleft.glif - bracketright - bracketright.glif - breve - breve.glif - breveacute - breveacute.glif - breveacute.cap - breveacute.cap.glif - brevebelowcmb - brevebelowcmb.glif - brevecmb - brevecmb.glif - brevecmb.cap - brevecmb.cap.glif - brevegrave - brevegrave.glif - brevegrave.cap - brevegrave.cap.glif - brevehook - brevehook.glif - brevehook.cap - brevehook.cap.glif - brevetilde - brevetilde.glif - brevetilde.cap - brevetilde.cap.glif - bullet - bullet.glif - c - c.glif - cacute - cacute.glif - caron - caron.glif - caroncmb - caroncmb.glif - caroncmb.cap - caroncmb.cap.glif - ccaron - ccaron.glif - ccedilla - ccedilla.glif - ccircumflex - ccircumflex.glif - cdotaccent - cdotaccent.glif - cedilla - cedilla.glif - cedillacmb - cedillacmb.glif - cent - cent.glif - circumflex - circumflex.glif - circumflexacute - circumflexacute.glif - circumflexacute.cap - circumflexacute.cap.glif - circumflexbelowcmb - circumflexbelowcmb.glif - circumflexcmb - circumflexcmb.glif - circumflexcmb.cap - circumflexcmb.cap.glif - circumflexgrave - circumflexgrave.glif - circumflexgrave.cap - circumflexgrave.cap.glif - circumflexhook - circumflexhook.glif - circumflexhook.cap - circumflexhook.cap.glif - circumflextilde - circumflextilde.glif - circumflextilde.cap - circumflextilde.cap.glif - colon - colon.glif - colon.fig - colon.fig.glif - comma - comma.glif - commaaboverightcmb - commaaboverightcmb.glif - commaturnedabovecmb - commaturnedabovecmb.glif - commaturnedmod - commaturnedmod.glif - copyright - copyright.glif - d - d.glif - dagger - dagger.glif - daggerdbl - daggerdbl.glif - dblprimemod - dblprimemod.glif - dcaron - dcaron.glif - dcircumflexbelow - dcircumflexbelow.glif - dcroat - dcroat.glif - ddotbelow - ddotbelow.glif - degree - degree.glif - dieresis - dieresis.glif - dieresisacute - dieresisacute.glif - dieresisacute.cap - dieresisacute.cap.glif - dieresisbelowcmb - dieresisbelowcmb.glif - dieresiscaron - dieresiscaron.glif - dieresiscaron.cap - dieresiscaron.cap.glif - dieresiscmb - dieresiscmb.glif - dieresiscmb.cap - dieresiscmb.cap.glif - dieresisgrave - dieresisgrave.glif - dieresisgrave.cap - dieresisgrave.cap.glif - dieresismacron - dieresismacron.glif - dieresismacron.cap - dieresismacron.cap.glif - divide - divide.glif - dlinebelow - dlinebelow.glif - dollar - dollar.glif - dong - dong.glif - dotaccent - dotaccent.glif - dotaccentcmb - dotaccentcmb.glif - dotaccentcmb.cap - dotaccentcmb.cap.glif - dotbelowcmb - dotbelowcmb.glif - dotlessi - dotlessi.glif - dotlessj - dotlessj.glif - e - e.glif - eacute - eacute.glif - ebreve - ebreve.glif - ecaron - ecaron.glif - ecircumflex - ecircumflex.glif - ecircumflexacute - ecircumflexacute.glif - ecircumflexdotbelow - ecircumflexdotbelow.glif - ecircumflexgrave - ecircumflexgrave.glif - ecircumflexhookabove - ecircumflexhookabove.glif - ecircumflextilde - ecircumflextilde.glif - edieresis - edieresis.glif - edotaccent - edotaccent.glif - edotbelow - edotbelow.glif - egrave - egrave.glif - ehookabove - ehookabove.glif - eight - eight.glif - eight.den - eight.den.glif - eight.inf - eight.inf.glif - eight.num - eight.num.glif - eight.sup - eight.sup.glif - ellipsis - ellipsis.glif - emacron - emacron.glif - emdash - emdash.glif - endash - endash.glif - eng - eng.glif - eogonek - eogonek.glif - equal - equal.glif - eth - eth.glif - etilde - etilde.glif - exclam - exclam.glif - exclamdown - exclamdown.glif - f - f.glif - five - five.glif - five.den - five.den.glif - five.inf - five.inf.glif - five.num - five.num.glif - five.sup - five.sup.glif - fiveeighths - fiveeighths.glif - fivesixths - fivesixths.glif - four - four.glif - four.den - four.den.glif - four.inf - four.inf.glif - four.num - four.num.glif - four.sup - four.sup.glif - fourfifths - fourfifths.glif - fracbar - fracbar.glif - fraction - fraction.glif - g - g.glif - gbreve - gbreve.glif - gcaron - gcaron.glif - gcircumflex - gcircumflex.glif - gcommaaccent - gcommaaccent.glif - gdotaccent - gdotaccent.glif - germandbls - germandbls.glif - gmacron - gmacron.glif - grave - grave.glif - gravecmb - gravecmb.glif - gravecmb.cap - gravecmb.cap.glif - greater - greater.glif - greaterequal - greaterequal.glif - guillemetleft - guillemetleft.glif - guillemetright - guillemetright.glif - guilsinglleft - guilsinglleft.glif - guilsinglright - guilsinglright.glif - h - h.glif - hbar - hbar.glif - hbrevebelow - hbrevebelow.glif - hcedilla - hcedilla.glif - hcircumflex - hcircumflex.glif - hdotbelow - hdotbelow.glif - hlinebelow - hlinebelow.glif - hookcmb - hookcmb.glif - hookcmb.cap - hookcmb.cap.glif - horizontalbar - horizontalbar.glif - hungarumlaut - hungarumlaut.glif - hungarumlautcmb - hungarumlautcmb.glif - hungarumlautcmb.cap - hungarumlautcmb.cap.glif - hyphen - hyphen.glif - i - i.glif - iacute - iacute.glif - ibreve - ibreve.glif - icaron - icaron.glif - icircumflex - icircumflex.glif - idieresis - idieresis.glif - idotaccent - idotaccent.glif - idotbelow - idotbelow.glif - igrave - igrave.glif - ihookabove - ihookabove.glif - imacron - imacron.glif - iogonek - iogonek.glif - itilde - itilde.glif - j - j.glif - jcaron - jcaron.glif - jcircumflex - jcircumflex.glif - k - k.glif - kcommaaccent - kcommaaccent.glif - kdotbelow - kdotbelow.glif - klinebelow - klinebelow.glif - l - l.glif - l.dot - l.dot.glif - lacute - lacute.glif - lcaron - lcaron.glif - lcircumflexbelow - lcircumflexbelow.glif - lcommaaccent - lcommaaccent.glif - ldotbelow - ldotbelow.glif - less - less.glif - lessequal - lessequal.glif - llinebelow - llinebelow.glif - lmacrondotbelow - lmacrondotbelow.glif - lslash - lslash.glif - m - m.glif - macron - macron.glif - macronbelowcmb - macronbelowcmb.glif - macroncmb - macroncmb.glif - macroncmb.cap - macroncmb.cap.glif - macronlowmod - macronlowmod.glif - macute - macute.glif - mdotaccent - mdotaccent.glif - mdotbelow - mdotbelow.glif - middotcat - middotcat.glif - middotcat.cap - middotcat.cap.glif - minus - minus.glif - mu - mu.glif - multiply - multiply.glif - n - n.glif - nacute - nacute.glif - naira - naira.glif - ncaron - ncaron.glif - ncircumflexbelow - ncircumflexbelow.glif - ncommaaccent - ncommaaccent.glif - ndotaccent - ndotaccent.glif - ndotbelow - ndotbelow.glif - ngrave - ngrave.glif - nine - nine.glif - nine.den - nine.den.glif - nine.inf - nine.inf.glif - nine.num - nine.num.glif - nine.sup - nine.sup.glif - nlinebelow - nlinebelow.glif - notequal - notequal.glif - ntilde - ntilde.glif - numbersign - numbersign.glif - o - o.glif - oacute - oacute.glif - obreve - obreve.glif - ocaron - ocaron.glif - ocircumflex - ocircumflex.glif - ocircumflexacute - ocircumflexacute.glif - ocircumflexdotbelow - ocircumflexdotbelow.glif - ocircumflexgrave - ocircumflexgrave.glif - ocircumflexhookabove - ocircumflexhookabove.glif - ocircumflextilde - ocircumflextilde.glif - odieresis - odieresis.glif - odotaccent - odotaccent.glif - odotbelow - odotbelow.glif - oe - oe.glif - ogonek - ogonek.glif - ogonekcmb - ogonekcmb.glif - ograve - ograve.glif - ohookabove - ohookabove.glif - ohorn - ohorn.glif - ohornacute - ohornacute.glif - ohorndotbelow - ohorndotbelow.glif - ohorngrave - ohorngrave.glif - ohornhookabove - ohornhookabove.glif - ohorntilde - ohorntilde.glif - ohungarumlaut - ohungarumlaut.glif - omacron - omacron.glif - one - one.glif - one.den - one.den.glif - one.inf - one.inf.glif - one.num - one.num.glif - one.sup - one.sup.glif - oneeighth - oneeighth.glif - onefifth - onefifth.glif - onehalf - onehalf.glif - onequarter - onequarter.glif - onesixth - onesixth.glif - onethird - onethird.glif - oogonek - oogonek.glif - ordfeminine - ordfeminine.glif - ordmasculine - ordmasculine.glif - oslash - oslash.glif - otilde - otilde.glif - p - p.glif - paragraph - paragraph.glif - parenleft - parenleft.glif - parenright - parenright.glif - percent - percent.glif - period - period.glif - periodcentered - periodcentered.glif - peso - peso.glif - plus - plus.glif - plusminus - plusminus.glif - primemod - primemod.glif - published - published.glif - q - q.glif - question - question.glif - questiondown - questiondown.glif - quotedbl - quotedbl.glif - quotedblbase - quotedblbase.glif - quotedblleft - quotedblleft.glif - quotedblright - quotedblright.glif - quoteleft - quoteleft.glif - quoteright - quoteright.glif - quotesinglbase - quotesinglbase.glif - quotesingle - quotesingle.glif - r - r.glif - racute - racute.glif - rcaron - rcaron.glif - rcommaaccent - rcommaaccent.glif - rdotaccent - rdotaccent.glif - rdotbelow - rdotbelow.glif - registered - registered.glif - ring - ring.glif - ringcmb - ringcmb.glif - ringcmb.cap - ringcmb.cap.glif - ringhalfleft - ringhalfleft.glif - ringhalfright - ringhalfright.glif - rlinebelow - rlinebelow.glif - rmacrondotbelow - rmacrondotbelow.glif - s - s.glif - sacute - sacute.glif - scaron - scaron.glif - scedilla - scedilla.glif - schwa - schwa.glif - scircumflex - scircumflex.glif - scommaaccent - scommaaccent.glif - sdotbelow - sdotbelow.glif - section - section.glif - semicolon - semicolon.glif - servicemark - servicemark.glif - seven - seven.glif - seven.den - seven.den.glif - seven.inf - seven.inf.glif - seven.num - seven.num.glif - seven.sup - seven.sup.glif - seveneighths - seveneighths.glif - six - six.glif - six.den - six.den.glif - six.inf - six.inf.glif - six.num - six.num.glif - six.sup - six.sup.glif - slash - slash.glif - space - space.glif - sterling - sterling.glif - t - t.glif - tbar - tbar.glif - tcaron - tcaron.glif - tcedilla - tcedilla.glif - tcircumflexbelow - tcircumflexbelow.glif - tcommaaccent - tcommaaccent.glif - tdotbelow - tdotbelow.glif - thorn - thorn.glif - three - three.glif - three.den - three.den.glif - three.inf - three.inf.glif - three.num - three.num.glif - three.sup - three.sup.glif - threeeighths - threeeighths.glif - threefifths - threefifths.glif - threequarters - threequarters.glif - tilde - tilde.glif - tildecmb - tildecmb.glif - tildecmb.cap - tildecmb.cap.glif - tlinebelow - tlinebelow.glif - trademark - trademark.glif - two - two.glif - two.den - two.den.glif - two.inf - two.inf.glif - two.num - two.num.glif - two.sup - two.sup.glif - twodotleader - twodotleader.glif - twofifths - twofifths.glif - twothirds - twothirds.glif - u - u.glif - uacute - uacute.glif - ubreve - ubreve.glif - ucaron - ucaron.glif - ucircumflex - ucircumflex.glif - udieresis - udieresis.glif - udieresisacute - udieresisacute.glif - udieresiscaron - udieresiscaron.glif - udieresisgrave - udieresisgrave.glif - udieresismacron - udieresismacron.glif - udotbelow - udotbelow.glif - ugrave - ugrave.glif - uhookabove - uhookabove.glif - uhorn - uhorn.glif - uhornacute - uhornacute.glif - uhorndotbelow - uhorndotbelow.glif - uhorngrave - uhorngrave.glif - uhornhookabove - uhornhookabove.glif - uhorntilde - uhorntilde.glif - uhungarumlaut - uhungarumlaut.glif - umacron - umacron.glif - underscore - underscore.glif - uni00A0 - uni00A_0.glif - uni0326 - uni0326.glif - uni1E9E - uni1E_9E_.glif - uni2011 - uni2011.glif - uni20B9 - uni20B_9.glif - uni20BA - uni20B_A_.glif - uni20BD - uni20B_D_.glif - uniA788 - uniA_788.glif - uogonek - uogonek.glif - uring - uring.glif - utilde - utilde.glif - v - v.glif - vdotbelow - vdotbelow.glif - verticallinelowmod - verticallinelowmod.glif - verticallinemod - verticallinemod.glif - w - w.glif - wacute - wacute.glif - wcircumflex - wcircumflex.glif - wdieresis - wdieresis.glif - wgrave - wgrave.glif - won - won.glif - x - x.glif - xdieresis - xdieresis.glif - y - y.glif - yacute - yacute.glif - ycircumflex - ycircumflex.glif - ydieresis - ydieresis.glif - ydotaccent - ydotaccent.glif - ydotbelow - ydotbelow.glif - yen - yen.glif - ygrave - ygrave.glif - yhookabove - yhookabove.glif - ymacron - ymacron.glif - ytilde - ytilde.glif - z - z.glif - zacute - zacute.glif - zcaron - zcaron.glif - zcircumflex - zcircumflex.glif - zdotaccent - zdotaccent.glif - zdotbelow - zdotbelow.glif - zero - zero.glif - zero.den - zero.den.glif - zero.inf - zero.inf.glif - zero.num - zero.num.glif - zero.sup - zero.sup.glif - zlinebelow - zlinebelow.glif - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dcaron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dcaron.glif deleted file mode 100644 index 988750a4..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dcircumflexbelow.glif deleted file mode 100644 index d480b92c..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dcroat.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dcroat.glif deleted file mode 100644 index 2b08ce23..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dcroat.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ddotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ddotbelow.glif deleted file mode 100644 index 783e2aec..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ddotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresisacute.cap.glif deleted file mode 100644 index 66cb56bd..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresisacute.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresisacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresisacute.glif deleted file mode 100644 index d64f8d32..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresisacute.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresisbelowcmb.glif deleted file mode 100644 index 4a00e554..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresisbelowcmb.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresiscaron.cap.glif deleted file mode 100644 index 0d50fec7..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresiscaron.cap.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresiscaron.glif deleted file mode 100644 index 18047778..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresiscaron.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresisgrave.cap.glif deleted file mode 100644 index 2a532f45..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresisgrave.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresisgrave.glif deleted file mode 100644 index 952bf1ac..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresisgrave.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresismacron.cap.glif deleted file mode 100644 index 17417dd2..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresismacron.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresismacron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresismacron.glif deleted file mode 100644 index 36f0db2d..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresismacron.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dlinebelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dlinebelow.glif deleted file mode 100644 index ea067292..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dotlessj.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dotlessj.glif deleted file mode 100644 index 514716a6..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dotlessj.glif +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ecircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ecircumflex.glif deleted file mode 100644 index d469a35c..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ecircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ecircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ecircumflexacute.glif deleted file mode 100644 index 195f591e..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ecircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ecircumflexdotbelow.glif deleted file mode 100644 index 15112f20..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ecircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ecircumflexgrave.glif deleted file mode 100644 index 9b60823e..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ecircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ecircumflexhookabove.glif deleted file mode 100644 index 9203e2d6..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ecircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ecircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ecircumflextilde.glif deleted file mode 100644 index 2b851a25..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ecircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/edotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/edotbelow.glif deleted file mode 100644 index febd8464..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/edotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eight.num.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eight.num.glif deleted file mode 100644 index 3b295fae..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eight.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eng.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eng.glif deleted file mode 100644 index c4cd2a73..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eng.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eogonek.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eogonek.glif deleted file mode 100644 index c8d6324a..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eogonek.glif +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eth.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eth.glif deleted file mode 100644 index ec0f99c9..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eth.glif +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/five.num.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/five.num.glif deleted file mode 100644 index d531edc8..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/five.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/four.num.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/four.num.glif deleted file mode 100644 index a78544ed..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/four.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gbreve.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gbreve.glif deleted file mode 100644 index 72b550f9..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gbreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gcaron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gcaron.glif deleted file mode 100644 index 00dcceb4..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gcircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gcircumflex.glif deleted file mode 100644 index 35be0e0c..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gcommaaccent.glif deleted file mode 100644 index 10642133..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gdotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gdotaccent.glif deleted file mode 100644 index b8828ab4..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/germandbls.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/germandbls.glif deleted file mode 100644 index c0df0261..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/germandbls.glif +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gmacron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gmacron.glif deleted file mode 100644 index 3d6b46df..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gmacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hbar.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hbar.glif deleted file mode 100644 index 4dc55afb..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hbar.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hbrevebelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hbrevebelow.glif deleted file mode 100644 index 6c9f41fd..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hbrevebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hcedilla.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hcedilla.glif deleted file mode 100644 index 835ff76b..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hcedilla.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hcircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hcircumflex.glif deleted file mode 100644 index a594455d..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hdotbelow.glif deleted file mode 100644 index af36dff3..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hlinebelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hlinebelow.glif deleted file mode 100644 index ecef774d..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hookcmb.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hookcmb.glif deleted file mode 100644 index 7b731b4c..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hookcmb.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/iacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/iacute.glif deleted file mode 100644 index 04526788..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/iacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ibreve.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ibreve.glif deleted file mode 100644 index 0e6456c9..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ibreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/icaron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/icaron.glif deleted file mode 100644 index b3d59641..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/icaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/icircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/icircumflex.glif deleted file mode 100644 index 887435d8..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/icircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/idieresis.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/idieresis.glif deleted file mode 100644 index fe972605..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/idieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/idotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/idotaccent.glif deleted file mode 100644 index 9dd7bf41..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/idotaccent.glif +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/igrave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/igrave.glif deleted file mode 100644 index 3604c692..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/igrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ihookabove.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ihookabove.glif deleted file mode 100644 index cd20c1f7..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ihookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/imacron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/imacron.glif deleted file mode 100644 index b2ef5654..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/imacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/iogonek.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/iogonek.glif deleted file mode 100644 index 4898348d..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/iogonek.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/itilde.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/itilde.glif deleted file mode 100644 index f91d3704..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/itilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/jcaron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/jcaron.glif deleted file mode 100644 index 4ce8c4d2..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/jcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/jcircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/jcircumflex.glif deleted file mode 100644 index 2a03b027..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/jcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/kcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/kcommaaccent.glif deleted file mode 100644 index da05a6a8..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/kcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/kdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/kdotbelow.glif deleted file mode 100644 index 321cc79d..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/kdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/klinebelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/klinebelow.glif deleted file mode 100644 index 0b617ae2..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/klinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/l.dot.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/l.dot.glif deleted file mode 100644 index 4d1a92da..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/l.dot.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/lacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/lacute.glif deleted file mode 100644 index 62103013..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/lacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/lcaron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/lcaron.glif deleted file mode 100644 index 4e260f6d..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/lcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/lcircumflexbelow.glif deleted file mode 100644 index 202f0f8a..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/lcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/lcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/lcommaaccent.glif deleted file mode 100644 index 72cdb48e..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/lcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ldotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ldotbelow.glif deleted file mode 100644 index b68ad8b4..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ldotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/llinebelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/llinebelow.glif deleted file mode 100644 index 586b0c3a..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/llinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/lmacrondotbelow.glif deleted file mode 100644 index 603b8864..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/lmacrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/lslash.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/lslash.glif deleted file mode 100644 index 8a9354c0..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/lslash.glif +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/middotcat.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/middotcat.glif deleted file mode 100644 index 045e8e50..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/middotcat.glif +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/nacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/nacute.glif deleted file mode 100644 index 2add665f..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/nacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ncaron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ncaron.glif deleted file mode 100644 index a8240ee3..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ncaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ncircumflexbelow.glif deleted file mode 100644 index 554d5c5c..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ncircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ncommaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ncommaaccent.glif deleted file mode 100644 index 46631520..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ncommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ndotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ndotaccent.glif deleted file mode 100644 index 5bec786f..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ndotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ndotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ndotbelow.glif deleted file mode 100644 index c5593518..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ngrave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ngrave.glif deleted file mode 100644 index d6800331..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/nine.num.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/nine.num.glif deleted file mode 100644 index 67b40ebf..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/nine.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/nlinebelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/nlinebelow.glif deleted file mode 100644 index 6793c665..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/nlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ntilde.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ntilde.glif deleted file mode 100644 index f74b9c30..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/oacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/oacute.glif deleted file mode 100644 index a87ca051..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/oacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/obreve.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/obreve.glif deleted file mode 100644 index 9d50fb61..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/obreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocaron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocaron.glif deleted file mode 100644 index e412d578..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocircumflex.glif deleted file mode 100644 index aa2cf425..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocircumflexacute.glif deleted file mode 100644 index e12659e4..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocircumflexdotbelow.glif deleted file mode 100644 index 31439fea..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocircumflexgrave.glif deleted file mode 100644 index fad0cb72..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocircumflexhookabove.glif deleted file mode 100644 index 06f6ed24..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocircumflextilde.glif deleted file mode 100644 index 31ad70d2..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ocircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/odieresis.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/odieresis.glif deleted file mode 100644 index 3d61b10f..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/odieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/odotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/odotaccent.glif deleted file mode 100644 index 24834f7d..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/odotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/odotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/odotbelow.glif deleted file mode 100644 index b8af3467..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/odotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/oe.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/oe.glif deleted file mode 100644 index 998ad5f2..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/oe.glif +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ograve.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ograve.glif deleted file mode 100644 index 39502ecd..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ograve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohookabove.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohookabove.glif deleted file mode 100644 index 5933e5ba..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohorn.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohorn.glif deleted file mode 100644 index 56b19194..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohorn.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohornacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohornacute.glif deleted file mode 100644 index b50fa34e..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohorndotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohorndotbelow.glif deleted file mode 100644 index 5af08285..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohorndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohorngrave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohorngrave.glif deleted file mode 100644 index 4e08f1f5..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohorngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohornhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohornhookabove.glif deleted file mode 100644 index 70dae60f..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohorntilde.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohorntilde.glif deleted file mode 100644 index 8011e712..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohorntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohungarumlaut.glif deleted file mode 100644 index b2fae980..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ohungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/omacron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/omacron.glif deleted file mode 100644 index 3cfe4eda..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/omacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/one.num.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/one.num.glif deleted file mode 100644 index 2c736483..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/one.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/oogonek.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/oogonek.glif deleted file mode 100644 index 0da5c182..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/oogonek.glif +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/oslash.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/oslash.glif deleted file mode 100644 index 17724baa..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/oslash.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/otilde.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/otilde.glif deleted file mode 100644 index 40b21287..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/otilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/racute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/racute.glif deleted file mode 100644 index 93910d9f..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/racute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/rcaron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/rcaron.glif deleted file mode 100644 index c8c5edaa..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/rcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/rcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/rcommaaccent.glif deleted file mode 100644 index 4a8c08ab..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/rcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/rdotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/rdotaccent.glif deleted file mode 100644 index 48186369..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/rdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/rdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/rdotbelow.glif deleted file mode 100644 index 4df68053..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/rdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ringcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ringcmb.cap.glif deleted file mode 100644 index eb3831ef..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ringcmb.cap.glif +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/rlinebelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/rlinebelow.glif deleted file mode 100644 index c3303509..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/rlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/rmacrondotbelow.glif deleted file mode 100644 index f7dc462d..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/rmacrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/sacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/sacute.glif deleted file mode 100644 index 192d15b7..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/sacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/scaron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/scaron.glif deleted file mode 100644 index b18a3017..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/scaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/scedilla.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/scedilla.glif deleted file mode 100644 index 1eece3a5..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/scedilla.glif +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/schwa.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/schwa.glif deleted file mode 100644 index 9da699e3..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/schwa.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/scircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/scircumflex.glif deleted file mode 100644 index 15d03f9f..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/scircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/scommaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/scommaaccent.glif deleted file mode 100644 index 522c5eaf..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/scommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/sdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/sdotbelow.glif deleted file mode 100644 index b91a9418..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/sdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/seven.num.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/seven.num.glif deleted file mode 100644 index 4a2870c3..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/seven.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/six.num.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/six.num.glif deleted file mode 100644 index 5de7ecf5..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/six.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tbar.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tbar.glif deleted file mode 100644 index b485fe87..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tbar.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tcaron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tcaron.glif deleted file mode 100644 index d1039827..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tcedilla.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tcedilla.glif deleted file mode 100644 index 9dabb735..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tcedilla.glif +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tcircumflexbelow.glif deleted file mode 100644 index 6760ada9..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tcommaaccent.glif deleted file mode 100644 index c69fb011..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tdotbelow.glif deleted file mode 100644 index a712e0f9..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/thorn.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/thorn.glif deleted file mode 100644 index e830bc08..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/thorn.glif +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/three.num.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/three.num.glif deleted file mode 100644 index a260e860..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/three.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tlinebelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tlinebelow.glif deleted file mode 100644 index 9d79b99a..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/two.num.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/two.num.glif deleted file mode 100644 index 76a642f3..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/two.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uacute.glif deleted file mode 100644 index 390b7b20..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ubreve.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ubreve.glif deleted file mode 100644 index 9536973c..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ubreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ucaron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ucaron.glif deleted file mode 100644 index a27a2265..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ucaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ucircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ucircumflex.glif deleted file mode 100644 index 7fa09f33..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ucircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/udieresis.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/udieresis.glif deleted file mode 100644 index 452ddae8..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/udieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/udieresisacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/udieresisacute.glif deleted file mode 100644 index 01da6a74..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/udieresisacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/udieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/udieresiscaron.glif deleted file mode 100644 index bcec521d..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/udieresiscaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/udieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/udieresisgrave.glif deleted file mode 100644 index e8e92711..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/udieresisgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/udieresismacron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/udieresismacron.glif deleted file mode 100644 index f3e1d486..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/udieresismacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/udotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/udotbelow.glif deleted file mode 100644 index cb985663..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/udotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ugrave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ugrave.glif deleted file mode 100644 index 8c80d6c7..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ugrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhookabove.glif deleted file mode 100644 index 67080e24..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhorn.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhorn.glif deleted file mode 100644 index 8a8b4262..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhorn.glif +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhornacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhornacute.glif deleted file mode 100644 index 7b969c16..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhorndotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhorndotbelow.glif deleted file mode 100644 index e5e46084..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhorndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhorngrave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhorngrave.glif deleted file mode 100644 index f1933fcc..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhorngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhornhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhornhookabove.glif deleted file mode 100644 index 109e611e..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhorntilde.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhorntilde.glif deleted file mode 100644 index f11d6980..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhorntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhungarumlaut.glif deleted file mode 100644 index 90aa79c3..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uhungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/umacron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/umacron.glif deleted file mode 100644 index 9eef56f6..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/umacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uni1E_9E_.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uni1E_9E_.glif deleted file mode 100644 index 8fce49e8..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uni1E_9E_.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uogonek.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uogonek.glif deleted file mode 100644 index 44f80b5d..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uogonek.glif +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uring.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uring.glif deleted file mode 100644 index 53a61ce6..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/utilde.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/utilde.glif deleted file mode 100644 index b508df2c..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/utilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/vdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/vdotbelow.glif deleted file mode 100644 index 00f9f759..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/vdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/wacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/wacute.glif deleted file mode 100644 index 14f28635..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/wacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/wgrave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/wgrave.glif deleted file mode 100644 index 74191ed0..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/wgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/xdieresis.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/xdieresis.glif deleted file mode 100644 index c42acf7b..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/xdieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/yacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/yacute.glif deleted file mode 100644 index 5584d5db..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/yacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ycircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ycircumflex.glif deleted file mode 100644 index 285ca65c..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ycircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ydieresis.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ydieresis.glif deleted file mode 100644 index 2ce471ae..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ydieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ydotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ydotaccent.glif deleted file mode 100644 index 82393baf..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ydotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ydotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ydotbelow.glif deleted file mode 100644 index 0c53dbcf..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ydotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ygrave.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ygrave.glif deleted file mode 100644 index ba0b5c5f..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ygrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/yhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/yhookabove.glif deleted file mode 100644 index c6934907..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/yhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ymacron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ymacron.glif deleted file mode 100644 index 55c9a526..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ymacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ytilde.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ytilde.glif deleted file mode 100644 index 9b968c5b..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ytilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zacute.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zacute.glif deleted file mode 100644 index 6d736c09..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zcaron.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zcaron.glif deleted file mode 100644 index 5f96e053..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zcircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zcircumflex.glif deleted file mode 100644 index 747e0006..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zdotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zdotaccent.glif deleted file mode 100644 index 94425e21..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zdotbelow.glif deleted file mode 100644 index d2198aeb..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zero.num.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zero.num.glif deleted file mode 100644 index eabd1785..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zero.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zlinebelow.glif b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zlinebelow.glif deleted file mode 100644 index 708a5568..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/lib.plist b/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/lib.plist deleted file mode 100644 index 6cee22db..00000000 --- a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/lib.plist +++ /dev/null @@ -1,1288 +0,0 @@ - - - - - com.typemytype.robofont.compileSettings.autohint - - com.typemytype.robofont.compileSettings.checkOutlines - - com.typemytype.robofont.compileSettings.createDummyDSIG - - com.typemytype.robofont.compileSettings.decompose - - com.typemytype.robofont.compileSettings.generateFormat - 1 - com.typemytype.robofont.compileSettings.releaseMode - 1 - com.typemytype.robofont.italicSlantOffset - 0 - com.typemytype.robofont.segmentType - curve - com.typemytype.robofont.shouldAddPointsInSplineConversion - 1 - public.glyphOrder - - .notdef - A - B - C - D - E - F - G - H - I - J - K - L - M - N - O - P - Q - R - S - T - U - V - W - X - Y - Z - a - b - c - d - e - f - g - h - i - j - k - l - m - n - o - p - q - r - s - t - u - v - w - x - y - z - period - comma - colon - semicolon - question - exclam - questiondown - exclamdown - ellipsis - twodotleader - quotedblleft - quotedblright - quotedblbase - quoteleft - quoteright - quotesinglbase - guillemetleft - guillemetright - guilsinglleft - guilsinglright - parenleft - parenright - bracketleft - bracketright - braceleft - braceright - slash - backslash - bar - hyphen - endash - emdash - periodcentered - bullet - underscore - ampersand - at - published - copyright - registered - servicemark - trademark - asterisk - dagger - daggerdbl - section - paragraph - zero - one - two - three - four - five - six - seven - eight - nine - colon.fig - plus - divide - minus - equal - notequal - asciitilde - approxequal - multiply - less - greater - lessequal - greaterequal - plusminus - asciicircum - mu - numbersign - percent - quotedbl - quotesingle - ordfeminine - ordmasculine - degree - dollar - sterling - yen - Euro - naira - peso - uni20BA - uni20BD - uni20B9 - bahtthai - won - cent - dong - onehalf - onethird - twothirds - onequarter - threequarters - onefifth - twofifths - threefifths - fourfifths - onesixth - fivesixths - oneeighth - threeeighths - fiveeighths - seveneighths - zero.sup - one.sup - two.sup - three.sup - four.sup - five.sup - six.sup - seven.sup - eight.sup - nine.sup - zero.inf - one.inf - two.inf - three.inf - four.inf - five.inf - six.inf - seven.inf - eight.inf - nine.inf - primemod - dblprimemod - commaturnedmod - apostrophemod - ringhalfleft - ringhalfright - verticallinemod - verticallinelowmod - acute - hungarumlaut - grave - circumflex - caron - breve - tilde - macron - dieresis - dotaccent - ring - uniA788 - macronlowmod - cedilla - ogonek - Aacute - Agrave - Acircumflex - Acircumflexdotbelow - Acircumflexacute - Acircumflexgrave - Acircumflexhookabove - Acircumflextilde - Acaron - Abreve - Abrevedotbelow - Abreveacute - Abrevegrave - Abrevehookabove - Abrevetilde - Atilde - Amacron - Adieresis - Adotaccent - Aring - Ahookabove - Adotbelow - Aogonek - AE - Blinebelow - Cacute - Ccircumflex - Ccaron - Cdotaccent - Ccedilla - Dcaron - Dcircumflexbelow - Dlinebelow - Ddotbelow - Dcroat - Eacute - Egrave - Ecircumflex - Ecircumflexdotbelow - Ecircumflexacute - Ecircumflexgrave - Ecircumflexhookabove - Ecircumflextilde - Ecaron - Ebreve - Etilde - Emacron - Edieresis - Edotaccent - Ehookabove - Edotbelow - Eogonek - Gcircumflex - Gcaron - Gbreve - Gmacron - Gdotaccent - Gcommaaccent - Hcircumflex - Hbrevebelow - Hdotbelow - Hcedilla - Hbar - Iacute - Igrave - Icircumflex - Icaron - Ibreve - Itilde - Imacron - Idieresis - Idotaccent - Ihookabove - Idotbelow - Iogonek - Jcircumflex - Klinebelow - Kcommaaccent - Kdotbelow - Lacute - Lcaron - Lcommaaccent - Lcircumflexbelow - Llinebelow - Lmacrondotbelow - Ldotbelow - L.dot - Lslash - Macute - Mdotaccent - Mdotbelow - Nacute - Ngrave - Ncaron - Ntilde - Ndotaccent - Ncircumflexbelow - Ncommaaccent - Ndotbelow - Nlinebelow - Eng - Oacute - Ohungarumlaut - Ograve - Ocircumflex - Ocircumflexdotbelow - Ocircumflexacute - Ocircumflexgrave - Ocircumflexhookabove - Ocircumflextilde - Ocaron - Obreve - Otilde - Omacron - Odieresis - Odotaccent - Ohookabove - Odotbelow - Oogonek - Oslash - OE - Ohorn - Ohornacute - Ohorngrave - Ohorntilde - Ohornhookabove - Ohorndotbelow - Racute - Rcaron - Rdotaccent - Rmacrondotbelow - Rcommaaccent - Rdotbelow - Rlinebelow - Sacute - Scircumflex - Scaron - Scommaaccent - Sdotbelow - Scedilla - uni1E9E - Tcaron - Tcircumflexbelow - Tcommaaccent - Tdotbelow - Tlinebelow - Tcedilla - Tbar - Uacute - Uhungarumlaut - Ugrave - Ucircumflex - Ucaron - Ubreve - Utilde - Umacron - Udieresis - Udieresisacute - Udieresisgrave - Udieresiscaron - Udieresismacron - Uring - Uhookabove - Udotbelow - Uogonek - Uhorn - Uhornacute - Uhorngrave - Uhorntilde - Uhornhookabove - Uhorndotbelow - Vdotbelow - Wacute - Wgrave - Wcircumflex - Wdieresis - Xdieresis - Yacute - Ygrave - Ycircumflex - Ytilde - Ymacron - Ydieresis - Ydotaccent - Yhookabove - Ydotbelow - Zacute - Zcircumflex - Zcaron - Zdotaccent - Zdotbelow - Zlinebelow - Eth - Thorn - Schwa - aacute - agrave - acircumflex - acircumflexdotbelow - acircumflexacute - acircumflexgrave - acircumflexhookabove - acircumflextilde - acaron - abreve - abrevedotbelow - abreveacute - abrevegrave - abrevehookabove - abrevetilde - atilde - amacron - adieresis - adotaccent - aring - ahookabove - adotbelow - aogonek - ae - blinebelow - cacute - ccircumflex - ccaron - cdotaccent - ccedilla - dcaron - dcircumflexbelow - dlinebelow - ddotbelow - dcroat - eacute - egrave - ecircumflex - ecircumflexdotbelow - ecircumflexacute - ecircumflexgrave - ecircumflexhookabove - ecircumflextilde - ecaron - ebreve - etilde - emacron - edieresis - edotaccent - ehookabove - edotbelow - eogonek - gcircumflex - gcaron - gbreve - gmacron - gdotaccent - gcommaaccent - hcircumflex - hbrevebelow - hlinebelow - hdotbelow - hcedilla - hbar - dotlessi - iacute - igrave - icircumflex - icaron - ibreve - itilde - imacron - idieresis - idotaccent - ihookabove - idotbelow - iogonek - dotlessj - jcircumflex - jcaron - klinebelow - kcommaaccent - kdotbelow - lacute - lcaron - lcommaaccent - lcircumflexbelow - llinebelow - lmacrondotbelow - ldotbelow - l.dot - lslash - macute - mdotaccent - mdotbelow - nacute - ngrave - ncaron - ntilde - ndotaccent - ncircumflexbelow - ncommaaccent - ndotbelow - nlinebelow - eng - oacute - ohungarumlaut - ograve - ocircumflex - ocircumflexdotbelow - ocircumflexacute - ocircumflexgrave - ocircumflexhookabove - ocircumflextilde - ocaron - obreve - otilde - omacron - odieresis - odotaccent - ohookabove - odotbelow - oogonek - oslash - oe - ohorn - ohornacute - ohorngrave - ohorntilde - ohornhookabove - ohorndotbelow - racute - rcaron - rdotaccent - rmacrondotbelow - rcommaaccent - rdotbelow - rlinebelow - sacute - scircumflex - scaron - scommaaccent - sdotbelow - scedilla - germandbls - tcaron - tcircumflexbelow - tcommaaccent - tdotbelow - tlinebelow - tcedilla - tbar - uacute - uhungarumlaut - ugrave - ucircumflex - ucaron - ubreve - utilde - umacron - udieresis - udieresisacute - udieresisgrave - udieresiscaron - udieresismacron - uring - uhookabove - udotbelow - uogonek - uhorn - uhornacute - uhorngrave - uhorntilde - uhornhookabove - uhorndotbelow - vdotbelow - wacute - wgrave - wcircumflex - wdieresis - xdieresis - yacute - ygrave - ycircumflex - ytilde - ymacron - ydieresis - ydotaccent - yhookabove - ydotbelow - zacute - zcircumflex - zcaron - zdotaccent - zdotbelow - zlinebelow - eth - thorn - schwa - space - uni00A0 - zero.num - one.num - two.num - three.num - four.num - five.num - six.num - seven.num - eight.num - nine.num - fraction - fracbar - zero.den - one.den - two.den - three.den - four.den - five.den - six.den - seven.den - eight.den - nine.den - uni2011 - horizontalbar - middotcat - middotcat.cap - acutecmb - hungarumlautcmb - gravecmb - commaaboverightcmb - circumflexcmb - caroncmb - brevecmb - tildecmb - macroncmb - dieresiscmb - dotaccentcmb - ringcmb - commaturnedabovecmb - hookcmb - circumflexbelowcmb - brevebelowcmb - macronbelowcmb - dieresisbelowcmb - dotbelowcmb - uni0326 - cedillacmb - ogonekcmb - dieresisacute - dieresisgrave - dieresiscaron - dieresismacron - breveacute - brevegrave - brevehook - brevetilde - circumflexacute - circumflexgrave - circumflexhook - circumflextilde - acutecmb.cap - hungarumlautcmb.cap - gravecmb.cap - circumflexcmb.cap - caroncmb.cap - brevecmb.cap - tildecmb.cap - macroncmb.cap - dieresiscmb.cap - dotaccentcmb.cap - ringcmb.cap - hookcmb.cap - dieresisacute.cap - dieresisgrave.cap - dieresiscaron.cap - dieresismacron.cap - breveacute.cap - brevegrave.cap - brevehook.cap - brevetilde.cap - circumflexacute.cap - circumflexgrave.cap - circumflexhook.cap - circumflextilde.cap - - public.postscriptNames - - Abreveacute - uni1EAE - Abrevedotbelow - uni1EB6 - Abrevegrave - uni1EB0 - Abrevehookabove - uni1EB2 - Abrevetilde - uni1EB4 - Acaron - uni01CD - Acircumflexacute - uni1EA4 - Acircumflexdotbelow - uni1EAC - Acircumflexgrave - uni1EA6 - Acircumflexhookabove - uni1EA8 - Acircumflextilde - uni1EAA - Adotaccent - uni0226 - Adotbelow - uni1EA0 - Ahookabove - uni1EA2 - Blinebelow - uni1E06 - Dcircumflexbelow - uni1E12 - Ddotbelow - uni1E0C - Dlinebelow - uni1E0E - Ecircumflexacute - uni1EBE - Ecircumflexdotbelow - uni1EC6 - Ecircumflexgrave - uni1EC0 - Ecircumflexhookabove - uni1EC2 - Ecircumflextilde - uni1EC4 - Edotbelow - uni1EB8 - Ehookabove - uni1EBA - Etilde - uni1EBC - Gcommaaccent - uni0122 - Gmacron - uni1E20 - Hbrevebelow - uni1E2A - Hcedilla - uni1E28 - Hdotbelow - uni1E24 - Icaron - uni01CF - Idotbelow - uni1ECA - Ihookabove - uni1EC8 - Kcommaaccent - uni0136 - Kdotbelow - uni1E32 - Klinebelow - uni1E34 - L.dot - Ldot - Lcircumflexbelow - uni1E3C - Lcommaaccent - uni013B - Ldotbelow - uni1E36 - Llinebelow - uni1E3A - Lmacrondotbelow - uni1E38 - Macute - uni1E3E - Mdotaccent - uni1E40 - Mdotbelow - uni1E42 - Ncircumflexbelow - uni1E4A - Ncommaaccent - uni0145 - Ndotaccent - uni1E44 - Ndotbelow - uni1E46 - Ngrave - uni01F8 - Nlinebelow - uni1E48 - Ocaron - uni01D1 - Ocircumflexacute - uni1ED0 - Ocircumflexdotbelow - uni1ED8 - Ocircumflexgrave - uni1ED2 - Ocircumflexhookabove - uni1ED4 - Ocircumflextilde - uni1ED6 - Odotaccent - uni022E - Odotbelow - uni1ECC - Ohookabove - uni1ECE - Ohornacute - uni1EDA - Ohorndotbelow - uni1EE2 - Ohorngrave - uni1EDC - Ohornhookabove - uni1EDE - Ohorntilde - uni1EE0 - Oogonek - uni01EA - Rcommaaccent - uni0156 - Rdotaccent - uni1E58 - Rdotbelow - uni1E5A - Rlinebelow - uni1E5E - Rmacrondotbelow - uni1E5C - Scedilla - uni015E - Schwa - uni018F - Scommaaccent - uni0218 - Sdotbelow - uni1E62 - Tcedilla - uni0162 - Tcircumflexbelow - uni1E70 - Tcommaaccent - uni021A - Tdotbelow - uni1E6C - Tlinebelow - uni1E6E - Ucaron - uni01D3 - Udieresisacute - uni01D7 - Udieresiscaron - uni01D9 - Udieresisgrave - uni01DB - Udieresismacron - uni01D5 - Udotbelow - uni1EE4 - Uhookabove - uni1EE6 - Uhornacute - uni1EE8 - Uhorndotbelow - uni1EF0 - Uhorngrave - uni1EEA - Uhornhookabove - uni1EEC - Uhorntilde - uni1EEE - Vdotbelow - uni1E7E - Xdieresis - uni1E8C - Ydotaccent - uni1E8E - Ydotbelow - uni1EF4 - Yhookabove - uni1EF6 - Ymacron - uni0232 - Ytilde - uni1EF8 - Zcircumflex - uni1E90 - Zdotbelow - uni1E92 - Zlinebelow - uni1E94 - abreveacute - uni1EAF - abrevedotbelow - uni1EB7 - abrevegrave - uni1EB1 - abrevehookabove - uni1EB3 - abrevetilde - uni1EB5 - acaron - uni01CE - acircumflexacute - uni1EA5 - acircumflexdotbelow - uni1EAD - acircumflexgrave - uni1EA7 - acircumflexhookabove - uni1EA9 - acircumflextilde - uni1EAB - acutecmb - uni0301 - acutecmb.cap - uni0301.cap - adotaccent - uni0227 - adotbelow - uni1EA1 - ahookabove - uni1EA3 - apostrophemod - uni02BC - bahtthai - uni0E3F - blinebelow - uni1E07 - breveacute - uni02D80301 - breveacute.cap - uni02D80301.cap - brevebelowcmb - uni032E - brevecmb - uni0306 - brevecmb.cap - uni0306.cap - brevegrave - uni02D80300 - brevegrave.cap - uni02D80300.cap - brevehook - uni02D80309 - brevehook.cap - uni02D80309.cap - brevetilde - uni02D80303 - brevetilde.cap - uni02D80303.cap - caroncmb - uni030C - caroncmb.cap - uni030C.cap - cedillacmb - uni0327 - circumflexacute - uni02C60301 - circumflexacute.cap - uni02C60301.cap - circumflexbelowcmb - uni032D - circumflexcmb - uni0302 - circumflexcmb.cap - uni0302.cap - circumflexgrave - uni02C60300 - circumflexgrave.cap - uni02C60300.cap - circumflexhook - uni02C60309 - circumflexhook.cap - uni02C60309.cap - circumflextilde - uni02C60303 - circumflextilde.cap - uni02C60303.cap - commaaboverightcmb - uni0315 - commaturnedabovecmb - uni0312 - commaturnedmod - uni02BB - dblprimemod - uni02BA - dcircumflexbelow - uni1E13 - ddotbelow - uni1E0D - dieresisacute - uni00A80301 - dieresisacute.cap - uni00A80301.cap - dieresisbelowcmb - uni0324 - dieresiscaron - uni00A8030C - dieresiscaron.cap - uni00A8030C.cap - dieresiscmb - uni0308 - dieresiscmb.cap - uni0308.cap - dieresisgrave - uni00A80300 - dieresisgrave.cap - uni00A80300.cap - dieresismacron - uni00A80304 - dieresismacron.cap - uni00A80304.cap - dlinebelow - uni1E0F - dotaccentcmb - uni0307 - dotaccentcmb.cap - uni0307.cap - dotbelowcmb - uni0323 - dotlessj - uni0237 - ecircumflexacute - uni1EBF - ecircumflexdotbelow - uni1EC7 - ecircumflexgrave - uni1EC1 - ecircumflexhookabove - uni1EC3 - ecircumflextilde - uni1EC5 - edotbelow - uni1EB9 - ehookabove - uni1EBB - etilde - uni1EBD - gcommaaccent - uni0123 - gmacron - uni1E21 - gravecmb - uni0300 - gravecmb.cap - uni0300.cap - guillemetleft - uni00AB - guillemetright - uni00BB - hbrevebelow - uni1E2B - hcedilla - uni1E29 - hdotbelow - uni1E25 - hlinebelow - uni1E96 - hookcmb - uni0309 - hookcmb.cap - uni0309.cap - horizontalbar - uni2015 - hungarumlautcmb - uni030B - hungarumlautcmb.cap - uni030B.cap - icaron - uni01D0 - idotaccent - i.dot - idotbelow - uni1ECB - ihookabove - uni1EC9 - jcaron - uni01F0 - kcommaaccent - uni0137 - kdotbelow - uni1E33 - klinebelow - uni1E35 - l.dot - ldot - lcircumflexbelow - uni1E3D - lcommaaccent - uni013C - ldotbelow - uni1E37 - llinebelow - uni1E3B - lmacrondotbelow - uni1E39 - macronbelowcmb - uni0331 - macroncmb - uni0304 - macroncmb.cap - uni0304.cap - macronlowmod - uni02CD - macute - uni1E3F - mdotaccent - uni1E41 - mdotbelow - uni1E43 - naira - uni20A6 - ncircumflexbelow - uni1E4B - ncommaaccent - uni0146 - ndotaccent - uni1E45 - ndotbelow - uni1E47 - ngrave - uni01F9 - nlinebelow - uni1E49 - ocaron - uni01D2 - ocircumflexacute - uni1ED1 - ocircumflexdotbelow - uni1ED9 - ocircumflexgrave - uni1ED3 - ocircumflexhookabove - uni1ED5 - ocircumflextilde - uni1ED7 - odotaccent - uni022F - odotbelow - uni1ECD - ogonekcmb - uni0328 - ohookabove - uni1ECF - ohornacute - uni1EDB - ohorndotbelow - uni1EE3 - ohorngrave - uni1EDD - ohornhookabove - uni1EDF - ohorntilde - uni1EE1 - oogonek - uni01EB - peso - uni20B1 - primemod - uni02B9 - published - uni2117 - rcommaaccent - uni0157 - rdotaccent - uni1E59 - rdotbelow - uni1E5B - ringcmb - uni030A - ringcmb.cap - uni030A.cap - ringhalfleft - uni02BF - ringhalfright - uni02BE - rlinebelow - uni1E5F - rmacrondotbelow - uni1E5D - scedilla - uni015F - schwa - uni0259 - scommaaccent - uni0219 - sdotbelow - uni1E63 - servicemark - uni2120 - tcedilla - uni0163 - tcircumflexbelow - uni1E71 - tcommaaccent - uni021B - tdotbelow - uni1E6D - tildecmb - uni0303 - tildecmb.cap - uni0303.cap - tlinebelow - uni1E6F - twodotleader - uni2025 - ucaron - uni01D4 - udieresisacute - uni01D8 - udieresiscaron - uni01DA - udieresisgrave - uni01DC - udieresismacron - uni01D6 - udotbelow - uni1EE5 - uhookabove - uni1EE7 - uhornacute - uni1EE9 - uhorndotbelow - uni1EF1 - uhorngrave - uni1EEB - uhornhookabove - uni1EED - uhorntilde - uni1EEF - uni1E9E - uni1E9E - vdotbelow - uni1E7F - verticallinelowmod - uni02CC - verticallinemod - uni02C8 - won - uni20A9 - xdieresis - uni1E8D - ydotaccent - uni1E8F - ydotbelow - uni1EF5 - yhookabove - uni1EF7 - ymacron - uni0233 - ytilde - uni1EF9 - zcircumflex - uni1E91 - zdotbelow - uni1E93 - zlinebelow - uni1E95 - - - diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/features.fea b/sources/instances/truetype/IntelOneMono-Bold.ufo/features.fea new file mode 100644 index 00000000..6c520a9c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/features.fea @@ -0,0 +1,6 @@ + +include(../../features/shared.fea); + +include(../../features/mark/IntelOneMono-Italic mark.fea); + +include(../../features/aalt.fea); diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/fontinfo.plist b/sources/instances/truetype/IntelOneMono-Bold.ufo/fontinfo.plist new file mode 100644 index 00000000..9df6852a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/fontinfo.plist @@ -0,0 +1,384 @@ + + + + + ascender + 740 + capHeight + 655 + copyright + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + descender + -260 + familyName + Intel One Mono + guidelines + + italicAngle + 0.0 + openTypeHeadFlags + + 0 + 1 + + openTypeHheaAscender + 1090 + openTypeHheaDescender + -290 + openTypeHheaLineGap + 0 + openTypeNameDesigner + Fred Shallcrass + openTypeNameDesignerURL + http://frerejones.com + openTypeNameLicense + This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL + openTypeNameLicenseURL + https://github.com/intel/intel-one-mono/blob/main/license + openTypeNameManufacturer + Frere-Jones Type LLC + openTypeNameManufacturerURL + http://frerejones.com + openTypeNamePreferredFamilyName + Intel One Mono + openTypeNamePreferredSubfamilyName + Bold + openTypeNameRecords + + + encodingID + 0 + languageID + 0 + nameID + 0 + platformID + 1 + string + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + + + encodingID + 1 + languageID + 1033 + nameID + 0 + platformID + 3 + string + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + + + encodingID + 0 + languageID + 0 + nameID + 1 + platformID + 1 + string + Intel One Mono + + + encodingID + 1 + languageID + 1033 + nameID + 1 + platformID + 3 + string + Intel One Mono + + + encodingID + 0 + languageID + 0 + nameID + 2 + platformID + 1 + string + Bold + + + encodingID + 1 + languageID + 1033 + nameID + 2 + platformID + 3 + string + Bold + + + encodingID + 0 + languageID + 0 + nameID + 4 + platformID + 1 + string + Intel One Mono Bold + + + encodingID + 1 + languageID + 1033 + nameID + 4 + platformID + 3 + string + Intel One Mono Bold + + + encodingID + 0 + languageID + 0 + nameID + 6 + platformID + 1 + string + IntelOneMono-Bold + + + encodingID + 1 + languageID + 1033 + nameID + 6 + platformID + 3 + string + IntelOneMono-Bold + + + encodingID + 0 + languageID + 0 + nameID + 8 + platformID + 1 + string + Frere-Jones Type LLC + + + encodingID + 1 + languageID + 1033 + nameID + 8 + platformID + 3 + string + Frere-Jones Type LLC + + + encodingID + 0 + languageID + 0 + nameID + 9 + platformID + 1 + string + Fred Shallcrass + + + encodingID + 1 + languageID + 1033 + nameID + 9 + platformID + 3 + string + Fred Shallcrass + + + encodingID + 0 + languageID + 0 + nameID + 11 + platformID + 1 + string + http://frerejones.com + + + encodingID + 1 + languageID + 1033 + nameID + 11 + platformID + 3 + string + http://frerejones.com + + + encodingID + 0 + languageID + 0 + nameID + 12 + platformID + 1 + string + http://frerejones.com + + + encodingID + 1 + languageID + 1033 + nameID + 12 + platformID + 3 + string + http://frerejones.com + + + openTypeOS2CodePageRanges + + 0 + 1 + 4 + 7 + 8 + 29 + + openTypeOS2Panose + + 2 + 11 + 8 + 9 + 2 + 2 + 3 + 2 + 2 + 4 + + openTypeOS2Selection + + 7 + 8 + + openTypeOS2StrikeoutPosition + 286 + openTypeOS2StrikeoutSize + 50 + openTypeOS2Type + + openTypeOS2TypoAscender + 1090 + openTypeOS2TypoDescender + -290 + openTypeOS2TypoLineGap + 0 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 29 + 32 + + openTypeOS2VendorID + FRJN + openTypeOS2WeightClass + 700 + openTypeOS2WidthClass + 5 + openTypeOS2WinAscent + 1090 + openTypeOS2WinDescent + 290 + postscriptBlueFuzz + 0 + postscriptBlueScale + 0.05 + postscriptBlueValues + + -15 + 0 + 477 + 492 + 655 + 670 + 710 + 725 + + postscriptDefaultWidthX + 614 + postscriptFamilyBlues + + postscriptFamilyOtherBlues + + postscriptFontName + IntelOneMono-Bold + postscriptForceBold + + postscriptFullName + Intel One Mono Bold + postscriptIsFixedPitch + + postscriptOtherBlues + + -245 + -230 + + postscriptStemSnapH + + 120 + + postscriptStemSnapV + + 145 + 150 + + postscriptUnderlinePosition + -75 + postscriptUnderlineThickness + 50 + styleMapFamilyName + Intel One Mono + styleMapStyleName + bold + styleName + Bold + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 4 + xHeight + 477 + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_E_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_E_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_E_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_E_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_acute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_acute.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_breve.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_breve.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_breveacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_breveacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_breveacute.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_breveacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_brevedotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_brevedotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_brevedotbelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_brevedotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_brevegrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_brevegrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_brevegrave.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_brevegrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_brevehookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_brevehookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_brevehookabove.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_brevehookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_brevetilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_brevetilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_brevetilde.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_brevetilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_caron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_caron.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_circumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_circumflexdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_circumflexdotbelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_circumflexdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_circumflexhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_circumflexhookabove.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_circumflexhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_circumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_circumflextilde.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_circumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_dieresis.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_dieresis.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_grave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_grave.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_hookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_hookabove.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_macron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_macron.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_ogonek.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_ogonek.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_ring.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_ring.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_ring.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_ring.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_tilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/A_tilde.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/A_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/B_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/B_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/B_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/B_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/B_linebelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/B_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/B_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/B_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/C_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/C_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/C_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/C_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/C_acute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/C_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/C_acute.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/C_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/C_caron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/C_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/C_caron.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/C_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/C_cedilla.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/C_cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/C_cedilla.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/C_cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/C_circumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/C_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/C_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/C_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/C_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/C_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/C_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/C_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/D_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/D_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/D_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/D_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/D_caron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/D_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/D_caron.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/D_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/D_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/D_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/D_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/D_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/D_croat.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/D_croat.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/D_croat.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/D_croat.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/D_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/D_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/D_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/D_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/D_linebelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/D_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/D_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/D_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_acute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_acute.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_breve.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_breve.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_caron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_caron.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_circumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_circumflexdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_circumflexdotbelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_circumflexdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_circumflexhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_circumflexhookabove.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_circumflexhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_circumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_circumflextilde.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_circumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_dieresis.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_dieresis.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_grave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_grave.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_hookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_hookabove.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_macron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_macron.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_ng.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_ng.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_ng.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_ng.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_ogonek.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_ogonek.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_th.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_th.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_th.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_th.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_tilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_tilde.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_uro.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_uro.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/E_uro.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/E_uro.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/F_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/F_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/F_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/F_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/G_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/G_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/G_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/G_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/G_breve.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/G_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/G_breve.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/G_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/G_caron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/G_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/G_caron.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/G_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/G_circumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/G_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/G_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/G_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/G_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/G_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/G_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/G_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/G_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/G_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/G_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/G_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/G_macron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/G_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/G_macron.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/G_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/H_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/H_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/H_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/H_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/H_bar.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/H_bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/H_bar.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/H_bar.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/H_brevebelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/H_brevebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/H_brevebelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/H_brevebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/H_cedilla.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/H_cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/H_cedilla.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/H_cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/H_circumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/H_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/H_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/H_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/H_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/H_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/H_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/H_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_acute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_acute.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_breve.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_breve.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_caron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_caron.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_circumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_dieresis.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_dieresis.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_grave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_grave.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_hookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_hookabove.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_macron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_macron.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_ogonek.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_ogonek.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_tilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/I_tilde.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/I_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/J_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/J_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/J_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/J_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/J_circumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/J_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/J_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/J_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/K_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/K_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/K_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/K_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/K_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/K_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/K_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/K_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/K_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/K_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/K_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/K_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/K_linebelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/K_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/K_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/K_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_.dot.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_.dot.glif new file mode 100644 index 00000000..d6a0fcfd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_.dot.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + public.objectLibs + + component0 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + component1 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + component2 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + + public.truetype.overlap + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_acute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_acute.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_caron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_caron.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_linebelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_macrondotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_macrondotbelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_macrondotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_slash.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_slash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/L_slash.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/L_slash.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/M_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/M_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/M_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/M_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/M_acute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/M_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/M_acute.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/M_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/M_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/M_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/M_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/M_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/M_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/M_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/M_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/M_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/N_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/N_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/N_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/N_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/N_acute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/N_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/N_acute.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/N_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/N_caron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/N_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/N_caron.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/N_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/N_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/N_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/N_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/N_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/N_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/N_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/N_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/N_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/N_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/N_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/N_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/N_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/N_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/N_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/N_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/N_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/N_grave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/N_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/N_grave.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/N_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/N_linebelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/N_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/N_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/N_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/N_tilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/N_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/N_tilde.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/N_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_E_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..35b8569d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_E_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_acute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_acute.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_breve.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..c8b88195 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_breve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_caron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_caron.glif new file mode 100644 index 00000000..3f9c088e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_circumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..445c0bf5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_circumflexacute.glif new file mode 100644 index 00000000..6f1b42ac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_circumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_circumflexdotbelow.glif new file mode 100644 index 00000000..d8c070d8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_circumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_circumflexgrave.glif new file mode 100644 index 00000000..9ba2cfd8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_circumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_circumflexhookabove.glif new file mode 100644 index 00000000..3e0f0bb0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_circumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_circumflextilde.glif new file mode 100644 index 00000000..dc7a6ef6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_circumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_dieresis.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..e74012fb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_dotaccent.glif new file mode 100644 index 00000000..b65fcfa0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_dotbelow.glif new file mode 100644 index 00000000..c2bb1c9e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_grave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_grave.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_hookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_hookabove.glif new file mode 100644 index 00000000..b8b62caa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_horn.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_horn.glif new file mode 100644 index 00000000..9a768142 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_horn.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_hornacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_hornacute.glif new file mode 100644 index 00000000..cbc45aed --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_hornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_horndotbelow.glif new file mode 100644 index 00000000..a2a765a4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_horndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_horngrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_horngrave.glif new file mode 100644 index 00000000..0d879e97 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_horngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_hornhookabove.glif new file mode 100644 index 00000000..b2dd63d4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_hornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_horntilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_horntilde.glif new file mode 100644 index 00000000..29e74e1c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_horntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_hungarumlaut.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/O_hungarumlaut.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_hungarumlaut.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_macron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..4f5184c0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_ogonek.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_ogonek.glif new file mode 100644 index 00000000..76b3391c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_ogonek.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_slash.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..a6d26c51 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_slash.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_tilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..f9122105 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/O_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/P_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/P_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/P_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/P_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Q_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Q_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Q_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Q_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/R_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_acute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..252953de --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_caron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..48209b59 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..03cd713a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_dotaccent.glif new file mode 100644 index 00000000..31eeb0e1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_dotbelow.glif new file mode 100644 index 00000000..80d523ed --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_linebelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_linebelow.glif new file mode 100644 index 00000000..bd0305ba --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_macrondotbelow.glif new file mode 100644 index 00000000..46f52ef0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/R_macrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/S_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_acute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..c0a45dc1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_caron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..007a94c3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_cedilla.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..3e0c803b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_chwa.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..f3dc473c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_chwa.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_circumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..8bdf98cb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..9631155b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_dotbelow.glif new file mode 100644 index 00000000..b34e3d0b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/S_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_bar.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_bar.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_bar.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_caron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..23d20008 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_cedilla.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..10b215a9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_circumflexbelow.glif new file mode 100644 index 00000000..04e62723 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_circumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..8efd5833 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_dotbelow.glif new file mode 100644 index 00000000..3d102e5d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_horn.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..7dd09a25 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_horn.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_linebelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_linebelow.glif new file mode 100644 index 00000000..7c07de34 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/T_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_acute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..b0b6e168 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_breve.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..9eba3d7f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_breve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_caron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_caron.glif new file mode 100644 index 00000000..be0f3c37 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_circumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..56808f64 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_dieresis.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..c558bf10 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_dieresisacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_dieresisacute.glif new file mode 100644 index 00000000..e5cbbe3c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_dieresisacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_dieresiscaron.glif new file mode 100644 index 00000000..dc2ff1ac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_dieresiscaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_dieresisgrave.glif new file mode 100644 index 00000000..b227a449 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_dieresisgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_dieresismacron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_dieresismacron.glif new file mode 100644 index 00000000..3d8c49b3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_dieresismacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_dotbelow.glif new file mode 100644 index 00000000..d2f0ef86 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_grave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..debff763 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_hookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_hookabove.glif new file mode 100644 index 00000000..fccb10eb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_horn.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_horn.glif new file mode 100644 index 00000000..8a62d5d6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_horn.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_hornacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_hornacute.glif new file mode 100644 index 00000000..7e948009 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_hornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_horndotbelow.glif new file mode 100644 index 00000000..eb199a1c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_horndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_horngrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_horngrave.glif new file mode 100644 index 00000000..e2fae54b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_horngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_hornhookabove.glif new file mode 100644 index 00000000..fd1cf394 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_hornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_horntilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_horntilde.glif new file mode 100644 index 00000000..a348994a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_horntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..f97071b4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_macron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..f40fd627 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_ogonek.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..d013183e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_ring.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..f5aa731d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_ring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_tilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..7a348d5c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/U_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/V_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/V_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/V_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/V_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/V_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/V_dotbelow.glif new file mode 100644 index 00000000..5d1df2c8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/V_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/W_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/W_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/W_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/W_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/W_acute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..e279689d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/W_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/W_circumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..0593fed6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/W_dieresis.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..a513fa2d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/W_grave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..b7532bf3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/W_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/X_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/X_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/X_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/X_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/X_dieresis.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/X_dieresis.glif new file mode 100644 index 00000000..58ed5e6a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/X_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Y_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_acute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..74e61a54 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_circumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..ecf45d8f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_dieresis.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..0b114b1a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_dotaccent.glif new file mode 100644 index 00000000..8f57c05a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_dotbelow.glif new file mode 100644 index 00000000..f4686c7e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_grave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_grave.glif new file mode 100644 index 00000000..87c0c47b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_hookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_hookabove.glif new file mode 100644 index 00000000..3f2fa69c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_macron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_macron.glif new file mode 100644 index 00000000..7f35ee7e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_tilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_tilde.glif new file mode 100644 index 00000000..c6cae026 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Y_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Z_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Z_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/Z_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Z_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Z_acute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..e3464c24 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Z_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Z_caron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..c9a20969 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Z_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Z_circumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Z_circumflex.glif new file mode 100644 index 00000000..4c083cad --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Z_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Z_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..d0ded8cb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Z_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Z_dotbelow.glif new file mode 100644 index 00000000..7cbeea3c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Z_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Z_linebelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Z_linebelow.glif new file mode 100644 index 00000000..015a9488 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/Z_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/_notdef.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/_notdef.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/_notdef.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/_notdef.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/a.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/a.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/a.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/a.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/aacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..57a3ebdd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/aacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/abreve.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..ab366a79 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/abreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/abreveacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/abreveacute.glif new file mode 100644 index 00000000..87a5d745 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/abreveacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/abrevedotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/abrevedotbelow.glif new file mode 100644 index 00000000..73c6c281 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/abrevedotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/abrevegrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/abrevegrave.glif new file mode 100644 index 00000000..8d80d07c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/abrevegrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/abrevehookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/abrevehookabove.glif new file mode 100644 index 00000000..e7c47816 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/abrevehookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/abrevetilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/abrevetilde.glif new file mode 100644 index 00000000..41d76812 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/abrevetilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acaron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..30a6de80 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..d5c74b4d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acircumflexacute.glif new file mode 100644 index 00000000..79112c13 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acircumflexdotbelow.glif new file mode 100644 index 00000000..742f65b6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acircumflexgrave.glif new file mode 100644 index 00000000..f7a4c3fb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acircumflexhookabove.glif new file mode 100644 index 00000000..da81cb05 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acircumflextilde.glif new file mode 100644 index 00000000..eb124666 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acute.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acutecmb.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acutecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acutecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acutecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acutecmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acutecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acutecmb.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/acutecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/adieresis.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..bed7e43b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/adieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/adotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/adotaccent.glif new file mode 100644 index 00000000..06094c3a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/adotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/adotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/adotbelow.glif new file mode 100644 index 00000000..b2231476 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/adotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ae.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ae.glif new file mode 100644 index 00000000..f6f27bf4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ae.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/agrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..2ac33570 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/agrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ahookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ahookabove.glif new file mode 100644 index 00000000..a5d10857 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ahookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/amacron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..bd3b5c7b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/amacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ampersand.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ampersand.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ampersand.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ampersand.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ampersand_ampersand.liga.glif new file mode 100644 index 00000000..78d30532 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ampersand_ampersand.liga.glif @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/aogonek.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..67bafe42 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/aogonek.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/apostrophemod.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/apostrophemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/apostrophemod.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/apostrophemod.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/approxequal.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/approxequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/approxequal.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/approxequal.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/aring.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/aring.glif new file mode 100644 index 00000000..9f992e9e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/aring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/asciicircum.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciicircum.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/asciicircum.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciicircum.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciicircum_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciicircum_equal.liga.glif new file mode 100644 index 00000000..4b85eb3a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciicircum_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/asciitilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciitilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/asciitilde.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciitilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..fd727922 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciitilde_asciitilde.liga.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciitilde_asciitilde_greater.glif new file mode 100644 index 00000000..0ea507d2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciitilde_asciitilde_greater.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciitilde_at.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciitilde_at.liga.glif new file mode 100644 index 00000000..442d8570 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciitilde_at.liga.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciitilde_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciitilde_greater.liga.glif new file mode 100644 index 00000000..a59b61dd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciitilde_greater.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciitilde_hyphen.liga.glif new file mode 100644 index 00000000..eee09dd8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asciitilde_hyphen.liga.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/asterisk.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asterisk.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/asterisk.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asterisk.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asterisk_asterisk.liga.glif new file mode 100644 index 00000000..81c64581 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asterisk_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif new file mode 100644 index 00000000..eb2d054c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asterisk_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asterisk_greater.liga.glif new file mode 100644 index 00000000..bf9e6a9c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asterisk_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asterisk_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asterisk_slash.liga.glif new file mode 100644 index 00000000..1536beb0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/asterisk_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/at.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/at.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/at.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/at.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/atilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..08043abb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/atilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/b.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/b.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/b.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/b.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/backslash.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/backslash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/backslash.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/backslash.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/backslash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/backslash_slash.liga.glif new file mode 100644 index 00000000..9b00c61d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/backslash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/bahtthai.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bahtthai.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/bahtthai.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bahtthai.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/bar.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/bar.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar.liga.glif new file mode 100644 index 00000000..6e09a289 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_bar.liga.glif new file mode 100644 index 00000000..dc1b5564 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_bar.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_bar_greater.liga.glif new file mode 100644 index 00000000..7ccdfa87 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_bar_greater.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_equal.liga.glif new file mode 100644 index 00000000..b513601e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_equal.start.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_equal.start.glif new file mode 100644 index 00000000..6bf67ffd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_greater.liga.glif new file mode 100644 index 00000000..7ae63931 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_greater.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_hyphen.liga.glif new file mode 100644 index 00000000..c6d524a8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_hyphen.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_hyphen.start.glif new file mode 100644 index 00000000..7d081b60 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bar_hyphen.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_braceright.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_braceright.liga.glif new file mode 100644 index 00000000..87ace989 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_braceright.liga.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bracketright.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bracketright.liga.glif new file mode 100644 index 00000000..ea24243c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_bracketright.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_equal.liga.glif new file mode 100644 index 00000000..9df4f54e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_equal.start.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_equal.start.glif new file mode 100644 index 00000000..d41fd5f3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_greater.liga.glif new file mode 100644 index 00000000..c93223f0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_hyphen.liga.glif new file mode 100644 index 00000000..2732d712 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_hyphen.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_hyphen.start.glif new file mode 100644 index 00000000..6b68cdb7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bar_hyphen.start.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/blinebelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/blinebelow.glif new file mode 100644 index 00000000..9d46e0c7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/blinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/braceleft.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/braceleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/braceleft.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/braceleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/braceleft_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/braceleft_bar.liga.glif new file mode 100644 index 00000000..d4bf0380 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/braceleft_bar.liga.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/braceright.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/braceright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/braceright.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/braceright.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/bracketleft.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bracketleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/bracketleft.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bracketleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bracketleft_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bracketleft_bar.liga.glif new file mode 100644 index 00000000..333c3445 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bracketleft_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/bracketright.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bracketright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/bracketright.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bracketright.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bracketright_numbersign.liga.glif new file mode 100644 index 00000000..b625c15b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bracketright_numbersign.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/breve.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/breve.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/breveacute.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/breveacute.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/breveacute.cap.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/breveacute.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/breveacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/breveacute.glif new file mode 100644 index 00000000..b57fb2e9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/breveacute.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevebelowcmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevebelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevebelowcmb.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevebelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevecmb.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevecmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevecmb.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevegrave.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevegrave.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevegrave.cap.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevegrave.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevegrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevegrave.glif new file mode 100644 index 00000000..2da9ed52 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevegrave.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevehook.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevehook.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevehook.cap.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevehook.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevehook.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevehook.glif new file mode 100644 index 00000000..a662b233 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevehook.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevetilde.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevetilde.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/brevetilde.cap.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevetilde.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevetilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevetilde.glif new file mode 100644 index 00000000..8dfa5eaf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/brevetilde.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/bullet.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bullet.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/bullet.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/bullet.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/c.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/c.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/c.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/c.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/cacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..7ecfedec --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/cacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/caron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/caron.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/caroncmb.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/caroncmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/caroncmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/caroncmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/caroncmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/caroncmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/caroncmb.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/caroncmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ccaron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..fd65d4b8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ccaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ccedilla.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..6e270d5a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ccedilla.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ccircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..03f4ceb2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/cdotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..3c72ca25 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/cedilla.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/cedilla.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/cedillacmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/cedillacmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/cedillacmb.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/cedillacmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/cent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/cent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/cent.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/cent.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflex.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflexacute.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflexacute.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflexacute.cap.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflexacute.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflexbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflexbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflexbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflexbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflexcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflexcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflexcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflexcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflexcmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflexcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflexcmb.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflexcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflexgrave.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflexgrave.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflexgrave.cap.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflexgrave.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflexhook.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflexhook.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflexhook.cap.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflexhook.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflexhook.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflexhook.glif new file mode 100644 index 00000000..f90d5b86 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflexhook.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflextilde.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflextilde.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/circumflextilde.cap.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflextilde.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflextilde.glif new file mode 100644 index 00000000..36fe471c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/circumflextilde.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/colon.fig.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon.fig.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/colon.fig.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon.fig.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/colon.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/colon.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon_colon.liga.glif new file mode 100644 index 00000000..ace4265b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon_colon_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon_colon_colon.liga.glif new file mode 100644 index 00000000..d9d24432 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon_colon_colon.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon_colon_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon_colon_equal.liga.glif new file mode 100644 index 00000000..7aa9a3d7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon_colon_equal.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon_equal.liga.glif new file mode 100644 index 00000000..ad056f7e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon_greater.liga.glif new file mode 100644 index 00000000..01e64eb1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon_greater.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon_less.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon_less.liga.glif new file mode 100644 index 00000000..05158f6e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/colon_less.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/comma.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/comma.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/comma.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/comma.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/commaaboverightcmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/commaaboverightcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/commaaboverightcmb.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/commaaboverightcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/commaturnedabovecmb.glif new file mode 100644 index 00000000..aa760531 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/commaturnedabovecmb.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/commaturnedmod.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/commaturnedmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/commaturnedmod.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/commaturnedmod.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/contents.plist b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/contents.plist new file mode 100644 index 00000000..10a2ded8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/contents.plist @@ -0,0 +1,2092 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + AE + A_E_.glif + Aacute + A_acute.glif + Abreve + A_breve.glif + Abreveacute + A_breveacute.glif + Abrevedotbelow + A_brevedotbelow.glif + Abrevegrave + A_brevegrave.glif + Abrevehookabove + A_brevehookabove.glif + Abrevetilde + A_brevetilde.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflexacute + A_circumflexacute.glif + Acircumflexdotbelow + A_circumflexdotbelow.glif + Acircumflexgrave + A_circumflexgrave.glif + Acircumflexhookabove + A_circumflexhookabove.glif + Acircumflextilde + A_circumflextilde.glif + Adieresis + A_dieresis.glif + Adotaccent + A_dotaccent.glif + Adotbelow + A_dotbelow.glif + Agrave + A_grave.glif + Ahookabove + A_hookabove.glif + Amacron + A_macron.glif + Aogonek + A_ogonek.glif + Aring + A_ring.glif + Atilde + A_tilde.glif + B + B_.glif + Blinebelow + B_linebelow.glif + C + C_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + D + D_.glif + Dcaron + D_caron.glif + Dcircumflexbelow + D_circumflexbelow.glif + Dcroat + D_croat.glif + Ddotbelow + D_dotbelow.glif + Dlinebelow + D_linebelow.glif + E + E_.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Ecircumflexacute + E_circumflexacute.glif + Ecircumflexdotbelow + E_circumflexdotbelow.glif + Ecircumflexgrave + E_circumflexgrave.glif + Ecircumflexhookabove + E_circumflexhookabove.glif + Ecircumflextilde + E_circumflextilde.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Edotbelow + E_dotbelow.glif + Egrave + E_grave.glif + Ehookabove + E_hookabove.glif + Emacron + E_macron.glif + Eng + E_ng.glif + Eogonek + E_ogonek.glif + Eth + E_th.glif + Etilde + E_tilde.glif + Euro + E_uro.glif + F + F_.glif + G + G_.glif + Gbreve + G_breve.glif + Gcaron + G_caron.glif + Gcircumflex + G_circumflex.glif + Gcommaaccent + G_commaaccent.glif + Gdotaccent + G_dotaccent.glif + Gmacron + G_macron.glif + H + H_.glif + Hbar + H_bar.glif + Hbrevebelow + H_brevebelow.glif + Hcedilla + H_cedilla.glif + Hcircumflex + H_circumflex.glif + Hdotbelow + H_dotbelow.glif + I + I_.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icaron + I_caron.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idotaccent + I_dotaccent.glif + Idotbelow + I_dotbelow.glif + Igrave + I_grave.glif + Ihookabove + I_hookabove.glif + Imacron + I_macron.glif + Iogonek + I_ogonek.glif + Itilde + I_tilde.glif + J + J_.glif + Jcircumflex + J_circumflex.glif + K + K_.glif + Kcommaaccent + K_commaaccent.glif + Kdotbelow + K_dotbelow.glif + Klinebelow + K_linebelow.glif + L + L_.glif + L.dot + L_.dot.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcircumflexbelow + L_circumflexbelow.glif + Lcommaaccent + L_commaaccent.glif + Ldotbelow + L_dotbelow.glif + Llinebelow + L_linebelow.glif + Lmacrondotbelow + L_macrondotbelow.glif + Lslash + L_slash.glif + M + M_.glif + Macute + M_acute.glif + Mdotaccent + M_dotaccent.glif + Mdotbelow + M_dotbelow.glif + N + N_.glif + Nacute + N_acute.glif + Ncaron + N_caron.glif + Ncircumflexbelow + N_circumflexbelow.glif + Ncommaaccent + N_commaaccent.glif + Ndotaccent + N_dotaccent.glif + Ndotbelow + N_dotbelow.glif + Ngrave + N_grave.glif + Nlinebelow + N_linebelow.glif + Ntilde + N_tilde.glif + O + O_.glif + OE + O_E_.glif + Oacute + O_acute.glif + Obreve + O_breve.glif + Ocaron + O_caron.glif + Ocircumflex + O_circumflex.glif + Ocircumflexacute + O_circumflexacute.glif + Ocircumflexdotbelow + O_circumflexdotbelow.glif + Ocircumflexgrave + O_circumflexgrave.glif + Ocircumflexhookabove + O_circumflexhookabove.glif + Ocircumflextilde + O_circumflextilde.glif + Odieresis + O_dieresis.glif + Odotaccent + O_dotaccent.glif + Odotbelow + O_dotbelow.glif + Ograve + O_grave.glif + Ohookabove + O_hookabove.glif + Ohorn + O_horn.glif + Ohornacute + O_hornacute.glif + Ohorndotbelow + O_horndotbelow.glif + Ohorngrave + O_horngrave.glif + Ohornhookabove + O_hornhookabove.glif + Ohorntilde + O_horntilde.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Oogonek + O_ogonek.glif + Oslash + O_slash.glif + Otilde + O_tilde.glif + P + P_.glif + Q + Q_.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Rdotaccent + R_dotaccent.glif + Rdotbelow + R_dotbelow.glif + Rlinebelow + R_linebelow.glif + Rmacrondotbelow + R_macrondotbelow.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Sdotbelow + S_dotbelow.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tcircumflexbelow + T_circumflexbelow.glif + Tcommaaccent + T_commaaccent.glif + Tdotbelow + T_dotbelow.glif + Thorn + T_horn.glif + Tlinebelow + T_linebelow.glif + U + U_.glif + Uacute + U_acute.glif + Ubreve + U_breve.glif + Ucaron + U_caron.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresisacute + U_dieresisacute.glif + Udieresiscaron + U_dieresiscaron.glif + Udieresisgrave + U_dieresisgrave.glif + Udieresismacron + U_dieresismacron.glif + Udotbelow + U_dotbelow.glif + Ugrave + U_grave.glif + Uhookabove + U_hookabove.glif + Uhorn + U_horn.glif + Uhornacute + U_hornacute.glif + Uhorndotbelow + U_horndotbelow.glif + Uhorngrave + U_horngrave.glif + Uhornhookabove + U_hornhookabove.glif + Uhorntilde + U_horntilde.glif + Uhungarumlaut + U_hungarumlaut.glif + Umacron + U_macron.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Utilde + U_tilde.glif + V + V_.glif + Vdotbelow + V_dotbelow.glif + W + W_.glif + Wacute + W_acute.glif + Wcircumflex + W_circumflex.glif + Wdieresis + W_dieresis.glif + Wgrave + W_grave.glif + X + X_.glif + Xdieresis + X_dieresis.glif + Y + Y_.glif + Yacute + Y_acute.glif + Ycircumflex + Y_circumflex.glif + Ydieresis + Y_dieresis.glif + Ydotaccent + Y_dotaccent.glif + Ydotbelow + Y_dotbelow.glif + Ygrave + Y_grave.glif + Yhookabove + Y_hookabove.glif + Ymacron + Y_macron.glif + Ytilde + Y_tilde.glif + Z + Z_.glif + Zacute + Z_acute.glif + Zcaron + Z_caron.glif + Zcircumflex + Z_circumflex.glif + Zdotaccent + Z_dotaccent.glif + Zdotbelow + Z_dotbelow.glif + Zlinebelow + Z_linebelow.glif + a + a.glif + aacute + aacute.glif + abreve + abreve.glif + abreveacute + abreveacute.glif + abrevedotbelow + abrevedotbelow.glif + abrevegrave + abrevegrave.glif + abrevehookabove + abrevehookabove.glif + abrevetilde + abrevetilde.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflexacute + acircumflexacute.glif + acircumflexdotbelow + acircumflexdotbelow.glif + acircumflexgrave + acircumflexgrave.glif + acircumflexhookabove + acircumflexhookabove.glif + acircumflextilde + acircumflextilde.glif + acute + acute.glif + acutecmb + acutecmb.glif + acutecmb.cap + acutecmb.cap.glif + adieresis + adieresis.glif + adotaccent + adotaccent.glif + adotbelow + adotbelow.glif + ae + ae.glif + agrave + agrave.glif + ahookabove + ahookabove.glif + amacron + amacron.glif + ampersand + ampersand.glif + ampersand_ampersand.liga + ampersand_ampersand.liga.glif + aogonek + aogonek.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + asciicircum + asciicircum.glif + asciicircum_equal.liga + asciicircum_equal.liga.glif + asciitilde + asciitilde.glif + asciitilde_asciitilde.liga + asciitilde_asciitilde.liga.glif + asciitilde_asciitilde_greater + asciitilde_asciitilde_greater.glif + asciitilde_at.liga + asciitilde_at.liga.glif + asciitilde_greater.liga + asciitilde_greater.liga.glif + asciitilde_hyphen.liga + asciitilde_hyphen.liga.glif + asterisk + asterisk.glif + asterisk_asterisk.liga + asterisk_asterisk.liga.glif + asterisk_asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga.glif + asterisk_greater.liga + asterisk_greater.liga.glif + asterisk_slash.liga + asterisk_slash.liga.glif + at + at.glif + atilde + atilde.glif + b + b.glif + backslash + backslash.glif + backslash_slash.liga + backslash_slash.liga.glif + bahtthai + bahtthai.glif + bar + bar.glif + bar_bar.liga + bar_bar.liga.glif + bar_bar_bar.liga + bar_bar_bar.liga.glif + bar_bar_bar_greater.liga + bar_bar_bar_greater.liga.glif + bar_bar_equal.liga + bar_bar_equal.liga.glif + bar_bar_equal.start + bar_bar_equal.start.glif + bar_bar_greater.liga + bar_bar_greater.liga.glif + bar_bar_hyphen.liga + bar_bar_hyphen.liga.glif + bar_bar_hyphen.start + bar_bar_hyphen.start.glif + bar_braceright.liga + bar_braceright.liga.glif + bar_bracketright.liga + bar_bracketright.liga.glif + bar_equal.liga + bar_equal.liga.glif + bar_equal.start + bar_equal.start.glif + bar_greater.liga + bar_greater.liga.glif + bar_hyphen.liga + bar_hyphen.liga.glif + bar_hyphen.start + bar_hyphen.start.glif + blinebelow + blinebelow.glif + braceleft + braceleft.glif + braceleft_bar.liga + braceleft_bar.liga.glif + braceright + braceright.glif + bracketleft + bracketleft.glif + bracketleft_bar.liga + bracketleft_bar.liga.glif + bracketright + bracketright.glif + bracketright_numbersign.liga + bracketright_numbersign.liga.glif + breve + breve.glif + breveacute + breveacute.glif + breveacute.cap + breveacute.cap.glif + brevebelowcmb + brevebelowcmb.glif + brevecmb + brevecmb.glif + brevecmb.cap + brevecmb.cap.glif + brevegrave + brevegrave.glif + brevegrave.cap + brevegrave.cap.glif + brevehook + brevehook.glif + brevehook.cap + brevehook.cap.glif + brevetilde + brevetilde.glif + brevetilde.cap + brevetilde.cap.glif + bullet + bullet.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caroncmb + caroncmb.glif + caroncmb.cap + caroncmb.cap.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cedillacmb + cedillacmb.glif + cent + cent.glif + circumflex + circumflex.glif + circumflexacute + circumflexacute.glif + circumflexacute.cap + circumflexacute.cap.glif + circumflexbelowcmb + circumflexbelowcmb.glif + circumflexcmb + circumflexcmb.glif + circumflexcmb.cap + circumflexcmb.cap.glif + circumflexgrave + circumflexgrave.glif + circumflexgrave.cap + circumflexgrave.cap.glif + circumflexhook + circumflexhook.glif + circumflexhook.cap + circumflexhook.cap.glif + circumflextilde + circumflextilde.glif + circumflextilde.cap + circumflextilde.cap.glif + colon + colon.glif + colon.fig + colon.fig.glif + colon_colon.liga + colon_colon.liga.glif + colon_colon_colon.liga + colon_colon_colon.liga.glif + colon_colon_equal.liga + colon_colon_equal.liga.glif + colon_equal.liga + colon_equal.liga.glif + colon_greater.liga + colon_greater.liga.glif + colon_less.liga + colon_less.liga.glif + comma + comma.glif + commaaboverightcmb + commaaboverightcmb.glif + commaturnedabovecmb + commaturnedabovecmb.glif + commaturnedmod + commaturnedmod.glif + copyright + copyright.glif + d + d.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + darkshade + darkshade.glif + dbldnhorzbxd + dbldnhorzbxd.glif + dbldnleftbxd + dbldnleftbxd.glif + dbldnrightbxd + dbldnrightbxd.glif + dblhorzbxd + dblhorzbxd.glif + dblprimemod + dblprimemod.glif + dbluphorzbxd + dbluphorzbxd.glif + dblupleftbxd + dblupleftbxd.glif + dbluprightbxd + dbluprightbxd.glif + dblvertbxd + dblvertbxd.glif + dblverthorzbxd + dblverthorzbxd.glif + dblvertleftbxd + dblvertleftbxd.glif + dblvertrightbxd + dblvertrightbxd.glif + dcaron + dcaron.glif + dcircumflexbelow + dcircumflexbelow.glif + dcroat + dcroat.glif + ddotbelow + ddotbelow.glif + degree + degree.glif + dieresis + dieresis.glif + dieresisacute + dieresisacute.glif + dieresisacute.cap + dieresisacute.cap.glif + dieresisbelowcmb + dieresisbelowcmb.glif + dieresiscaron + dieresiscaron.glif + dieresiscaron.cap + dieresiscaron.cap.glif + dieresiscmb + dieresiscmb.glif + dieresiscmb.cap + dieresiscmb.cap.glif + dieresisgrave + dieresisgrave.glif + dieresisgrave.cap + dieresisgrave.cap.glif + dieresismacron + dieresismacron.glif + dieresismacron.cap + dieresismacron.cap.glif + divide + divide.glif + dlinebelow + dlinebelow.glif + dndblhorzsngbxd + dndblhorzsngbxd.glif + dndblleftsngbxd + dndblleftsngbxd.glif + dndblrightsngbxd + dndblrightsngbxd.glif + dneighthblock + dneighthblock.glif + dnfiveeighthsblock + dnfiveeighthsblock.glif + dnhalfblock + dnhalfblock.glif + dnheavyhorzlightbxd + dnheavyhorzlightbxd.glif + dnheavyleftlightbxd + dnheavyleftlightbxd.glif + dnheavyleftuplightbxd + dnheavyleftuplightbxd.glif + dnheavyrightlightbxd + dnheavyrightlightbxd.glif + dnheavyrightuplightbxd + dnheavyrightuplightbxd.glif + dnheavyuphorzlightbxd + dnheavyuphorzlightbxd.glif + dnleftquadrant + dnleftquadrant.glif + dnlighthorzheavybxd + dnlighthorzheavybxd.glif + dnlightleftheavybxd + dnlightleftheavybxd.glif + dnlightleftupheavybxd + dnlightleftupheavybxd.glif + dnlightrightheavybxd + dnlightrightheavybxd.glif + dnlightrightupheavybxd + dnlightrightupheavybxd.glif + dnlightuphorzheavybxd + dnlightuphorzheavybxd.glif + dnquarterblock + dnquarterblock.glif + dnrightquadrant + dnrightquadrant.glif + dnseveneighthsblock + dnseveneighthsblock.glif + dnsnghorzdblbxd + dnsnghorzdblbxd.glif + dnsngleftdblbxd + dnsngleftdblbxd.glif + dnsngrightdblbxd + dnsngrightdblbxd.glif + dnthreeeighthsblock + dnthreeeighthsblock.glif + dnthreequartersblock + dnthreequartersblock.glif + dollar + dollar.glif + dollar_greater.liga + dollar_greater.liga.glif + dong + dong.glif + dotaccent + dotaccent.glif + dotaccentcmb + dotaccentcmb.glif + dotaccentcmb.cap + dotaccentcmb.cap.glif + dotbelowcmb + dotbelowcmb.glif + dotlessi + dotlessi.glif + dotlessj + dotlessj.glif + e + e.glif + eacute + eacute.glif + ebreve + ebreve.glif + ecaron + ecaron.glif + ecircumflex + ecircumflex.glif + ecircumflexacute + ecircumflexacute.glif + ecircumflexdotbelow + ecircumflexdotbelow.glif + ecircumflexgrave + ecircumflexgrave.glif + ecircumflexhookabove + ecircumflexhookabove.glif + ecircumflextilde + ecircumflextilde.glif + edieresis + edieresis.glif + edotaccent + edotaccent.glif + edotbelow + edotbelow.glif + egrave + egrave.glif + ehookabove + ehookabove.glif + eight + eight.glif + eight.den + eight.den.glif + eight.inf + eight.inf.glif + eight.num + eight.num.glif + eight.sup + eight.sup.glif + ellipsis + ellipsis.glif + emacron + emacron.glif + emdash + emdash.glif + endash + endash.glif + eng + eng.glif + eogonek + eogonek.glif + equal + equal.glif + equal.end + equal.end.glif + equal.middle + equal.middle.glif + equal.start + equal.start.glif + equal_asciitilde.liga + equal_asciitilde.liga.glif + equal_bar.end + equal_bar.end.glif + equal_bar.liga + equal_bar.liga.glif + equal_bar_bar.end + equal_bar_bar.end.glif + equal_bar_bar.liga + equal_bar_bar.liga.glif + equal_bar_bar_equal.middle + equal_bar_bar_equal.middle.glif + equal_bar_equal.middle + equal_bar_equal.middle.glif + equal_colon_equal.middle + equal_colon_equal.middle.glif + equal_equal.liga + equal_equal.liga.glif + equal_equal_equal.liga + equal_equal_equal.liga.glif + equal_exclam_equal.middle + equal_exclam_equal.middle.glif + equal_greater.end + equal_greater.end.glif + equal_greater.liga + equal_greater.liga.glif + equal_greater_equal.middle + equal_greater_equal.middle.glif + equal_greater_greater.end + equal_greater_greater.end.glif + equal_greater_greater.liga + equal_greater_greater.liga.glif + equal_greater_greater_equal.m + equal_greater_greater_equal.m.glif + equal_less.end + equal_less.end.glif + equal_less.liga + equal_less.liga.glif + equal_less_equal.middle + equal_less_equal.middle.glif + equal_less_less.end + equal_less_less.end.glif + equal_less_less.liga + equal_less_less.liga.glif + equal_less_less_equal.middle + equal_less_less_equal.middle.glif + equal_slash.end + equal_slash.end.glif + equal_slash.liga + equal_slash.liga.glif + equal_slash_equal.middle + equal_slash_equal.middle.glif + equal_slash_slash.end + equal_slash_slash.end.glif + equal_slash_slash.liga + equal_slash_slash.liga.glif + equal_slash_slash_equal.middle + equal_slash_slash_equal.middle.glif + eth + eth.glif + etilde + etilde.glif + exclam + exclam.glif + exclam_asciitilde.liga + exclam_asciitilde.liga.glif + exclam_equal.liga + exclam_equal.liga.glif + exclam_equal_equal.liga + exclam_equal_equal.liga.glif + exclam_exclam.liga + exclam_exclam.liga.glif + exclam_exclam_period.liga + exclam_exclam_period.liga.glif + exclamdown + exclamdown.glif + f + f.glif + five + five.glif + five.den + five.den.glif + five.inf + five.inf.glif + five.num + five.num.glif + five.sup + five.sup.glif + fiveeighths + fiveeighths.glif + fivesixths + fivesixths.glif + four + four.glif + four.den + four.den.glif + four.inf + four.inf.glif + four.num + four.num.glif + four.sup + four.sup.glif + fourfifths + fourfifths.glif + fracbar + fracbar.glif + fraction + fraction.glif + fullblock + fullblock.glif + g + g.glif + gbreve + gbreve.glif + gcaron + gcaron.glif + gcircumflex + gcircumflex.glif + gcommaaccent + gcommaaccent.glif + gdotaccent + gdotaccent.glif + germandbls + germandbls.glif + gmacron + gmacron.glif + grave + grave.glif + gravecmb + gravecmb.glif + gravecmb.cap + gravecmb.cap.glif + greater + greater.glif + greater_colon.liga + greater_colon.liga.glif + greater_equal + greater_equal.glif + greater_equal.liga + greater_equal.liga.glif + greater_equal.start + greater_equal.start.glif + greater_equal_greater.liga + greater_equal_greater.liga.glif + greater_greater.liga + greater_greater.liga.glif + greater_greater_equal.liga + greater_greater_equal.liga.glif + greater_greater_equal.start + greater_greater_equal.start.glif + greater_greater_greater.liga + greater_greater_greater.liga.glif + greater_greater_hyphen.liga + greater_greater_hyphen.liga.glif + greater_greater_hyphen.start + greater_greater_hyphen.start.glif + greater_hyphen.liga + greater_hyphen.liga.glif + greater_hyphen.start + greater_hyphen.start.glif + greater_hyphen_greater.liga + greater_hyphen_greater.liga.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetright + guillemetright.glif + guilsinglleft + guilsinglleft.glif + guilsinglright + guilsinglright.glif + h + h.glif + hbar + hbar.glif + hbrevebelow + hbrevebelow.glif + hcedilla + hcedilla.glif + hcircumflex + hcircumflex.glif + hdotbelow + hdotbelow.glif + heavydbldashhorzbxd + heavydbldashhorzbxd.glif + heavydbldashvertbxd + heavydbldashvertbxd.glif + heavydnbxd + heavydnbxd.glif + heavydnhorzbxd + heavydnhorzbxd.glif + heavydnleftbxd + heavydnleftbxd.glif + heavydnrightbxd + heavydnrightbxd.glif + heavyhorzbxd + heavyhorzbxd.glif + heavyleftbxd + heavyleftbxd.glif + heavyleftlightrightbxd + heavyleftlightrightbxd.glif + heavyquaddashhorzbxd + heavyquaddashhorzbxd.glif + heavyquaddashvertbxd + heavyquaddashvertbxd.glif + heavyrightbxd + heavyrightbxd.glif + heavytrpldashhorzbxd + heavytrpldashhorzbxd.glif + heavytrpldashvertbxd + heavytrpldashvertbxd.glif + heavyupbxd + heavyupbxd.glif + heavyuphorzbxd + heavyuphorzbxd.glif + heavyupleftbxd + heavyupleftbxd.glif + heavyuplightdnbxd + heavyuplightdnbxd.glif + heavyuprightbxd + heavyuprightbxd.glif + heavyvertbxd + heavyvertbxd.glif + heavyverthorzbxd + heavyverthorzbxd.glif + heavyvertleftbxd + heavyvertleftbxd.glif + heavyvertrightbxd + heavyvertrightbxd.glif + hlinebelow + hlinebelow.glif + hookcmb + hookcmb.glif + hookcmb.cap + hookcmb.cap.glif + horizontalbar + horizontalbar.glif + hungarumlaut + hungarumlaut.glif + hungarumlautcmb + hungarumlautcmb.glif + hungarumlautcmb.cap + hungarumlautcmb.cap.glif + hyphen + hyphen.glif + hyphen.end + hyphen.end.glif + hyphen.middle + hyphen.middle.glif + hyphen.start + hyphen.start.glif + hyphen_asciitilde.liga + hyphen_asciitilde.liga.glif + hyphen_bar.end + hyphen_bar.end.glif + hyphen_bar.liga + hyphen_bar.liga.glif + hyphen_bar_bar.end + hyphen_bar_bar.end.glif + hyphen_bar_bar.liga + hyphen_bar_bar.liga.glif + hyphen_bar_bar_hyphen.middle + hyphen_bar_bar_hyphen.middle.glif + hyphen_bar_hyphen.middle + hyphen_bar_hyphen.middle.glif + hyphen_greater.end + hyphen_greater.end.glif + hyphen_greater.liga + hyphen_greater.liga.glif + hyphen_greater_greater.end + hyphen_greater_greater.end.glif + hyphen_greater_greater.liga + hyphen_greater_greater.liga.glif + hyphen_greater_greater_hyphen.m + hyphen_greater_greater_hyphen.m.glif + hyphen_greater_hyphen.middle + hyphen_greater_hyphen.middle.glif + hyphen_hyphen.liga + hyphen_hyphen.liga.glif + hyphen_hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga.glif + hyphen_less.end + hyphen_less.end.glif + hyphen_less.liga + hyphen_less.liga.glif + hyphen_less_hyphen.middle + hyphen_less_hyphen.middle.glif + hyphen_less_less.end + hyphen_less_less.end.glif + hyphen_less_less.liga + hyphen_less_less.liga.glif + hyphen_less_less_hyphen.middle + hyphen_less_less_hyphen.middle.glif + i + i.glif + iacute + iacute.glif + ibreve + ibreve.glif + icaron + icaron.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idotaccent + idotaccent.glif + idotbelow + idotbelow.glif + igrave + igrave.glif + ihookabove + ihookabove.glif + imacron + imacron.glif + iogonek + iogonek.glif + itilde + itilde.glif + j + j.glif + jcaron + jcaron.glif + jcircumflex + jcircumflex.glif + k + k.glif + kcommaaccent + kcommaaccent.glif + kdotbelow + kdotbelow.glif + klinebelow + klinebelow.glif + l + l.glif + l.dot + l.dot.glif + lacute + lacute.glif + lcaron + lcaron.glif + lcircumflexbelow + lcircumflexbelow.glif + lcommaaccent + lcommaaccent.glif + ldotbelow + ldotbelow.glif + leftdnheavyrightuplightbxd + leftdnheavyrightuplightbxd.glif + lefteighthblock + lefteighthblock.glif + leftfiveeighthsblock + leftfiveeighthsblock.glif + lefthalfblock + lefthalfblock.glif + leftheavyrightdnlightbxd + leftheavyrightdnlightbxd.glif + leftheavyrightuplightbxd + leftheavyrightuplightbxd.glif + leftheavyrightvertlightbxd + leftheavyrightvertlightbxd.glif + leftlightrightdnheavybxd + leftlightrightdnheavybxd.glif + leftlightrightupheavybxd + leftlightrightupheavybxd.glif + leftlightrightvertheavybxd + leftlightrightvertheavybxd.glif + leftquarterblock + leftquarterblock.glif + leftseveneighthsblock + leftseveneighthsblock.glif + leftthreeeighthsblock + leftthreeeighthsblock.glif + leftthreequartersblock + leftthreequartersblock.glif + leftupheavyrightdnlightbxd + leftupheavyrightdnlightbxd.glif + less + less.glif + less_asciitilde.liga + less_asciitilde.liga.glif + less_asciitilde_asciitilde.liga + less_asciitilde_asciitilde.liga.glif + less_asciitilde_greater.liga + less_asciitilde_greater.liga.glif + less_asterisk.liga + less_asterisk.liga.glif + less_asterisk_greater.liga + less_asterisk_greater.liga.glif + less_bar.liga + less_bar.liga.glif + less_bar_bar.liga + less_bar_bar.liga.glif + less_bar_bar_bar.liga + less_bar_bar_bar.liga.glif + less_bar_greater.liga + less_bar_greater.liga.glif + less_colon.liga + less_colon.liga.glif + less_dollar.liga + less_dollar.liga.glif + less_dollar_greater.liga + less_dollar_greater.liga.glif + less_equal + less_equal.glif + less_equal.liga + less_equal.liga.glif + less_equal.start + less_equal.start.glif + less_equal_greater.liga + less_equal_greater.liga.glif + less_equal_less.liga + less_equal_less.liga.glif + less_exclam_hyphen_hyphen.liga + less_exclam_hyphen_hyphen.liga.glif + less_greater.liga + less_greater.liga.glif + less_hyphen.liga + less_hyphen.liga.glif + less_hyphen.start + less_hyphen.start.glif + less_hyphen_greater.liga + less_hyphen_greater.liga.glif + less_hyphen_less.liga + less_hyphen_less.liga.glif + less_less.liga + less_less.liga.glif + less_less_equal.liga + less_less_equal.liga.glif + less_less_equal.start + less_less_equal.start.glif + less_less_hyphen.liga + less_less_hyphen.liga.glif + less_less_hyphen.start + less_less_hyphen.start.glif + less_less_less.liga + less_less_less.liga.glif + less_plus.liga + less_plus.liga.glif + less_plus_greater.liga + less_plus_greater.liga.glif + less_slash.liga + less_slash.liga.glif + less_slash_greater.liga + less_slash_greater.liga.glif + lessequal + lessequal.glif + lightarcdnleftbxd + lightarcdnleftbxd.glif + lightarcdnrightbxd + lightarcdnrightbxd.glif + lightarcupleftbxd + lightarcupleftbxd.glif + lightarcuprightbxd + lightarcuprightbxd.glif + lightdbldashhorzbxd + lightdbldashhorzbxd.glif + lightdbldashvertbxd + lightdbldashvertbxd.glif + lightdiagcrossbxd + lightdiagcrossbxd.glif + lightdiagupleftdnrightbxd + lightdiagupleftdnrightbxd.glif + lightdiaguprightdnleftbxd + lightdiaguprightdnleftbxd.glif + lightdnbxd + lightdnbxd.glif + lightdnhorzbxd + lightdnhorzbxd.glif + lightdnleftbxd + lightdnleftbxd.glif + lightdnrightbxd + lightdnrightbxd.glif + lighthorzbxd + lighthorzbxd.glif + lightleftbxd + lightleftbxd.glif + lightleftheavyrightbxd + lightleftheavyrightbxd.glif + lightquaddashhorzbxd + lightquaddashhorzbxd.glif + lightquaddashvertbxd + lightquaddashvertbxd.glif + lightrightbxd + lightrightbxd.glif + lightshade + lightshade.glif + lighttrpldashhorzbxd + lighttrpldashhorzbxd.glif + lighttrpldashvertbxd + lighttrpldashvertbxd.glif + lightupbxd + lightupbxd.glif + lightupheavydnbxd + lightupheavydnbxd.glif + lightuphorzbxd + lightuphorzbxd.glif + lightupleftbxd + lightupleftbxd.glif + lightuprightbxd + lightuprightbxd.glif + lightvertbxd + lightvertbxd.glif + lightverthorzbxd + lightverthorzbxd.glif + lightvertleftbxd + lightvertleftbxd.glif + lightvertrightbxd + lightvertrightbxd.glif + ligspacer + ligspacer.glif + llinebelow + llinebelow.glif + lmacrondotbelow + lmacrondotbelow.glif + lslash + lslash.glif + m + m.glif + macron + macron.glif + macronbelowcmb + macronbelowcmb.glif + macroncmb + macroncmb.glif + macroncmb.cap + macroncmb.cap.glif + macronlowmod + macronlowmod.glif + macute + macute.glif + mdotaccent + mdotaccent.glif + mdotbelow + mdotbelow.glif + mediumshade + mediumshade.glif + middotcat + middotcat.glif + middotcat.cap + middotcat.cap.glif + minus + minus.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + naira + naira.glif + ncaron + ncaron.glif + ncircumflexbelow + ncircumflexbelow.glif + ncommaaccent + ncommaaccent.glif + ndotaccent + ndotaccent.glif + ndotbelow + ndotbelow.glif + ngrave + ngrave.glif + nine + nine.glif + nine.den + nine.den.glif + nine.inf + nine.inf.glif + nine.num + nine.num.glif + nine.sup + nine.sup.glif + nlinebelow + nlinebelow.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numbersign.end + numbersign.end.glif + numbersign.middle + numbersign.middle.glif + numbersign.start + numbersign.start.glif + numbersign_braceleft.liga + numbersign_braceleft.liga.glif + numbersign_bracketleft.liga + numbersign_bracketleft.liga.glif + numbersign_colon.liga + numbersign_colon.liga.glif + numbersign_equal.liga + numbersign_equal.liga.glif + numbersign_exclam.liga + numbersign_exclam.liga.glif + numbersign_parenleft.liga + numbersign_parenleft.liga.glif + numbersign_question.liga + numbersign_question.liga.glif + numbersign_underscore.liga + numbersign_underscore.liga.glif + numbersign_underscore_parenleft + numbersign_underscore_parenleft.glif + o + o.glif + oacute + oacute.glif + obreve + obreve.glif + ocaron + ocaron.glif + ocircumflex + ocircumflex.glif + ocircumflexacute + ocircumflexacute.glif + ocircumflexdotbelow + ocircumflexdotbelow.glif + ocircumflexgrave + ocircumflexgrave.glif + ocircumflexhookabove + ocircumflexhookabove.glif + ocircumflextilde + ocircumflextilde.glif + odieresis + odieresis.glif + odotaccent + odotaccent.glif + odotbelow + odotbelow.glif + oe + oe.glif + ogonek + ogonek.glif + ogonekcmb + ogonekcmb.glif + ograve + ograve.glif + ohookabove + ohookabove.glif + ohorn + ohorn.glif + ohornacute + ohornacute.glif + ohorndotbelow + ohorndotbelow.glif + ohorngrave + ohorngrave.glif + ohornhookabove + ohornhookabove.glif + ohorntilde + ohorntilde.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + one + one.glif + one.den + one.den.glif + one.inf + one.inf.glif + one.num + one.num.glif + one.sup + one.sup.glif + oneeighth + oneeighth.glif + onefifth + onefifth.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesixth + onesixth.glif + onethird + onethird.glif + oogonek + oogonek.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + otilde + otilde.glif + p + p.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenright + parenright.glif + percent + percent.glif + percent_percent.liga + percent_percent.liga.glif + period + period.glif + period_equal.liga + period_equal.liga.glif + period_hyphen.liga + period_hyphen.liga.glif + period_period.liga + period_period.liga.glif + period_period_equal.liga + period_period_equal.liga.glif + period_period_less.liga + period_period_less.liga.glif + period_period_period.liga + period_period_period.liga.glif + period_question.liga + period_question.liga.glif + periodcentered + periodcentered.glif + peso + peso.glif + plus + plus.glif + plus_greater.liga + plus_greater.liga.glif + plus_plus.liga + plus_plus.liga.glif + plus_plus_plus.liga + plus_plus_plus.liga.glif + plusminus + plusminus.glif + primemod + primemod.glif + published + published.glif + q + q.glif + question + question.glif + question_colon.liga + question_colon.liga.glif + question_equal.liga + question_equal.liga.glif + question_period.liga + question_period.liga.glif + question_question.liga + question_question.liga.glif + questiondown + questiondown.glif + quotedbl + quotedbl.glif + quotedblbase + quotedblbase.glif + quotedblleft + quotedblleft.glif + quotedblright + quotedblright.glif + quoteleft + quoteleft.glif + quoteright + quoteright.glif + quotesinglbase + quotesinglbase.glif + quotesingle + quotesingle.glif + r + r.glif + racute + racute.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + rdotaccent + rdotaccent.glif + rdotbelow + rdotbelow.glif + registered + registered.glif + rightdnheavyleftuplightbxd + rightdnheavyleftuplightbxd.glif + righteighthblock + righteighthblock.glif + righthalfblock + righthalfblock.glif + rightheavyleftdnlightbxd + rightheavyleftdnlightbxd.glif + rightheavyleftuplightbxd + rightheavyleftuplightbxd.glif + rightheavyleftvertlightbxd + rightheavyleftvertlightbxd.glif + rightlightleftdnheavybxd + rightlightleftdnheavybxd.glif + rightlightleftupheavybxd + rightlightleftupheavybxd.glif + rightlightleftvertheavybxd + rightlightleftvertheavybxd.glif + rightupheavyleftdnlightbxd + rightupheavyleftdnlightbxd.glif + ring + ring.glif + ringcmb + ringcmb.glif + ringcmb.cap + ringcmb.cap.glif + ringhalfleft + ringhalfleft.glif + ringhalfright + ringhalfright.glif + rlinebelow + rlinebelow.glif + rmacrondotbelow + rmacrondotbelow.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwa + schwa.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + sdotbelow + sdotbelow.glif + section + section.glif + semicolon + semicolon.glif + semicolon_semicolon.liga + semicolon_semicolon.liga.glif + servicemark + servicemark.glif + seven + seven.glif + seven.den + seven.den.glif + seven.inf + seven.inf.glif + seven.num + seven.num.glif + seven.sup + seven.sup.glif + seveneighths + seveneighths.glif + six + six.glif + six.den + six.den.glif + six.inf + six.inf.glif + six.num + six.num.glif + six.sup + six.sup.glif + slash + slash.glif + slash_asterisk.liga + slash_asterisk.liga.glif + slash_backslash.liga + slash_backslash.liga.glif + slash_equal.liga + slash_equal.liga.glif + slash_equal.start + slash_equal.start.glif + slash_greater.liga + slash_greater.liga.glif + slash_slash.liga + slash_slash.liga.glif + slash_slash_equal.liga + slash_slash_equal.liga.glif + slash_slash_equal.start + slash_slash_equal.start.glif + slash_slash_slash.liga + slash_slash_slash.liga.glif + space + space.glif + sterling + sterling.glif + t + t.glif + tbar + tbar.glif + tcaron + tcaron.glif + tcedilla + tcedilla.glif + tcircumflexbelow + tcircumflexbelow.glif + tcommaaccent + tcommaaccent.glif + tdotbelow + tdotbelow.glif + thorn + thorn.glif + three + three.glif + three.den + three.den.glif + three.inf + three.inf.glif + three.num + three.num.glif + three.sup + three.sup.glif + threeeighths + threeeighths.glif + threefifths + threefifths.glif + threequarters + threequarters.glif + tilde + tilde.glif + tildecmb + tildecmb.glif + tildecmb.cap + tildecmb.cap.glif + tlinebelow + tlinebelow.glif + trademark + trademark.glif + two + two.glif + two.den + two.den.glif + two.inf + two.inf.glif + two.num + two.num.glif + two.sup + two.sup.glif + twodotleader + twodotleader.glif + twofifths + twofifths.glif + twothirds + twothirds.glif + u + u.glif + uacute + uacute.glif + ubreve + ubreve.glif + ucaron + ucaron.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresisacute + udieresisacute.glif + udieresiscaron + udieresiscaron.glif + udieresisgrave + udieresisgrave.glif + udieresismacron + udieresismacron.glif + udotbelow + udotbelow.glif + ugrave + ugrave.glif + uhookabove + uhookabove.glif + uhorn + uhorn.glif + uhornacute + uhornacute.glif + uhorndotbelow + uhorndotbelow.glif + uhorngrave + uhorngrave.glif + uhornhookabove + uhornhookabove.glif + uhorntilde + uhorntilde.glif + uhungarumlaut + uhungarumlaut.glif + umacron + umacron.glif + underscore + underscore.glif + underscore.end + underscore.end.glif + underscore.middle + underscore.middle.glif + underscore.start + underscore.start.glif + underscore_bar_underscore.m + underscore_bar_underscore.m.glif + uni00A0 + uni00A_0.glif + uni0326 + uni0326.glif + uni1E9E + uni1E_9E_.glif + uni2011 + uni2011.glif + uni20B9 + uni20B_9.glif + uni20BA + uni20B_A_.glif + uni20BD + uni20B_D_.glif + uni2610 + uni2610.glif + uni2611 + uni2611.glif + uni2612 + uni2612.glif + uni2713 + uni2713.glif + uniA788 + uniA_788.glif + uniE0A0 + uniE_0A_0.glif + uniE0A1 + uniE_0A_1.glif + uniE0A2 + uniE_0A_2.glif + uniE0B0 + uniE_0B_0.glif + uniE0B1 + uniE_0B_1.glif + uniE0B2 + uniE_0B_2.glif + uniE0B3 + uniE_0B_3.glif + uogonek + uogonek.glif + updblhorzsngbxd + updblhorzsngbxd.glif + updblleftsngbxd + updblleftsngbxd.glif + updblrightsngbxd + updblrightsngbxd.glif + upeighthblock + upeighthblock.glif + uphalfblock + uphalfblock.glif + upheavydnhorzlightbxd + upheavydnhorzlightbxd.glif + upheavyhorzlightbxd + upheavyhorzlightbxd.glif + upheavyleftdnlightbxd + upheavyleftdnlightbxd.glif + upheavyleftlightbxd + upheavyleftlightbxd.glif + upheavyrightdnlightbxd + upheavyrightdnlightbxd.glif + upheavyrightlightbxd + upheavyrightlightbxd.glif + upleftdnleftdnrightquadrant + upleftdnleftdnrightquadrant.glif + upleftdnrightquadrant + upleftdnrightquadrant.glif + upleftquadrant + upleftquadrant.glif + upleftuprightdnleftquadrant + upleftuprightdnleftquadrant.glif + upleftuprightdnrightquadrant + upleftuprightdnrightquadrant.glif + uplightdnhorzheavybxd + uplightdnhorzheavybxd.glif + uplighthorzheavybxd + uplighthorzheavybxd.glif + uplightleftdnheavybxd + uplightleftdnheavybxd.glif + uplightleftheavybxd + uplightleftheavybxd.glif + uplightrightdnheavybxd + uplightrightdnheavybxd.glif + uplightrightheavybxd + uplightrightheavybxd.glif + uprightdnleftdnrightquadrant + uprightdnleftdnrightquadrant.glif + uprightdnleftquadrant + uprightdnleftquadrant.glif + uprightquadrant + uprightquadrant.glif + upsnghorzdblbxd + upsnghorzdblbxd.glif + upsngleftdblbxd + upsngleftdblbxd.glif + upsngrightdblbxd + upsngrightdblbxd.glif + uring + uring.glif + utilde + utilde.glif + v + v.glif + vdotbelow + vdotbelow.glif + vertdblhorzsngbxd + vertdblhorzsngbxd.glif + vertdblleftsngbxd + vertdblleftsngbxd.glif + vertdblrightsngbxd + vertdblrightsngbxd.glif + vertheavyhorzlightbxd + vertheavyhorzlightbxd.glif + vertheavyleftlightbxd + vertheavyleftlightbxd.glif + vertheavyrightlightbxd + vertheavyrightlightbxd.glif + verticallinelowmod + verticallinelowmod.glif + verticallinemod + verticallinemod.glif + vertlighthorzheavybxd + vertlighthorzheavybxd.glif + vertlightleftheavybxd + vertlightleftheavybxd.glif + vertlightrightheavybxd + vertlightrightheavybxd.glif + vertsnghorzdblbxd + vertsnghorzdblbxd.glif + vertsngleftdblbxd + vertsngleftdblbxd.glif + vertsngrightdblbxd + vertsngrightdblbxd.glif + w + w.glif + w_w_w.liga + w_w_w.liga.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wgrave + wgrave.glif + won + won.glif + x + x.glif + xdieresis + xdieresis.glif + y + y.glif + yacute + yacute.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + ydotaccent + ydotaccent.glif + ydotbelow + ydotbelow.glif + yen + yen.glif + ygrave + ygrave.glif + yhookabove + yhookabove.glif + ymacron + ymacron.glif + ytilde + ytilde.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zcircumflex + zcircumflex.glif + zdotaccent + zdotaccent.glif + zdotbelow + zdotbelow.glif + zero + zero.glif + zero.den + zero.den.glif + zero.inf + zero.inf.glif + zero.num + zero.num.glif + zero.sup + zero.sup.glif + zlinebelow + zlinebelow.glif + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/copyright.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/copyright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/copyright.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/copyright.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/d.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/d.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/d.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/d.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dagger.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dagger.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dagger.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dagger.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/daggerdbl.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/daggerdbl.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/daggerdbl.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/daggerdbl.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/darkshade.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/darkshade.glif new file mode 100644 index 00000000..a56d0f0a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/darkshade.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dbldnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dbldnhorzbxd.glif new file mode 100644 index 00000000..99f4a99d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dbldnhorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dbldnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dbldnleftbxd.glif new file mode 100644 index 00000000..8f26cb67 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dbldnleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dbldnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dbldnrightbxd.glif new file mode 100644 index 00000000..8f085b5a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dbldnrightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dblhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dblhorzbxd.glif new file mode 100644 index 00000000..6403a136 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dblhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dblprimemod.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dblprimemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dblprimemod.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dblprimemod.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dbluphorzbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dbluphorzbxd.glif new file mode 100644 index 00000000..ed4be696 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dbluphorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dblupleftbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dblupleftbxd.glif new file mode 100644 index 00000000..bc272aa1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dblupleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dbluprightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dbluprightbxd.glif new file mode 100644 index 00000000..6c29c7f6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dbluprightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dblvertbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dblvertbxd.glif new file mode 100644 index 00000000..2ff1f1fa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dblvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dblverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dblverthorzbxd.glif new file mode 100644 index 00000000..819e1ac3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dblverthorzbxd.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dblvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dblvertleftbxd.glif new file mode 100644 index 00000000..36d4303e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dblvertleftbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dblvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dblvertrightbxd.glif new file mode 100644 index 00000000..48d9a09b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dblvertrightbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dcaron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..c55e5970 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dcircumflexbelow.glif new file mode 100644 index 00000000..477cfcd7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dcroat.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..4981e7e1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dcroat.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ddotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ddotbelow.glif new file mode 100644 index 00000000..1f468297 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ddotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/degree.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/degree.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/degree.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/degree.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresis.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresis.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresisacute.cap.glif new file mode 100644 index 00000000..4b88358a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresisacute.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresisacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..954a5b7e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresisbelowcmb.glif new file mode 100644 index 00000000..a66210d4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresisbelowcmb.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresiscaron.cap.glif new file mode 100644 index 00000000..1f09cdd2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresiscaron.cap.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresiscaron.glif new file mode 100644 index 00000000..79aab56e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresiscaron.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresiscmb.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresiscmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresiscmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresiscmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresiscmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresiscmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dieresiscmb.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresiscmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresisgrave.cap.glif new file mode 100644 index 00000000..13b6a837 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresisgrave.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresisgrave.glif new file mode 100644 index 00000000..498cc091 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresisgrave.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresismacron.cap.glif new file mode 100644 index 00000000..c3e59ef6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresismacron.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresismacron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresismacron.glif new file mode 100644 index 00000000..034287cc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dieresismacron.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/divide.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/divide.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/divide.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/divide.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dlinebelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dlinebelow.glif new file mode 100644 index 00000000..9f87d786 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dndblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dndblhorzsngbxd.glif new file mode 100644 index 00000000..175354da --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dndblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dndblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dndblleftsngbxd.glif new file mode 100644 index 00000000..2b340a58 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dndblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dndblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dndblrightsngbxd.glif new file mode 100644 index 00000000..e4bd54b1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dndblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dneighthblock.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dneighthblock.glif new file mode 100644 index 00000000..f9382474 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dneighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnfiveeighthsblock.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnfiveeighthsblock.glif new file mode 100644 index 00000000..6d6b327e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnhalfblock.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnhalfblock.glif new file mode 100644 index 00000000..5cb2299a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnhalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnheavyhorzlightbxd.glif new file mode 100644 index 00000000..380a24d4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnheavyleftlightbxd.glif new file mode 100644 index 00000000..1b888698 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnheavyleftuplightbxd.glif new file mode 100644 index 00000000..b4caa9e3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnheavyrightlightbxd.glif new file mode 100644 index 00000000..7cdf08a7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnheavyrightuplightbxd.glif new file mode 100644 index 00000000..52cd22d3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnheavyuphorzlightbxd.glif new file mode 100644 index 00000000..9fa856ab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnheavyuphorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnleftquadrant.glif new file mode 100644 index 00000000..0f752b04 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnlighthorzheavybxd.glif new file mode 100644 index 00000000..f30c836c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnlighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnlightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnlightleftheavybxd.glif new file mode 100644 index 00000000..176b92a4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnlightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnlightleftupheavybxd.glif new file mode 100644 index 00000000..1f76cebc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnlightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnlightrightheavybxd.glif new file mode 100644 index 00000000..5d35ff8a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnlightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnlightrightupheavybxd.glif new file mode 100644 index 00000000..a63c21b2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnlightuphorzheavybxd.glif new file mode 100644 index 00000000..9cb56736 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnlightuphorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnquarterblock.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnquarterblock.glif new file mode 100644 index 00000000..5dc81108 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnrightquadrant.glif new file mode 100644 index 00000000..012bd532 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnrightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnseveneighthsblock.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnseveneighthsblock.glif new file mode 100644 index 00000000..a47c62d6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnsnghorzdblbxd.glif new file mode 100644 index 00000000..e2673c4c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnsngleftdblbxd.glif new file mode 100644 index 00000000..613e60cd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnsngrightdblbxd.glif new file mode 100644 index 00000000..f1ee6692 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnthreeeighthsblock.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnthreeeighthsblock.glif new file mode 100644 index 00000000..e54a10a3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnthreequartersblock.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnthreequartersblock.glif new file mode 100644 index 00000000..e7b739c3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dnthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dollar.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dollar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dollar.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dollar.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dollar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dollar_greater.liga.glif new file mode 100644 index 00000000..6ae4e680 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dollar_greater.liga.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dong.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dong.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dong.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dong.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dotaccentcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dotaccentcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dotaccentcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dotaccentcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dotaccentcmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dotaccentcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dotaccentcmb.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dotaccentcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dotbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dotbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dotbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dotbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dotlessi.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dotlessi.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/dotlessi.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dotlessi.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dotlessj.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dotlessj.glif new file mode 100644 index 00000000..e501c071 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/dotlessj.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/e.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/e.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/e.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/e.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..399df89f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ebreve.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..18c2ad77 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ebreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecaron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..26eb285c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..0723a990 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecircumflexacute.glif new file mode 100644 index 00000000..51382999 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecircumflexdotbelow.glif new file mode 100644 index 00000000..fda6ff4c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecircumflexgrave.glif new file mode 100644 index 00000000..742c551f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecircumflexhookabove.glif new file mode 100644 index 00000000..a91e0851 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecircumflextilde.glif new file mode 100644 index 00000000..f2e14026 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ecircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/edieresis.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..48a77fa0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/edieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/edotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..9f5a28c1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/edotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/edotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/edotbelow.glif new file mode 100644 index 00000000..a7a015f8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/edotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/egrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..d1f3f1ca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/egrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ehookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ehookabove.glif new file mode 100644 index 00000000..5bd60e3f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ehookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eight.den.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eight.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eight.den.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eight.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eight.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eight.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eight.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eight.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eight.inf.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eight.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eight.inf.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eight.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eight.num.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eight.num.glif new file mode 100644 index 00000000..b8fc65b8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eight.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eight.sup.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eight.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eight.sup.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eight.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ellipsis.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ellipsis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ellipsis.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ellipsis.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/emacron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..85931f32 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/emacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/emdash.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/emdash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/emdash.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/emdash.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/endash.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/endash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/endash.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/endash.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eng.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eng.glif new file mode 100644 index 00000000..5d5526c0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eng.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eogonek.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..9217e71a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eogonek.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal.end.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal.end.glif new file mode 100644 index 00000000..f5b3cb54 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/equal.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/equal.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal.middle.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal.middle.glif new file mode 100644 index 00000000..0deada88 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal.start.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal.start.glif new file mode 100644 index 00000000..a4b5d847 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_asciitilde.liga.glif new file mode 100644 index 00000000..a5d005c7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_asciitilde.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_bar.end.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_bar.end.glif new file mode 100644 index 00000000..6e1885f1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_bar.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_bar.liga.glif new file mode 100644 index 00000000..eb9b90d5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_bar.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_bar_bar.end.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_bar_bar.end.glif new file mode 100644 index 00000000..3cff6c72 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_bar_bar.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_bar_bar.liga.glif new file mode 100644 index 00000000..019c0a72 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_bar_bar.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_bar_bar_equal.middle.glif new file mode 100644 index 00000000..241b809e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_bar_bar_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_bar_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_bar_equal.middle.glif new file mode 100644 index 00000000..1c3402d0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_bar_equal.middle.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_colon_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_colon_equal.middle.glif new file mode 100644 index 00000000..d287a45a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_colon_equal.middle.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_equal.liga.glif new file mode 100644 index 00000000..fe35a016 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_equal.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_equal_equal.liga.glif new file mode 100644 index 00000000..69455932 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_equal_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_exclam_equal.middle.glif new file mode 100644 index 00000000..e4de6494 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_exclam_equal.middle.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_greater.end.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_greater.end.glif new file mode 100644 index 00000000..e0dbe3b2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_greater.end.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_greater.liga.glif new file mode 100644 index 00000000..f169c597 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_greater_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_greater_equal.middle.glif new file mode 100644 index 00000000..49649e12 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_greater_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_greater_greater.end.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_greater_greater.end.glif new file mode 100644 index 00000000..29ccb422 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_greater_greater.end.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_greater_greater.liga.glif new file mode 100644 index 00000000..1d274343 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_greater_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_greater_greater_equal.m.glif new file mode 100644 index 00000000..7f64e921 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_greater_greater_equal.m.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_less.end.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_less.end.glif new file mode 100644 index 00000000..60a3b733 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_less.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_less.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_less.liga.glif new file mode 100644 index 00000000..82382ad8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_less.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_less_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_less_equal.middle.glif new file mode 100644 index 00000000..1d9a2699 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_less_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_less_less.end.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_less_less.end.glif new file mode 100644 index 00000000..efed25db --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_less_less.end.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_less_less.liga.glif new file mode 100644 index 00000000..7e5fa1e4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_less_less.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_less_less_equal.middle.glif new file mode 100644 index 00000000..dfa68d41 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_less_less_equal.middle.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_slash.end.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_slash.end.glif new file mode 100644 index 00000000..fa1a42de --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_slash.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_slash.liga.glif new file mode 100644 index 00000000..7bd30843 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_slash.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_slash_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_slash_equal.middle.glif new file mode 100644 index 00000000..c7c899c4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_slash_equal.middle.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_slash_slash.end.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_slash_slash.end.glif new file mode 100644 index 00000000..261166ea --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_slash_slash.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_slash_slash.liga.glif new file mode 100644 index 00000000..ebfbe2af --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_slash_slash.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_slash_slash_equal.middle.glif new file mode 100644 index 00000000..4ddf2ab0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/equal_slash_slash_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eth.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eth.glif new file mode 100644 index 00000000..d950743a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/eth.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/etilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/etilde.glif new file mode 100644 index 00000000..4270e672 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/etilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/exclam.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/exclam.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/exclam.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/exclam.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/exclam_asciitilde.liga.glif new file mode 100644 index 00000000..46b9ff3f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/exclam_asciitilde.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/exclam_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/exclam_equal.liga.glif new file mode 100644 index 00000000..13d5beb4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/exclam_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/exclam_equal_equal.liga.glif new file mode 100644 index 00000000..58cc739a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/exclam_equal_equal.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/exclam_exclam.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/exclam_exclam.liga.glif new file mode 100644 index 00000000..92766d8a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/exclam_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/exclam_exclam_period.liga.glif new file mode 100644 index 00000000..782589da --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/exclam_exclam_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/exclamdown.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/exclamdown.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/exclamdown.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/exclamdown.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/f.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/f.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/f.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/f.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/five.den.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/five.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/five.den.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/five.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/five.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/five.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/five.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/five.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/five.inf.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/five.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/five.inf.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/five.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/five.num.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/five.num.glif new file mode 100644 index 00000000..1e32166f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/five.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/five.sup.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/five.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/five.sup.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/five.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/fiveeighths.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/fiveeighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/fiveeighths.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/fiveeighths.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/fivesixths.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/fivesixths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/fivesixths.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/fivesixths.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/four.den.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/four.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/four.den.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/four.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/four.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/four.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/four.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/four.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/four.inf.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/four.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/four.inf.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/four.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/four.num.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/four.num.glif new file mode 100644 index 00000000..62ef719b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/four.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/four.sup.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/four.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/four.sup.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/four.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/fourfifths.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/fourfifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/fourfifths.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/fourfifths.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/fracbar.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/fracbar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/fracbar.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/fracbar.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/fraction.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/fraction.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/fraction.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/fraction.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/fullblock.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/fullblock.glif new file mode 100644 index 00000000..c0d56679 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/fullblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/g.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/g.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/g.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/g.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gbreve.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..41cde11a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gbreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gcaron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gcaron.glif new file mode 100644 index 00000000..e1edadb9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gcircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..a57f065c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..2e78d738 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gdotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..430b6744 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/germandbls.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..802ab8e2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/germandbls.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gmacron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gmacron.glif new file mode 100644 index 00000000..a4322924 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gmacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/grave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/grave.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gravecmb.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gravecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gravecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gravecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gravecmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gravecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/gravecmb.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/gravecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/greater.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/greater.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_colon.liga.glif new file mode 100644 index 00000000..a6c96cd8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_equal.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_equal.glif new file mode 100644 index 00000000..c96410e4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_equal.liga.glif new file mode 100644 index 00000000..6d2977c6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_equal.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_equal.start.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_equal.start.glif new file mode 100644 index 00000000..11181262 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_equal.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_equal_greater.liga.glif new file mode 100644 index 00000000..27846d02 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_equal_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_greater.liga.glif new file mode 100644 index 00000000..c56c9ec0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_greater_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_greater_equal.liga.glif new file mode 100644 index 00000000..142b2147 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_greater_equal.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_greater_equal.start.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_greater_equal.start.glif new file mode 100644 index 00000000..0aec4671 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_greater_equal.start.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_greater_greater.liga.glif new file mode 100644 index 00000000..4584a768 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_greater_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_greater_hyphen.liga.glif new file mode 100644 index 00000000..6e0d8b21 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_greater_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_greater_hyphen.start.glif new file mode 100644 index 00000000..862b0619 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_greater_hyphen.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_hyphen.liga.glif new file mode 100644 index 00000000..7043805c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_hyphen.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_hyphen.start.glif new file mode 100644 index 00000000..d1d26bc1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_hyphen.start.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_hyphen_greater.liga.glif new file mode 100644 index 00000000..3dd86b50 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greater_hyphen_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/greaterequal.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greaterequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/greaterequal.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/greaterequal.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/guillemetleft.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/guillemetleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/guillemetleft.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/guillemetleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/guillemetright.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/guillemetright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/guillemetright.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/guillemetright.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/guilsinglleft.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/guilsinglleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/guilsinglleft.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/guilsinglleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/guilsinglright.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/guilsinglright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/guilsinglright.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/guilsinglright.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/h.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/h.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/h.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/h.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hbar.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..7dffd7ad --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hbar.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hbrevebelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hbrevebelow.glif new file mode 100644 index 00000000..b2ff468f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hbrevebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hcedilla.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hcedilla.glif new file mode 100644 index 00000000..ce3a38c7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hcedilla.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hcircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..96d36e56 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hdotbelow.glif new file mode 100644 index 00000000..29d471a3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavydbldashhorzbxd.glif new file mode 100644 index 00000000..3d5cdac4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavydbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavydbldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavydbldashvertbxd.glif new file mode 100644 index 00000000..13b69e37 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavydbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavydnbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavydnbxd.glif new file mode 100644 index 00000000..7d377b66 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavydnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavydnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavydnhorzbxd.glif new file mode 100644 index 00000000..de7eb452 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavydnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavydnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavydnleftbxd.glif new file mode 100644 index 00000000..0328973a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavydnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavydnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavydnrightbxd.glif new file mode 100644 index 00000000..14c78ad0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavydnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyhorzbxd.glif new file mode 100644 index 00000000..bfc343e1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyhorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyleftbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyleftbxd.glif new file mode 100644 index 00000000..2d102f78 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyleftlightrightbxd.glif new file mode 100644 index 00000000..10c173ed --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyleftlightrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyquaddashhorzbxd.glif new file mode 100644 index 00000000..5aadd50b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyquaddashvertbxd.glif new file mode 100644 index 00000000..039838f4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyrightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyrightbxd.glif new file mode 100644 index 00000000..20ed622e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavytrpldashhorzbxd.glif new file mode 100644 index 00000000..56277585 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavytrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavytrpldashvertbxd.glif new file mode 100644 index 00000000..f8d036c4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavytrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyupbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyupbxd.glif new file mode 100644 index 00000000..d1f34633 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyuphorzbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyuphorzbxd.glif new file mode 100644 index 00000000..3b776f36 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyupleftbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyupleftbxd.glif new file mode 100644 index 00000000..f78b13f9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyuplightdnbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyuplightdnbxd.glif new file mode 100644 index 00000000..8f7027a7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyuplightdnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyuprightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyuprightbxd.glif new file mode 100644 index 00000000..74d9655a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyvertbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyvertbxd.glif new file mode 100644 index 00000000..40b9763b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyverthorzbxd.glif new file mode 100644 index 00000000..acab897d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyvertleftbxd.glif new file mode 100644 index 00000000..7191285d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyvertrightbxd.glif new file mode 100644 index 00000000..77edab93 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/heavyvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hlinebelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hlinebelow.glif new file mode 100644 index 00000000..fbbddfa0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hookcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hookcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hookcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hookcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hookcmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hookcmb.glif new file mode 100644 index 00000000..42c8b15b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hookcmb.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/horizontalbar.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/horizontalbar.glif new file mode 100644 index 00000000..ef4b3086 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/horizontalbar.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hungarumlaut.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hungarumlaut.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hungarumlaut.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hungarumlautcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hungarumlautcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hungarumlautcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hungarumlautcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hungarumlautcmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hungarumlautcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hungarumlautcmb.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hungarumlautcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen.end.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen.end.glif new file mode 100644 index 00000000..50d2e27a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hyphen.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/hyphen.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen.middle.glif new file mode 100644 index 00000000..e15d9ea6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen.start.glif new file mode 100644 index 00000000..b56391f2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_asciitilde.liga.glif new file mode 100644 index 00000000..085e8e30 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_asciitilde.liga.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_bar.end.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_bar.end.glif new file mode 100644 index 00000000..4df41fa4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_bar.end.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_bar.liga.glif new file mode 100644 index 00000000..91ea5c42 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_bar.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_bar.end.glif new file mode 100644 index 00000000..8d3cbd01 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_bar.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_bar.liga.glif new file mode 100644 index 00000000..9477e456 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif new file mode 100644 index 00000000..904be03b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_hyphen.middle.glif new file mode 100644 index 00000000..8a4f6452 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_bar_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_greater.end.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_greater.end.glif new file mode 100644 index 00000000..a7ca480a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_greater.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_greater.liga.glif new file mode 100644 index 00000000..e1123614 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_greater.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_greater.end.glif new file mode 100644 index 00000000..3382d09f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_greater.end.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_greater.liga.glif new file mode 100644 index 00000000..abc5006c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif new file mode 100644 index 00000000..fe3a02b3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_hyphen.middle.glif new file mode 100644 index 00000000..006cf89b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_greater_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_hyphen.liga.glif new file mode 100644 index 00000000..4c49ab56 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_hyphen.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..52fb755c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_less.end.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_less.end.glif new file mode 100644 index 00000000..05eeb9fb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_less.end.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_less.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_less.liga.glif new file mode 100644 index 00000000..e89a95bb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_less.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_less_hyphen.middle.glif new file mode 100644 index 00000000..8e915744 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_less_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_less_less.end.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_less_less.end.glif new file mode 100644 index 00000000..a88c2e7d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_less_less.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_less_less.liga.glif new file mode 100644 index 00000000..af06e8bd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_less_less.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_less_less_hyphen.middle.glif new file mode 100644 index 00000000..3d6dc74d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/hyphen_less_less_hyphen.middle.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/i.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/i.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/i.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/i.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/iacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..ad1c15b9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/iacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ibreve.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..b6b18b4f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ibreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/icaron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/icaron.glif new file mode 100644 index 00000000..aa9a7d65 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/icaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/icircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..6c82e317 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/icircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/idieresis.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..0a3a58ae --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/idieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/idotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/idotaccent.glif new file mode 100644 index 00000000..c4ca6424 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/idotaccent.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/idotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/idotbelow.glif new file mode 100644 index 00000000..82567491 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/idotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/igrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..a6ff6a82 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/igrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ihookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ihookabove.glif new file mode 100644 index 00000000..91435d6e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ihookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/imacron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..01ac5fcc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/imacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/iogonek.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..2f4ee58d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/iogonek.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/itilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..eb75f69c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/itilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/j.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/j.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/j.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/j.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/jcaron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/jcaron.glif new file mode 100644 index 00000000..84982632 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/jcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/jcircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..594429c1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/k.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/k.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/k.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/k.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/kcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..db33861e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/kdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/kdotbelow.glif new file mode 100644 index 00000000..0e91391b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/kdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/klinebelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/klinebelow.glif new file mode 100644 index 00000000..66031605 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/klinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/l.dot.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/l.dot.glif new file mode 100644 index 00000000..3b441c4c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/l.dot.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/l.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/l.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/l.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/l.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..c8258822 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/layerinfo.plist b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/layerinfo.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/layerinfo.plist rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/layerinfo.plist diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lcaron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..054cffc9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lcircumflexbelow.glif new file mode 100644 index 00000000..38c60e33 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..d3dc0ffb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ldotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ldotbelow.glif new file mode 100644 index 00000000..eb8d5ac9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ldotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftdnheavyrightuplightbxd.glif new file mode 100644 index 00000000..1c677a48 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftdnheavyrightuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lefteighthblock.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lefteighthblock.glif new file mode 100644 index 00000000..bd0981c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lefteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftfiveeighthsblock.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftfiveeighthsblock.glif new file mode 100644 index 00000000..1db3b143 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lefthalfblock.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lefthalfblock.glif new file mode 100644 index 00000000..7ad2b780 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lefthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftheavyrightdnlightbxd.glif new file mode 100644 index 00000000..09c4680b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftheavyrightuplightbxd.glif new file mode 100644 index 00000000..df6a5e12 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftheavyrightvertlightbxd.glif new file mode 100644 index 00000000..3a89649e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftheavyrightvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftlightrightdnheavybxd.glif new file mode 100644 index 00000000..1856de30 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftlightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftlightrightupheavybxd.glif new file mode 100644 index 00000000..b938fd38 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftlightrightvertheavybxd.glif new file mode 100644 index 00000000..19e4e132 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftlightrightvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftquarterblock.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftquarterblock.glif new file mode 100644 index 00000000..0a473fc6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftseveneighthsblock.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftseveneighthsblock.glif new file mode 100644 index 00000000..e6dd7d1a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftthreeeighthsblock.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftthreeeighthsblock.glif new file mode 100644 index 00000000..c6bf4e61 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftthreequartersblock.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftthreequartersblock.glif new file mode 100644 index 00000000..75cb3ef3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftupheavyrightdnlightbxd.glif new file mode 100644 index 00000000..04b0875c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/leftupheavyrightdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/less.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/less.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_asciitilde.liga.glif new file mode 100644 index 00000000..1b2eeab9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_asciitilde.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..e254d2ab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_asciitilde_asciitilde.liga.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_asciitilde_greater.liga.glif new file mode 100644 index 00000000..9f43aa6b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_asciitilde_greater.liga.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_asterisk.liga.glif new file mode 100644 index 00000000..44fa2796 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_asterisk_greater.liga.glif new file mode 100644 index 00000000..1699358e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_asterisk_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_bar.liga.glif new file mode 100644 index 00000000..c1b9dc7a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_bar.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_bar_bar.liga.glif new file mode 100644 index 00000000..6656d1a2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_bar_bar.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_bar_bar_bar.liga.glif new file mode 100644 index 00000000..4cb66277 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_bar_bar_bar.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_bar_greater.liga.glif new file mode 100644 index 00000000..12d10ca8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_bar_greater.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_colon.liga.glif new file mode 100644 index 00000000..2e95be01 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_dollar.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_dollar.liga.glif new file mode 100644 index 00000000..69b4a09e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_dollar.liga.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_dollar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_dollar_greater.liga.glif new file mode 100644 index 00000000..16497f61 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_dollar_greater.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_equal.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_equal.glif new file mode 100644 index 00000000..4af315c0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_equal.liga.glif new file mode 100644 index 00000000..f85a067f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_equal.start.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_equal.start.glif new file mode 100644 index 00000000..4313a28e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_equal.start.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_equal_greater.liga.glif new file mode 100644 index 00000000..8aba742c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_equal_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_equal_less.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_equal_less.liga.glif new file mode 100644 index 00000000..9a32d337 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_equal_less.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..8d1c8863 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_greater.liga.glif new file mode 100644 index 00000000..2d284989 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_greater.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_hyphen.liga.glif new file mode 100644 index 00000000..88178996 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_hyphen.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_hyphen.start.glif new file mode 100644 index 00000000..3b1edfbf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_hyphen.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_hyphen_greater.liga.glif new file mode 100644 index 00000000..35de85f0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_hyphen_greater.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_hyphen_less.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_hyphen_less.liga.glif new file mode 100644 index 00000000..0a9421d2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_hyphen_less.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_less.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_less.liga.glif new file mode 100644 index 00000000..5e90a9ab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_less.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_less_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_less_equal.liga.glif new file mode 100644 index 00000000..cf3215aa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_less_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_less_equal.start.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_less_equal.start.glif new file mode 100644 index 00000000..f34a699b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_less_equal.start.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_less_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_less_hyphen.liga.glif new file mode 100644 index 00000000..954efc31 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_less_hyphen.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_less_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_less_hyphen.start.glif new file mode 100644 index 00000000..40580754 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_less_hyphen.start.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_less_less.liga.glif new file mode 100644 index 00000000..2b643117 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_less_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_plus.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_plus.liga.glif new file mode 100644 index 00000000..e4e7b1b4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_plus.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_plus_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_plus_greater.liga.glif new file mode 100644 index 00000000..ae5cf8dd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_plus_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_slash.liga.glif new file mode 100644 index 00000000..1605a0e1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_slash.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_slash_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_slash_greater.liga.glif new file mode 100644 index 00000000..545e0d2b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/less_slash_greater.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/lessequal.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lessequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/lessequal.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lessequal.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightarcdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightarcdnleftbxd.glif new file mode 100644 index 00000000..51dbc426 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightarcdnleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightarcdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightarcdnrightbxd.glif new file mode 100644 index 00000000..93c2c964 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightarcdnrightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightarcupleftbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightarcupleftbxd.glif new file mode 100644 index 00000000..9ca20ceb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightarcupleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightarcuprightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightarcuprightbxd.glif new file mode 100644 index 00000000..1c38f648 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightarcuprightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdbldashhorzbxd.glif new file mode 100644 index 00000000..38fe4828 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdbldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdbldashvertbxd.glif new file mode 100644 index 00000000..76527bed --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdiagcrossbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdiagcrossbxd.glif new file mode 100644 index 00000000..b3d665d6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdiagcrossbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdiagupleftdnrightbxd.glif new file mode 100644 index 00000000..cc3d1494 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdiagupleftdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdiaguprightdnleftbxd.glif new file mode 100644 index 00000000..17222fbd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdiaguprightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdnbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdnbxd.glif new file mode 100644 index 00000000..95b9a488 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdnhorzbxd.glif new file mode 100644 index 00000000..8c118142 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdnleftbxd.glif new file mode 100644 index 00000000..22771c51 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdnrightbxd.glif new file mode 100644 index 00000000..058ce1b8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lighthorzbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lighthorzbxd.glif new file mode 100644 index 00000000..45fbd354 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lighthorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightleftbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightleftbxd.glif new file mode 100644 index 00000000..a0f3b293 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightleftheavyrightbxd.glif new file mode 100644 index 00000000..c8c73471 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightleftheavyrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightquaddashhorzbxd.glif new file mode 100644 index 00000000..c70ddd97 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightquaddashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightquaddashvertbxd.glif new file mode 100644 index 00000000..5eeceeb9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightrightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightrightbxd.glif new file mode 100644 index 00000000..ad7cdacf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightshade.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightshade.glif new file mode 100644 index 00000000..0e5291b7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightshade.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lighttrpldashhorzbxd.glif new file mode 100644 index 00000000..4b1cd639 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lighttrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lighttrpldashvertbxd.glif new file mode 100644 index 00000000..94ffcb3a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lighttrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightupbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightupbxd.glif new file mode 100644 index 00000000..42c7ca56 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightupheavydnbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightupheavydnbxd.glif new file mode 100644 index 00000000..4b8be348 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightupheavydnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightuphorzbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightuphorzbxd.glif new file mode 100644 index 00000000..b69b1ef2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightupleftbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightupleftbxd.glif new file mode 100644 index 00000000..5e6ff874 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightuprightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightuprightbxd.glif new file mode 100644 index 00000000..6ff62b28 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightvertbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightvertbxd.glif new file mode 100644 index 00000000..dd64ceab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightverthorzbxd.glif new file mode 100644 index 00000000..582f6f5e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightvertleftbxd.glif new file mode 100644 index 00000000..d0b69a4f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightvertrightbxd.glif new file mode 100644 index 00000000..668b7ba8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lightvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ligspacer.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ligspacer.glif new file mode 100644 index 00000000..aaf0214e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ligspacer.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/llinebelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/llinebelow.glif new file mode 100644 index 00000000..ec96eaf1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/llinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lmacrondotbelow.glif new file mode 100644 index 00000000..18463cb2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lmacrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lslash.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..027df6f0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/lslash.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/m.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/m.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/m.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/m.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/macron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/macron.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/macronbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/macronbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/macronbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/macronbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/macroncmb.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/macroncmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/macroncmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/macroncmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/macroncmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/macroncmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/macroncmb.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/macroncmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/macronlowmod.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/macronlowmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/macronlowmod.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/macronlowmod.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/macute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/macute.glif new file mode 100644 index 00000000..baca9e9b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/macute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/mdotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/mdotaccent.glif new file mode 100644 index 00000000..fa6251af --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/mdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/mdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/mdotbelow.glif new file mode 100644 index 00000000..13d17c03 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/mdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/mediumshade.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/mediumshade.glif new file mode 100644 index 00000000..37be9904 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/mediumshade.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/middotcat.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/middotcat.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/middotcat.cap.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/middotcat.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/middotcat.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/middotcat.glif new file mode 100644 index 00000000..bfe7b4eb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/middotcat.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/minus.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/minus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/minus.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/minus.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/mu.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/mu.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/mu.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/mu.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/multiply.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/multiply.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/multiply.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/multiply.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/n.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/n.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/n.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/n.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/nacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..5242c5b8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/nacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/naira.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/naira.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/naira.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/naira.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ncaron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..3e257b10 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ncaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ncircumflexbelow.glif new file mode 100644 index 00000000..86a82565 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ncircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ncommaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..44e4a602 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ndotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ndotaccent.glif new file mode 100644 index 00000000..dceb3a30 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ndotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ndotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ndotbelow.glif new file mode 100644 index 00000000..9402f27f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ngrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ngrave.glif new file mode 100644 index 00000000..9b3106d3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/nine.den.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/nine.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/nine.den.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/nine.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/nine.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/nine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/nine.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/nine.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/nine.inf.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/nine.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/nine.inf.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/nine.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/nine.num.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/nine.num.glif new file mode 100644 index 00000000..36a7e399 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/nine.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/nine.sup.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/nine.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/nine.sup.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/nine.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/nlinebelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/nlinebelow.glif new file mode 100644 index 00000000..7a00f5c8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/nlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/notequal.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/notequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/notequal.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/notequal.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ntilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..bfcbc8eb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign.end.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign.end.glif new file mode 100644 index 00000000..f157714e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign.end.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/numbersign.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/numbersign.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign.middle.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign.middle.glif new file mode 100644 index 00000000..518190ab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign.start.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign.start.glif new file mode 100644 index 00000000..fb38ee2c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign.start.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_braceleft.liga.glif new file mode 100644 index 00000000..922142db --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_braceleft.liga.glif @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_bracketleft.liga.glif new file mode 100644 index 00000000..913a51b5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_bracketleft.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_colon.liga.glif new file mode 100644 index 00000000..7c686d64 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_colon.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_equal.liga.glif new file mode 100644 index 00000000..18d9fe8c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_equal.liga.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_exclam.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_exclam.liga.glif new file mode 100644 index 00000000..a808d38f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_parenleft.liga.glif new file mode 100644 index 00000000..61bc512e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_parenleft.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_question.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_question.liga.glif new file mode 100644 index 00000000..6f44e44c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_underscore.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_underscore.liga.glif new file mode 100644 index 00000000..a598aa4e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_underscore.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_underscore_parenleft.glif new file mode 100644 index 00000000..2609f872 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/numbersign_underscore_parenleft.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/o.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/o.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/o.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/o.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/oacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..96480e1f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/oacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/obreve.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..c8e69603 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/obreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocaron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocaron.glif new file mode 100644 index 00000000..b65b681b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..bf2bdac5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocircumflexacute.glif new file mode 100644 index 00000000..d74c9ec8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocircumflexdotbelow.glif new file mode 100644 index 00000000..1bd62e9f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocircumflexgrave.glif new file mode 100644 index 00000000..a7771acb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocircumflexhookabove.glif new file mode 100644 index 00000000..cb7c7b23 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocircumflextilde.glif new file mode 100644 index 00000000..61b1ceb1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ocircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/odieresis.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..486c24fe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/odieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/odotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/odotaccent.glif new file mode 100644 index 00000000..7aba8d77 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/odotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/odotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/odotbelow.glif new file mode 100644 index 00000000..59c1de4c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/odotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/oe.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/oe.glif new file mode 100644 index 00000000..9c830b38 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/oe.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ogonek.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ogonek.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ogonekcmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ogonekcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ogonekcmb.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ogonekcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ograve.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..687bd719 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ograve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohookabove.glif new file mode 100644 index 00000000..5b7c4c04 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohorn.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohorn.glif new file mode 100644 index 00000000..8afa1f67 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohorn.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohornacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohornacute.glif new file mode 100644 index 00000000..57c0339a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohorndotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohorndotbelow.glif new file mode 100644 index 00000000..aea32dcd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohorndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohorngrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohorngrave.glif new file mode 100644 index 00000000..40c8f18b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohorngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohornhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohornhookabove.glif new file mode 100644 index 00000000..71cf395f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohorntilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohorntilde.glif new file mode 100644 index 00000000..1dca34c8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohorntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..fc404078 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/omacron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..04a335ca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/omacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/one.den.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/one.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/one.den.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/one.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/one.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/one.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/one.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/one.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/one.inf.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/one.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/one.inf.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/one.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/one.num.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/one.num.glif new file mode 100644 index 00000000..33b01843 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/one.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/one.sup.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/one.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/one.sup.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/one.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/oneeighth.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/oneeighth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/oneeighth.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/oneeighth.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/onefifth.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/onefifth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/onefifth.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/onefifth.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/onehalf.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/onehalf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/onehalf.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/onehalf.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/onequarter.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/onequarter.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/onequarter.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/onequarter.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/onesixth.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/onesixth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/onesixth.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/onesixth.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/onethird.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/onethird.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/onethird.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/onethird.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/oogonek.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/oogonek.glif new file mode 100644 index 00000000..7e543371 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/oogonek.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ordfeminine.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ordfeminine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ordfeminine.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ordfeminine.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ordmasculine.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ordmasculine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ordmasculine.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ordmasculine.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/oslash.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..7c5a9771 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/oslash.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/otilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..518386b6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/otilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/p.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/p.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/p.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/p.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/paragraph.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/paragraph.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/paragraph.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/paragraph.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/parenleft.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/parenleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/parenleft.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/parenleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/parenright.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/parenright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/parenright.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/parenright.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/percent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/percent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/percent.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/percent.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/percent_percent.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/percent_percent.liga.glif new file mode 100644 index 00000000..8d19d00a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/percent_percent.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/period.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/period.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_equal.liga.glif new file mode 100644 index 00000000..c7c9816a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_hyphen.liga.glif new file mode 100644 index 00000000..de4abace --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_period.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_period.liga.glif new file mode 100644 index 00000000..7040f36f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_period_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_period_equal.liga.glif new file mode 100644 index 00000000..484e1f75 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_period_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_period_less.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_period_less.liga.glif new file mode 100644 index 00000000..f3a825e9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_period_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_period_period.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_period_period.liga.glif new file mode 100644 index 00000000..d3a1d6bb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_period_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_question.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_question.liga.glif new file mode 100644 index 00000000..258c1c48 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/period_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/periodcentered.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/periodcentered.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/periodcentered.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/periodcentered.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/peso.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/peso.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/peso.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/peso.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/plus.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/plus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/plus.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/plus.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/plus_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/plus_greater.liga.glif new file mode 100644 index 00000000..5407614e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/plus_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/plus_plus.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/plus_plus.liga.glif new file mode 100644 index 00000000..87798374 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/plus_plus.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/plus_plus_plus.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/plus_plus_plus.liga.glif new file mode 100644 index 00000000..8fa6e8ae --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/plus_plus_plus.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/plusminus.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/plusminus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/plusminus.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/plusminus.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/primemod.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/primemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/primemod.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/primemod.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/published.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/published.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/published.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/published.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/q.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/q.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/q.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/q.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/question.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/question.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/question.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/question.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/question_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/question_colon.liga.glif new file mode 100644 index 00000000..27ce8018 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/question_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/question_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/question_equal.liga.glif new file mode 100644 index 00000000..e5b152ce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/question_equal.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/question_period.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/question_period.liga.glif new file mode 100644 index 00000000..80143bb3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/question_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/question_question.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/question_question.liga.glif new file mode 100644 index 00000000..e6e7c700 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/question_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/questiondown.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/questiondown.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/questiondown.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/questiondown.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/quotedbl.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/quotedbl.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/quotedbl.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/quotedbl.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/quotedblbase.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/quotedblbase.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/quotedblbase.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/quotedblbase.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/quotedblleft.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/quotedblleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/quotedblleft.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/quotedblleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/quotedblright.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/quotedblright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/quotedblright.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/quotedblright.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/quoteleft.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/quoteleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/quoteleft.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/quoteleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/quoteright.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/quoteright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/quoteright.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/quoteright.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/quotesinglbase.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/quotesinglbase.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/quotesinglbase.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/quotesinglbase.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/quotesingle.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/quotesingle.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/quotesingle.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/quotesingle.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/r.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/r.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/r.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/r.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/racute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/racute.glif new file mode 100644 index 00000000..8fc249ad --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/racute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rcaron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..a343c1d6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..9c0c643d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rdotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rdotaccent.glif new file mode 100644 index 00000000..fe0ae110 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rdotbelow.glif new file mode 100644 index 00000000..01ce3303 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/registered.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/registered.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/registered.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/registered.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightdnheavyleftuplightbxd.glif new file mode 100644 index 00000000..13c8e880 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightdnheavyleftuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/righteighthblock.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/righteighthblock.glif new file mode 100644 index 00000000..ee46a32d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/righteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/righthalfblock.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/righthalfblock.glif new file mode 100644 index 00000000..9f3ba315 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/righthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightheavyleftdnlightbxd.glif new file mode 100644 index 00000000..f14bd1b1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightheavyleftuplightbxd.glif new file mode 100644 index 00000000..416a4548 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightheavyleftvertlightbxd.glif new file mode 100644 index 00000000..9e567cd4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightheavyleftvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightlightleftdnheavybxd.glif new file mode 100644 index 00000000..acb6a682 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightlightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightlightleftupheavybxd.glif new file mode 100644 index 00000000..c7714791 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightlightleftvertheavybxd.glif new file mode 100644 index 00000000..22e54792 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightlightleftvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightupheavyleftdnlightbxd.glif new file mode 100644 index 00000000..0025e963 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rightupheavyleftdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ring.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ring.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ring.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ring.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ringcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ringcmb.cap.glif new file mode 100644 index 00000000..70c52460 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ringcmb.cap.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ringcmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ringcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ringcmb.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ringcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ringhalfleft.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ringhalfleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ringhalfleft.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ringhalfleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ringhalfright.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ringhalfright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ringhalfright.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ringhalfright.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rlinebelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rlinebelow.glif new file mode 100644 index 00000000..dc708b34 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rmacrondotbelow.glif new file mode 100644 index 00000000..208927bf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/rmacrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/s.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/s.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/s.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/s.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/sacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..2f619f02 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/sacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/scaron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..a24fec30 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/scaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/scedilla.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..5afb1159 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/scedilla.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/schwa.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/schwa.glif new file mode 100644 index 00000000..327e92ea --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/schwa.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/scircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..64d30452 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/scircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/scommaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..9c776d7c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/sdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/sdotbelow.glif new file mode 100644 index 00000000..649fe00c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/sdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/section.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/section.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/section.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/section.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/semicolon.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/semicolon.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/semicolon.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/semicolon.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/semicolon_semicolon.liga.glif new file mode 100644 index 00000000..98760fb6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/semicolon_semicolon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/servicemark.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/servicemark.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/servicemark.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/servicemark.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/seven.den.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/seven.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/seven.den.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/seven.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/seven.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/seven.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/seven.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/seven.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/seven.inf.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/seven.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/seven.inf.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/seven.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/seven.num.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/seven.num.glif new file mode 100644 index 00000000..16a9c596 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/seven.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/seven.sup.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/seven.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/seven.sup.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/seven.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/seveneighths.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/seveneighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/seveneighths.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/seveneighths.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/six.den.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/six.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/six.den.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/six.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/six.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/six.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/six.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/six.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/six.inf.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/six.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/six.inf.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/six.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/six.num.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/six.num.glif new file mode 100644 index 00000000..50b656e5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/six.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/six.sup.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/six.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/six.sup.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/six.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/slash.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/slash.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_asterisk.liga.glif new file mode 100644 index 00000000..5ccc3c01 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_backslash.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_backslash.liga.glif new file mode 100644 index 00000000..c8566086 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_backslash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_equal.liga.glif new file mode 100644 index 00000000..49962ca4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_equal.start.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_equal.start.glif new file mode 100644 index 00000000..336e2f7c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_greater.liga.glif new file mode 100644 index 00000000..9544fdef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_slash.liga.glif new file mode 100644 index 00000000..2bc4a71a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_slash_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_slash_equal.liga.glif new file mode 100644 index 00000000..d1e246ec --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_slash_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_slash_equal.start.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_slash_equal.start.glif new file mode 100644 index 00000000..c3eaf770 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_slash_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_slash_slash.liga.glif new file mode 100644 index 00000000..3f943989 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/slash_slash_slash.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/space.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/space.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/space.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/space.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/sterling.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/sterling.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/sterling.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/sterling.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/t.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/t.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/t.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/t.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tbar.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..6c922e17 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tbar.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tcaron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..39a3bec3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tcedilla.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..de97a979 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tcedilla.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tcircumflexbelow.glif new file mode 100644 index 00000000..fbf14375 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..46bc1b81 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tdotbelow.glif new file mode 100644 index 00000000..41c0b7e6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/thorn.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..c241b379 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/thorn.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/three.den.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/three.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/three.den.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/three.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/three.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/three.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/three.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/three.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/three.inf.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/three.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/three.inf.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/three.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/three.num.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/three.num.glif new file mode 100644 index 00000000..cfc019ee --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/three.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/three.sup.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/three.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/three.sup.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/three.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/threeeighths.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/threeeighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/threeeighths.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/threeeighths.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/threefifths.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/threefifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/threefifths.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/threefifths.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/threequarters.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/threequarters.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/threequarters.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/threequarters.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tilde.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tildecmb.cap.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tildecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tildecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tildecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tildecmb.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tildecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/tildecmb.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tildecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tlinebelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tlinebelow.glif new file mode 100644 index 00000000..47a046e3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/tlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/trademark.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/trademark.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/trademark.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/trademark.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/two.den.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/two.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/two.den.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/two.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/two.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/two.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/two.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/two.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/two.inf.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/two.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/two.inf.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/two.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/two.num.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/two.num.glif new file mode 100644 index 00000000..631bd1e0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/two.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/two.sup.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/two.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/two.sup.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/two.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/twodotleader.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/twodotleader.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/twodotleader.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/twodotleader.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/twofifths.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/twofifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/twofifths.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/twofifths.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/twothirds.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/twothirds.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/twothirds.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/twothirds.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/u.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/u.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/u.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/u.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..5a7bed81 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ubreve.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..e4af0825 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ubreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ucaron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ucaron.glif new file mode 100644 index 00000000..71918cb1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ucaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ucircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..9c344916 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/udieresis.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..0913597b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/udieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/udieresisacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/udieresisacute.glif new file mode 100644 index 00000000..295a219d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/udieresisacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/udieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/udieresiscaron.glif new file mode 100644 index 00000000..17c24e77 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/udieresiscaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/udieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/udieresisgrave.glif new file mode 100644 index 00000000..cd0f1065 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/udieresisgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/udieresismacron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/udieresismacron.glif new file mode 100644 index 00000000..f584574d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/udieresismacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/udotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/udotbelow.glif new file mode 100644 index 00000000..6c7150ff --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/udotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ugrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..1c3d6b5d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ugrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhookabove.glif new file mode 100644 index 00000000..20aa4624 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhorn.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhorn.glif new file mode 100644 index 00000000..bb283cbf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhorn.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhornacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhornacute.glif new file mode 100644 index 00000000..1baa271b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhorndotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhorndotbelow.glif new file mode 100644 index 00000000..04d9712b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhorndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhorngrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhorngrave.glif new file mode 100644 index 00000000..7a7f8580 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhorngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhornhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhornhookabove.glif new file mode 100644 index 00000000..ff94716d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhorntilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhorntilde.glif new file mode 100644 index 00000000..39cf4423 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhorntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..0903c4da --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/umacron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..1b65a849 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/umacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/underscore.end.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/underscore.end.glif new file mode 100644 index 00000000..0eb07a82 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/underscore.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/underscore.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/underscore.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/underscore.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/underscore.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/underscore.middle.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/underscore.middle.glif new file mode 100644 index 00000000..3a2a52d9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/underscore.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/underscore.start.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/underscore.start.glif new file mode 100644 index 00000000..569ee54d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/underscore.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/underscore_bar_underscore.m.glif new file mode 100644 index 00000000..aaa430cc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/underscore_bar_underscore.m.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uni00A_0.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni00A_0.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uni00A_0.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni00A_0.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uni0326.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni0326.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uni0326.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni0326.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni1E_9E_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni1E_9E_.glif new file mode 100644 index 00000000..be589e8a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni1E_9E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni2011.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni2011.glif new file mode 100644 index 00000000..33e0d4b6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni2011.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uni20B_9.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni20B_9.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uni20B_9.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni20B_9.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uni20B_A_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni20B_A_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uni20B_A_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni20B_A_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uni20B_D_.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni20B_D_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uni20B_D_.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni20B_D_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni2610.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni2610.glif new file mode 100644 index 00000000..86fc4c8b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni2610.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni2611.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni2611.glif new file mode 100644 index 00000000..35c95d4c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni2611.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni2612.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni2612.glif new file mode 100644 index 00000000..3bb101d1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni2612.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni2713.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni2713.glif new file mode 100644 index 00000000..41747e75 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uni2713.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uniA_788.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniA_788.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uniA_788.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniA_788.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0A_0.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0A_0.glif new file mode 100644 index 00000000..b50b3165 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0A_0.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0A_1.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0A_1.glif new file mode 100644 index 00000000..3bdc9e11 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0A_1.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0A_2.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0A_2.glif new file mode 100644 index 00000000..b4482921 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0A_2.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0B_0.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0B_0.glif new file mode 100644 index 00000000..4ef8ce00 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0B_0.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0B_1.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0B_1.glif new file mode 100644 index 00000000..bef3c7a2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0B_1.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0B_2.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0B_2.glif new file mode 100644 index 00000000..d8af7faf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0B_2.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0B_3.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0B_3.glif new file mode 100644 index 00000000..3f42ebb5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uniE_0B_3.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uogonek.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..a2ecca92 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uogonek.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/updblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/updblhorzsngbxd.glif new file mode 100644 index 00000000..68628d4b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/updblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/updblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/updblleftsngbxd.glif new file mode 100644 index 00000000..f1d2a693 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/updblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/updblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/updblrightsngbxd.glif new file mode 100644 index 00000000..b21fde20 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/updblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upeighthblock.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upeighthblock.glif new file mode 100644 index 00000000..edbfe3c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upeighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uphalfblock.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uphalfblock.glif new file mode 100644 index 00000000..f6006f81 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uphalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upheavydnhorzlightbxd.glif new file mode 100644 index 00000000..8d2a9887 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upheavydnhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upheavyhorzlightbxd.glif new file mode 100644 index 00000000..5fb772f9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upheavyleftdnlightbxd.glif new file mode 100644 index 00000000..f09c9ece --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upheavyleftlightbxd.glif new file mode 100644 index 00000000..5a7942cc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upheavyrightdnlightbxd.glif new file mode 100644 index 00000000..41eb7f2f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upheavyrightlightbxd.glif new file mode 100644 index 00000000..1afffaf7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upleftdnleftdnrightquadrant.glif new file mode 100644 index 00000000..e0bdb776 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upleftdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upleftdnrightquadrant.glif new file mode 100644 index 00000000..6ca0f95d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upleftdnrightquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upleftquadrant.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upleftquadrant.glif new file mode 100644 index 00000000..9ab84ae1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upleftuprightdnleftquadrant.glif new file mode 100644 index 00000000..68671562 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upleftuprightdnleftquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upleftuprightdnrightquadrant.glif new file mode 100644 index 00000000..a20ceb2d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upleftuprightdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uplightdnhorzheavybxd.glif new file mode 100644 index 00000000..b79b9b0f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uplightdnhorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uplighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uplighthorzheavybxd.glif new file mode 100644 index 00000000..c8e5f912 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uplighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uplightleftdnheavybxd.glif new file mode 100644 index 00000000..1d653ee2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uplightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uplightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uplightleftheavybxd.glif new file mode 100644 index 00000000..3446bbf3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uplightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uplightrightdnheavybxd.glif new file mode 100644 index 00000000..ddee1d83 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uplightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uplightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uplightrightheavybxd.glif new file mode 100644 index 00000000..b106fe73 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uplightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uprightdnleftdnrightquadrant.glif new file mode 100644 index 00000000..4211b39d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uprightdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uprightdnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uprightdnleftquadrant.glif new file mode 100644 index 00000000..aea6004b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uprightdnleftquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uprightquadrant.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uprightquadrant.glif new file mode 100644 index 00000000..245dc1dd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uprightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upsnghorzdblbxd.glif new file mode 100644 index 00000000..7df84b0f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upsngleftdblbxd.glif new file mode 100644 index 00000000..5ea72b78 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upsngrightdblbxd.glif new file mode 100644 index 00000000..caf1fade --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/upsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uring.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uring.glif new file mode 100644 index 00000000..99331661 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/uring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/utilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..cfd84268 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/utilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/v.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/v.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/v.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/v.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vdotbelow.glif new file mode 100644 index 00000000..a3c1ff84 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertdblhorzsngbxd.glif new file mode 100644 index 00000000..4a992d8f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertdblhorzsngbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertdblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertdblleftsngbxd.glif new file mode 100644 index 00000000..e6a804ef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertdblleftsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertdblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertdblrightsngbxd.glif new file mode 100644 index 00000000..0980c49f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertdblrightsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertheavyhorzlightbxd.glif new file mode 100644 index 00000000..c477891c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertheavyhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertheavyleftlightbxd.glif new file mode 100644 index 00000000..93b48ba6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertheavyleftlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertheavyrightlightbxd.glif new file mode 100644 index 00000000..5c0a2026 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertheavyrightlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/verticallinelowmod.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/verticallinelowmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/verticallinelowmod.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/verticallinelowmod.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/verticallinemod.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/verticallinemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/verticallinemod.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/verticallinemod.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertlighthorzheavybxd.glif new file mode 100644 index 00000000..431afb11 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertlighthorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertlightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertlightleftheavybxd.glif new file mode 100644 index 00000000..359791de --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertlightleftheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertlightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertlightrightheavybxd.glif new file mode 100644 index 00000000..1d67cec3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertlightrightheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertsnghorzdblbxd.glif new file mode 100644 index 00000000..bde4f787 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertsnghorzdblbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertsngleftdblbxd.glif new file mode 100644 index 00000000..ef15700d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertsngleftdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertsngrightdblbxd.glif new file mode 100644 index 00000000..320ff1ef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/vertsngrightdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/w.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/w.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/w.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/w.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/w_w_w.liga.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/w_w_w.liga.glif new file mode 100644 index 00000000..5ccac97d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/w_w_w.liga.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/wacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..5233c8ba --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/wacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/wcircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..7b1e5b04 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/wdieresis.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..4baaede8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/wdieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/wgrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..0a979ff0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/wgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/won.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/won.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/won.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/won.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/x.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/x.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/x.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/x.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/xdieresis.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/xdieresis.glif new file mode 100644 index 00000000..496185dd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/xdieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/y.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/y.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/y.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/y.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/yacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..e57a9ced --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/yacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ycircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..4c4db462 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ydieresis.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..a70fda13 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ydieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ydotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ydotaccent.glif new file mode 100644 index 00000000..0a8f5e8e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ydotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ydotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ydotbelow.glif new file mode 100644 index 00000000..b000ccec --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ydotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/yen.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/yen.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/yen.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/yen.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ygrave.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ygrave.glif new file mode 100644 index 00000000..eb892540 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ygrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/yhookabove.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/yhookabove.glif new file mode 100644 index 00000000..96da1558 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/yhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ymacron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ymacron.glif new file mode 100644 index 00000000..350ef3f9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ymacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ytilde.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ytilde.glif new file mode 100644 index 00000000..80e17392 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/ytilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/z.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/z.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/z.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/z.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zacute.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..759c30fb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zcaron.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..b3cda80e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zcircumflex.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zcircumflex.glif new file mode 100644 index 00000000..05216691 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zdotaccent.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..a6c9d775 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zdotbelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zdotbelow.glif new file mode 100644 index 00000000..1e041b1d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zero.den.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zero.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zero.den.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zero.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zero.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zero.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zero.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zero.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zero.inf.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zero.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zero.inf.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zero.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zero.num.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zero.num.glif new file mode 100644 index 00000000..79b7d898 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zero.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zero.sup.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zero.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/zero.sup.glif rename to sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zero.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zlinebelow.glif b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zlinebelow.glif new file mode 100644 index 00000000..5e1497ef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/glyphs/zlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/layercontents.plist b/sources/instances/truetype/IntelOneMono-Bold.ufo/layercontents.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/layercontents.plist rename to sources/instances/truetype/IntelOneMono-Bold.ufo/layercontents.plist diff --git a/sources/instances/truetype/IntelOneMono-Bold.ufo/lib.plist b/sources/instances/truetype/IntelOneMono-Bold.ufo/lib.plist new file mode 100644 index 00000000..3b3b5b25 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Bold.ufo/lib.plist @@ -0,0 +1,1649 @@ + + + + + com.typemytype.robofont.compileSettings.autohint + 0 + com.typemytype.robofont.compileSettings.checkOutlines + + com.typemytype.robofont.compileSettings.createDummyDSIG + + com.typemytype.robofont.compileSettings.decompose + + com.typemytype.robofont.compileSettings.generateFormat + 1 + com.typemytype.robofont.compileSettings.layerName + foreground + com.typemytype.robofont.compileSettings.releaseMode + 1 + com.typemytype.robofont.italicSlantOffset + 0 + com.typemytype.robofont.segmentType + curve + com.typemytype.robofont.shouldAddPointsInSplineConversion + 1 + public.glyphOrder + + .notdef + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + S + T + U + V + W + X + Y + Z + a + b + c + d + e + f + g + h + i + j + k + l + m + n + o + p + q + r + s + t + u + v + w + x + y + z + period + comma + colon + semicolon + question + exclam + questiondown + exclamdown + ellipsis + twodotleader + quotedblleft + quotedblright + quotedblbase + quoteleft + quoteright + quotesinglbase + guillemetleft + guillemetright + guilsinglleft + guilsinglright + parenleft + parenright + bracketleft + bracketright + braceleft + braceright + slash + backslash + bar + hyphen + endash + emdash + periodcentered + bullet + underscore + ampersand + at + published + copyright + registered + servicemark + trademark + asterisk + dagger + daggerdbl + section + paragraph + zero + one + two + three + four + five + six + seven + eight + nine + colon.fig + plus + divide + minus + equal + notequal + asciitilde + approxequal + multiply + less + greater + lessequal + greaterequal + plusminus + asciicircum + mu + numbersign + percent + quotedbl + quotesingle + ordfeminine + ordmasculine + degree + dollar + sterling + yen + Euro + naira + peso + uni20BA + uni20BD + uni20B9 + bahtthai + won + cent + dong + onehalf + onethird + twothirds + onequarter + threequarters + onefifth + twofifths + threefifths + fourfifths + onesixth + fivesixths + oneeighth + threeeighths + fiveeighths + seveneighths + zero.sup + one.sup + two.sup + three.sup + four.sup + five.sup + six.sup + seven.sup + eight.sup + nine.sup + zero.inf + one.inf + two.inf + three.inf + four.inf + five.inf + six.inf + seven.inf + eight.inf + nine.inf + primemod + dblprimemod + commaturnedmod + apostrophemod + ringhalfleft + ringhalfright + verticallinemod + verticallinelowmod + acute + hungarumlaut + grave + circumflex + caron + breve + tilde + macron + dieresis + dotaccent + ring + uniA788 + macronlowmod + cedilla + ogonek + Aacute + Agrave + Acircumflex + Acircumflexdotbelow + Acircumflexacute + Acircumflexgrave + Acircumflexhookabove + Acircumflextilde + Acaron + Abreve + Abrevedotbelow + Abreveacute + Abrevegrave + Abrevehookabove + Abrevetilde + Atilde + Amacron + Adieresis + Adotaccent + Aring + Ahookabove + Adotbelow + Aogonek + AE + Blinebelow + Cacute + Ccircumflex + Ccaron + Cdotaccent + Ccedilla + Dcaron + Dcircumflexbelow + Dlinebelow + Ddotbelow + Dcroat + Eacute + Egrave + Ecircumflex + Ecircumflexdotbelow + Ecircumflexacute + Ecircumflexgrave + Ecircumflexhookabove + Ecircumflextilde + Ecaron + Ebreve + Etilde + Emacron + Edieresis + Edotaccent + Ehookabove + Edotbelow + Eogonek + Gcircumflex + Gcaron + Gbreve + Gmacron + Gdotaccent + Gcommaaccent + Hcircumflex + Hbrevebelow + Hdotbelow + Hcedilla + Hbar + Iacute + Igrave + Icircumflex + Icaron + Ibreve + Itilde + Imacron + Idieresis + Idotaccent + Ihookabove + Idotbelow + Iogonek + Jcircumflex + Klinebelow + Kcommaaccent + Kdotbelow + Lacute + Lcaron + Lcommaaccent + Lcircumflexbelow + Llinebelow + Lmacrondotbelow + Ldotbelow + L.dot + Lslash + Macute + Mdotaccent + Mdotbelow + Nacute + Ngrave + Ncaron + Ntilde + Ndotaccent + Ncircumflexbelow + Ncommaaccent + Ndotbelow + Nlinebelow + Eng + Oacute + Ohungarumlaut + Ograve + Ocircumflex + Ocircumflexdotbelow + Ocircumflexacute + Ocircumflexgrave + Ocircumflexhookabove + Ocircumflextilde + Ocaron + Obreve + Otilde + Omacron + Odieresis + Odotaccent + Ohookabove + Odotbelow + Oogonek + Oslash + OE + Ohorn + Ohornacute + Ohorngrave + Ohorntilde + Ohornhookabove + Ohorndotbelow + Racute + Rcaron + Rdotaccent + Rmacrondotbelow + Rcommaaccent + Rdotbelow + Rlinebelow + Sacute + Scircumflex + Scaron + Scommaaccent + Sdotbelow + Scedilla + uni1E9E + Tcaron + Tcircumflexbelow + Tcommaaccent + Tdotbelow + Tlinebelow + Tcedilla + Tbar + Uacute + Uhungarumlaut + Ugrave + Ucircumflex + Ucaron + Ubreve + Utilde + Umacron + Udieresis + Udieresisacute + Udieresisgrave + Udieresiscaron + Udieresismacron + Uring + Uhookabove + Udotbelow + Uogonek + Uhorn + Uhornacute + Uhorngrave + Uhorntilde + Uhornhookabove + Uhorndotbelow + Vdotbelow + Wacute + Wgrave + Wcircumflex + Wdieresis + Xdieresis + Yacute + Ygrave + Ycircumflex + Ytilde + Ymacron + Ydieresis + Ydotaccent + Yhookabove + Ydotbelow + Zacute + Zcircumflex + Zcaron + Zdotaccent + Zdotbelow + Zlinebelow + Eth + Thorn + Schwa + aacute + agrave + acircumflex + acircumflexdotbelow + acircumflexacute + acircumflexgrave + acircumflexhookabove + acircumflextilde + acaron + abreve + abrevedotbelow + abreveacute + abrevegrave + abrevehookabove + abrevetilde + atilde + amacron + adieresis + adotaccent + aring + ahookabove + adotbelow + aogonek + ae + blinebelow + cacute + ccircumflex + ccaron + cdotaccent + ccedilla + dcaron + dcircumflexbelow + dlinebelow + ddotbelow + dcroat + eacute + egrave + ecircumflex + ecircumflexdotbelow + ecircumflexacute + ecircumflexgrave + ecircumflexhookabove + ecircumflextilde + ecaron + ebreve + etilde + emacron + edieresis + edotaccent + ehookabove + edotbelow + eogonek + gcircumflex + gcaron + gbreve + gmacron + gdotaccent + gcommaaccent + hcircumflex + hbrevebelow + hlinebelow + hdotbelow + hcedilla + hbar + dotlessi + iacute + igrave + icircumflex + icaron + ibreve + itilde + imacron + idieresis + idotaccent + ihookabove + idotbelow + iogonek + dotlessj + jcircumflex + jcaron + klinebelow + kcommaaccent + kdotbelow + lacute + lcaron + lcommaaccent + lcircumflexbelow + llinebelow + lmacrondotbelow + ldotbelow + l.dot + lslash + macute + mdotaccent + mdotbelow + nacute + ngrave + ncaron + ntilde + ndotaccent + ncircumflexbelow + ncommaaccent + ndotbelow + nlinebelow + eng + oacute + ohungarumlaut + ograve + ocircumflex + ocircumflexdotbelow + ocircumflexacute + ocircumflexgrave + ocircumflexhookabove + ocircumflextilde + ocaron + obreve + otilde + omacron + odieresis + odotaccent + ohookabove + odotbelow + oogonek + oslash + oe + ohorn + ohornacute + ohorngrave + ohorntilde + ohornhookabove + ohorndotbelow + racute + rcaron + rdotaccent + rmacrondotbelow + rcommaaccent + rdotbelow + rlinebelow + sacute + scircumflex + scaron + scommaaccent + sdotbelow + scedilla + germandbls + tcaron + tcircumflexbelow + tcommaaccent + tdotbelow + tlinebelow + tcedilla + tbar + uacute + uhungarumlaut + ugrave + ucircumflex + ucaron + ubreve + utilde + umacron + udieresis + udieresisacute + udieresisgrave + udieresiscaron + udieresismacron + uring + uhookabove + udotbelow + uogonek + uhorn + uhornacute + uhorngrave + uhorntilde + uhornhookabove + uhorndotbelow + vdotbelow + wacute + wgrave + wcircumflex + wdieresis + xdieresis + yacute + ygrave + ycircumflex + ytilde + ymacron + ydieresis + ydotaccent + yhookabove + ydotbelow + zacute + zcircumflex + zcaron + zdotaccent + zdotbelow + zlinebelow + eth + thorn + schwa + space + uni00A0 + zero.num + one.num + two.num + three.num + four.num + five.num + six.num + seven.num + eight.num + nine.num + fraction + fracbar + zero.den + one.den + two.den + three.den + four.den + five.den + six.den + seven.den + eight.den + nine.den + uni2011 + horizontalbar + middotcat + middotcat.cap + acutecmb + hungarumlautcmb + gravecmb + commaaboverightcmb + circumflexcmb + caroncmb + brevecmb + tildecmb + macroncmb + dieresiscmb + dotaccentcmb + ringcmb + commaturnedabovecmb + hookcmb + circumflexbelowcmb + brevebelowcmb + macronbelowcmb + dieresisbelowcmb + dotbelowcmb + uni0326 + cedillacmb + ogonekcmb + dieresisacute + dieresisgrave + dieresiscaron + dieresismacron + breveacute + brevegrave + brevehook + brevetilde + circumflexacute + circumflexgrave + circumflexhook + circumflextilde + acutecmb.cap + hungarumlautcmb.cap + gravecmb.cap + circumflexcmb.cap + caroncmb.cap + brevecmb.cap + tildecmb.cap + macroncmb.cap + dieresiscmb.cap + dotaccentcmb.cap + ringcmb.cap + hookcmb.cap + dieresisacute.cap + dieresisgrave.cap + dieresiscaron.cap + dieresismacron.cap + breveacute.cap + brevegrave.cap + brevehook.cap + brevetilde.cap + circumflexacute.cap + circumflexgrave.cap + circumflexhook.cap + circumflextilde.cap + lighthorzbxd + heavyhorzbxd + lightvertbxd + heavyvertbxd + lighttrpldashhorzbxd + heavytrpldashhorzbxd + lighttrpldashvertbxd + heavytrpldashvertbxd + lightquaddashhorzbxd + heavyquaddashhorzbxd + lightquaddashvertbxd + heavyquaddashvertbxd + lightdnrightbxd + dnlightrightheavybxd + dnheavyrightlightbxd + heavydnrightbxd + lightdnleftbxd + dnlightleftheavybxd + dnheavyleftlightbxd + heavydnleftbxd + lightuprightbxd + uplightrightheavybxd + upheavyrightlightbxd + heavyuprightbxd + lightupleftbxd + uplightleftheavybxd + upheavyleftlightbxd + heavyupleftbxd + lightvertrightbxd + vertlightrightheavybxd + upheavyrightdnlightbxd + dnheavyrightuplightbxd + vertheavyrightlightbxd + dnlightrightupheavybxd + uplightrightdnheavybxd + heavyvertrightbxd + lightvertleftbxd + vertlightleftheavybxd + upheavyleftdnlightbxd + dnheavyleftuplightbxd + vertheavyleftlightbxd + dnlightleftupheavybxd + uplightleftdnheavybxd + heavyvertleftbxd + lightdnhorzbxd + leftheavyrightdnlightbxd + rightheavyleftdnlightbxd + dnlighthorzheavybxd + dnheavyhorzlightbxd + rightlightleftdnheavybxd + leftlightrightdnheavybxd + heavydnhorzbxd + lightuphorzbxd + leftheavyrightuplightbxd + rightheavyleftuplightbxd + uplighthorzheavybxd + upheavyhorzlightbxd + rightlightleftupheavybxd + leftlightrightupheavybxd + heavyuphorzbxd + lightverthorzbxd + leftheavyrightvertlightbxd + rightheavyleftvertlightbxd + vertlighthorzheavybxd + upheavydnhorzlightbxd + dnheavyuphorzlightbxd + vertheavyhorzlightbxd + leftupheavyrightdnlightbxd + rightupheavyleftdnlightbxd + leftdnheavyrightuplightbxd + rightdnheavyleftuplightbxd + dnlightuphorzheavybxd + uplightdnhorzheavybxd + rightlightleftvertheavybxd + leftlightrightvertheavybxd + heavyverthorzbxd + lightdbldashhorzbxd + heavydbldashhorzbxd + lightdbldashvertbxd + heavydbldashvertbxd + dblhorzbxd + dblvertbxd + dnsngrightdblbxd + dndblrightsngbxd + dbldnrightbxd + dnsngleftdblbxd + dndblleftsngbxd + dbldnleftbxd + upsngrightdblbxd + updblrightsngbxd + dbluprightbxd + upsngleftdblbxd + updblleftsngbxd + dblupleftbxd + vertsngrightdblbxd + vertdblrightsngbxd + dblvertrightbxd + vertsngleftdblbxd + vertdblleftsngbxd + dblvertleftbxd + dnsnghorzdblbxd + dndblhorzsngbxd + dbldnhorzbxd + upsnghorzdblbxd + updblhorzsngbxd + dbluphorzbxd + vertsnghorzdblbxd + vertdblhorzsngbxd + dblverthorzbxd + lightarcdnrightbxd + lightarcdnleftbxd + lightarcupleftbxd + lightarcuprightbxd + lightdiaguprightdnleftbxd + lightdiagupleftdnrightbxd + lightdiagcrossbxd + lightleftbxd + lightupbxd + lightrightbxd + lightdnbxd + heavyleftbxd + heavyupbxd + heavyrightbxd + heavydnbxd + lightleftheavyrightbxd + lightupheavydnbxd + heavyleftlightrightbxd + heavyuplightdnbxd + uphalfblock + dneighthblock + dnquarterblock + dnthreeeighthsblock + dnhalfblock + dnfiveeighthsblock + dnthreequartersblock + dnseveneighthsblock + fullblock + leftseveneighthsblock + leftthreequartersblock + leftfiveeighthsblock + lefthalfblock + leftthreeeighthsblock + leftquarterblock + lefteighthblock + righthalfblock + lightshade + mediumshade + darkshade + upeighthblock + righteighthblock + dnleftquadrant + dnrightquadrant + upleftquadrant + upleftdnleftdnrightquadrant + upleftdnrightquadrant + upleftuprightdnleftquadrant + upleftuprightdnrightquadrant + uprightquadrant + uprightdnleftquadrant + uprightdnleftdnrightquadrant + ligspacer + equal.start + equal.middle + equal.end + hyphen.start + hyphen.middle + hyphen.end + underscore.start + underscore.middle + underscore.end + numbersign.start + numbersign.middle + numbersign.end + period_equal.liga + period_period_equal.liga + period_hyphen.liga + colon_equal.liga + equal_equal.liga + exclam_equal.liga + equal_equal_equal.liga + exclam_equal_equal.liga + less_hyphen_less.liga + less_less_hyphen.liga + less_hyphen.liga + less_hyphen_greater.liga + hyphen_greater.liga + hyphen_greater_greater.liga + greater_hyphen_greater.liga + less_equal_less.liga + less_less_equal.liga + less_equal_greater.liga + equal_greater.liga + less_equal.liga + equal_greater_greater.liga + greater_equal_greater.liga + greater_equal.liga + greater_greater_equal.liga + greater_greater_hyphen.liga + greater_hyphen.liga + less_asciitilde_greater.liga + hyphen_less.liga + hyphen_less_less.liga + equal_less.liga + equal_less_less.liga + less_asciitilde_asciitilde.liga + less_asciitilde.liga + asciitilde_asciitilde.liga + asciitilde_greater.liga + asciitilde_asciitilde_greater + less_exclam_hyphen_hyphen.liga + slash_equal.liga + hyphen_bar.liga + bar_hyphen.liga + bar_equal.liga + hyphen_bar_bar.liga + bar_bar_hyphen.liga + equal_bar_bar.liga + bar_bar_equal.liga + equal_bar.liga + slash_slash_equal.liga + equal_slash.liga + equal_slash_slash.liga + equal_colon_equal.middle + equal_exclam_equal.middle + underscore_bar_underscore.m + hyphen_bar_hyphen.middle + equal_bar_equal.middle + hyphen_greater_hyphen.middle + hyphen_greater_greater_hyphen.m + equal_slash_slash_equal.middle + equal_slash_equal.middle + hyphen_bar_bar_hyphen.middle + equal_bar_bar_equal.middle + hyphen_less_hyphen.middle + hyphen_less_less_hyphen.middle + equal_greater_equal.middle + equal_less_equal.middle + equal_greater_greater_equal.m + equal_less_less_equal.middle + less_hyphen.start + greater_hyphen.start + bar_hyphen.start + less_equal.start + greater_equal.start + bar_equal.start + slash_equal.start + slash_slash_equal.start + less_less_hyphen.start + greater_greater_hyphen.start + bar_bar_hyphen.start + less_less_equal.start + greater_greater_equal.start + bar_bar_equal.start + hyphen_less.end + hyphen_greater.end + hyphen_bar.end + equal_less.end + equal_greater.end + equal_bar.end + hyphen_less_less.end + hyphen_greater_greater.end + hyphen_bar_bar.end + equal_less_less.end + equal_greater_greater.end + equal_bar_bar.end + equal_slash.end + equal_slash_slash.end + less_less_less.liga + less_less.liga + less_equal + less_greater.liga + greater_equal + greater_greater.liga + greater_greater_greater.liga + braceleft_bar.liga + bracketleft_bar.liga + less_colon.liga + colon_less.liga + greater_colon.liga + colon_greater.liga + bar_braceright.liga + bar_bracketright.liga + less_bar_bar_bar.liga + less_bar_bar.liga + less_bar.liga + less_bar_greater.liga + bar_greater.liga + bar_bar_greater.liga + bar_bar_bar_greater.liga + less_dollar.liga + less_dollar_greater.liga + dollar_greater.liga + less_plus.liga + less_plus_greater.liga + plus_greater.liga + less_asterisk.liga + less_asterisk_greater.liga + asterisk_greater.liga + slash_asterisk.liga + asterisk_slash.liga + slash_slash_slash.liga + slash_slash.liga + less_slash.liga + less_slash_greater.liga + slash_greater.liga + semicolon_semicolon.liga + colon_colon.liga + colon_colon_colon.liga + period_period.liga + period_period_period.liga + period_period_less.liga + exclam_exclam.liga + question_question.liga + percent_percent.liga + ampersand_ampersand.liga + bar_bar.liga + question_period.liga + question_colon.liga + plus_plus.liga + plus_plus_plus.liga + hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga + asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga + equal_asciitilde.liga + exclam_asciitilde.liga + asciitilde_hyphen.liga + w_w_w.liga + hyphen_asciitilde.liga + asciitilde_at.liga + asciicircum_equal.liga + question_equal.liga + numbersign_exclam.liga + numbersign_equal.liga + numbersign_colon.liga + numbersign_braceleft.liga + numbersign_bracketleft.liga + bracketright_numbersign.liga + numbersign_parenleft.liga + numbersign_question.liga + numbersign_underscore.liga + numbersign_underscore_parenleft + backslash_slash.liga + bar_bar_bar.liga + colon_colon_equal.liga + exclam_exclam_period.liga + period_question.liga + slash_backslash.liga + uniE0A0 + uniE0A1 + uniE0A2 + uniE0B0 + uniE0B1 + uniE0B2 + uniE0B3 + uni2610 + uni2611 + uni2612 + uni2713 + + public.postscriptNames + + Abreveacute + uni1EAE + Abrevedotbelow + uni1EB6 + Abrevegrave + uni1EB0 + Abrevehookabove + uni1EB2 + Abrevetilde + uni1EB4 + Acaron + uni01CD + Acircumflexacute + uni1EA4 + Acircumflexdotbelow + uni1EAC + Acircumflexgrave + uni1EA6 + Acircumflexhookabove + uni1EA8 + Acircumflextilde + uni1EAA + Adotaccent + uni0226 + Adotbelow + uni1EA0 + Ahookabove + uni1EA2 + Blinebelow + uni1E06 + Dcircumflexbelow + uni1E12 + Ddotbelow + uni1E0C + Dlinebelow + uni1E0E + Ecircumflexacute + uni1EBE + Ecircumflexdotbelow + uni1EC6 + Ecircumflexgrave + uni1EC0 + Ecircumflexhookabove + uni1EC2 + Ecircumflextilde + uni1EC4 + Edotbelow + uni1EB8 + Ehookabove + uni1EBA + Etilde + uni1EBC + Gcommaaccent + uni0122 + Gmacron + uni1E20 + Hbrevebelow + uni1E2A + Hcedilla + uni1E28 + Hdotbelow + uni1E24 + Icaron + uni01CF + Idotbelow + uni1ECA + Ihookabove + uni1EC8 + Kcommaaccent + uni0136 + Kdotbelow + uni1E32 + Klinebelow + uni1E34 + L.dot + Ldot + Lcircumflexbelow + uni1E3C + Lcommaaccent + uni013B + Ldotbelow + uni1E36 + Llinebelow + uni1E3A + Lmacrondotbelow + uni1E38 + Macute + uni1E3E + Mdotaccent + uni1E40 + Mdotbelow + uni1E42 + Ncircumflexbelow + uni1E4A + Ncommaaccent + uni0145 + Ndotaccent + uni1E44 + Ndotbelow + uni1E46 + Ngrave + uni01F8 + Nlinebelow + uni1E48 + Ocaron + uni01D1 + Ocircumflexacute + uni1ED0 + Ocircumflexdotbelow + uni1ED8 + Ocircumflexgrave + uni1ED2 + Ocircumflexhookabove + uni1ED4 + Ocircumflextilde + uni1ED6 + Odotaccent + uni022E + Odotbelow + uni1ECC + Ohookabove + uni1ECE + Ohornacute + uni1EDA + Ohorndotbelow + uni1EE2 + Ohorngrave + uni1EDC + Ohornhookabove + uni1EDE + Ohorntilde + uni1EE0 + Oogonek + uni01EA + Rcommaaccent + uni0156 + Rdotaccent + uni1E58 + Rdotbelow + uni1E5A + Rlinebelow + uni1E5E + Rmacrondotbelow + uni1E5C + Scedilla + uni015E + Schwa + uni018F + Scommaaccent + uni0218 + Sdotbelow + uni1E62 + Tcedilla + uni0162 + Tcircumflexbelow + uni1E70 + Tcommaaccent + uni021A + Tdotbelow + uni1E6C + Tlinebelow + uni1E6E + Ucaron + uni01D3 + Udieresisacute + uni01D7 + Udieresiscaron + uni01D9 + Udieresisgrave + uni01DB + Udieresismacron + uni01D5 + Udotbelow + uni1EE4 + Uhookabove + uni1EE6 + Uhornacute + uni1EE8 + Uhorndotbelow + uni1EF0 + Uhorngrave + uni1EEA + Uhornhookabove + uni1EEC + Uhorntilde + uni1EEE + Vdotbelow + uni1E7E + Xdieresis + uni1E8C + Ydotaccent + uni1E8E + Ydotbelow + uni1EF4 + Yhookabove + uni1EF6 + Ymacron + uni0232 + Ytilde + uni1EF8 + Zcircumflex + uni1E90 + Zdotbelow + uni1E92 + Zlinebelow + uni1E94 + abreveacute + uni1EAF + abrevedotbelow + uni1EB7 + abrevegrave + uni1EB1 + abrevehookabove + uni1EB3 + abrevetilde + uni1EB5 + acaron + uni01CE + acircumflexacute + uni1EA5 + acircumflexdotbelow + uni1EAD + acircumflexgrave + uni1EA7 + acircumflexhookabove + uni1EA9 + acircumflextilde + uni1EAB + acutecmb + uni0301 + acutecmb.cap + uni0301.cap + adotaccent + uni0227 + adotbelow + uni1EA1 + ahookabove + uni1EA3 + apostrophemod + uni02BC + bahtthai + uni0E3F + blinebelow + uni1E07 + breveacute + uni02D80301 + breveacute.cap + uni02D80301.cap + brevebelowcmb + uni032E + brevecmb + uni0306 + brevecmb.cap + uni0306.cap + brevegrave + uni02D80300 + brevegrave.cap + uni02D80300.cap + brevehook + uni02D80309 + brevehook.cap + uni02D80309.cap + brevetilde + uni02D80303 + brevetilde.cap + uni02D80303.cap + caroncmb + uni030C + caroncmb.cap + uni030C.cap + cedillacmb + uni0327 + circumflexacute + uni02C60301 + circumflexacute.cap + uni02C60301.cap + circumflexbelowcmb + uni032D + circumflexcmb + uni0302 + circumflexcmb.cap + uni0302.cap + circumflexgrave + uni02C60300 + circumflexgrave.cap + uni02C60300.cap + circumflexhook + uni02C60309 + circumflexhook.cap + uni02C60309.cap + circumflextilde + uni02C60303 + circumflextilde.cap + uni02C60303.cap + commaaboverightcmb + uni0315 + commaturnedabovecmb + uni0312 + commaturnedmod + uni02BB + dblprimemod + uni02BA + dcircumflexbelow + uni1E13 + ddotbelow + uni1E0D + dieresisacute + uni00A80301 + dieresisacute.cap + uni00A80301.cap + dieresisbelowcmb + uni0324 + dieresiscaron + uni00A8030C + dieresiscaron.cap + uni00A8030C.cap + dieresiscmb + uni0308 + dieresiscmb.cap + uni0308.cap + dieresisgrave + uni00A80300 + dieresisgrave.cap + uni00A80300.cap + dieresismacron + uni00A80304 + dieresismacron.cap + uni00A80304.cap + dlinebelow + uni1E0F + dotaccentcmb + uni0307 + dotaccentcmb.cap + uni0307.cap + dotbelowcmb + uni0323 + dotlessj + uni0237 + ecircumflexacute + uni1EBF + ecircumflexdotbelow + uni1EC7 + ecircumflexgrave + uni1EC1 + ecircumflexhookabove + uni1EC3 + ecircumflextilde + uni1EC5 + edotbelow + uni1EB9 + ehookabove + uni1EBB + etilde + uni1EBD + gcommaaccent + uni0123 + gmacron + uni1E21 + gravecmb + uni0300 + gravecmb.cap + uni0300.cap + guillemetleft + uni00AB + guillemetright + uni00BB + hbrevebelow + uni1E2B + hcedilla + uni1E29 + hdotbelow + uni1E25 + hlinebelow + uni1E96 + hookcmb + uni0309 + hookcmb.cap + uni0309.cap + horizontalbar + uni2015 + hungarumlautcmb + uni030B + hungarumlautcmb.cap + uni030B.cap + icaron + uni01D0 + idotaccent + i.dot + idotbelow + uni1ECB + ihookabove + uni1EC9 + jcaron + uni01F0 + kcommaaccent + uni0137 + kdotbelow + uni1E33 + klinebelow + uni1E35 + l.dot + ldot + lcircumflexbelow + uni1E3D + lcommaaccent + uni013C + ldotbelow + uni1E37 + llinebelow + uni1E3B + lmacrondotbelow + uni1E39 + macronbelowcmb + uni0331 + macroncmb + uni0304 + macroncmb.cap + uni0304.cap + macronlowmod + uni02CD + macute + uni1E3F + mdotaccent + uni1E41 + mdotbelow + uni1E43 + naira + uni20A6 + ncircumflexbelow + uni1E4B + ncommaaccent + uni0146 + ndotaccent + uni1E45 + ndotbelow + uni1E47 + ngrave + uni01F9 + nlinebelow + uni1E49 + ocaron + uni01D2 + ocircumflexacute + uni1ED1 + ocircumflexdotbelow + uni1ED9 + ocircumflexgrave + uni1ED3 + ocircumflexhookabove + uni1ED5 + ocircumflextilde + uni1ED7 + odotaccent + uni022F + odotbelow + uni1ECD + ogonekcmb + uni0328 + ohookabove + uni1ECF + ohornacute + uni1EDB + ohorndotbelow + uni1EE3 + ohorngrave + uni1EDD + ohornhookabove + uni1EDF + ohorntilde + uni1EE1 + oogonek + uni01EB + peso + uni20B1 + primemod + uni02B9 + published + uni2117 + rcommaaccent + uni0157 + rdotaccent + uni1E59 + rdotbelow + uni1E5B + ringcmb + uni030A + ringcmb.cap + uni030A.cap + ringhalfleft + uni02BF + ringhalfright + uni02BE + rlinebelow + uni1E5F + rmacrondotbelow + uni1E5D + scedilla + uni015F + schwa + uni0259 + scommaaccent + uni0219 + sdotbelow + uni1E63 + servicemark + uni2120 + tcedilla + uni0163 + tcircumflexbelow + uni1E71 + tcommaaccent + uni021B + tdotbelow + uni1E6D + tildecmb + uni0303 + tildecmb.cap + uni0303.cap + tlinebelow + uni1E6F + twodotleader + uni2025 + ucaron + uni01D4 + udieresisacute + uni01D8 + udieresiscaron + uni01DA + udieresisgrave + uni01DC + udieresismacron + uni01D6 + udotbelow + uni1EE5 + uhookabove + uni1EE7 + uhornacute + uni1EE9 + uhorndotbelow + uni1EF1 + uhorngrave + uni1EEB + uhornhookabove + uni1EED + uhorntilde + uni1EEF + uni1E9E + uni1E9E + vdotbelow + uni1E7F + verticallinelowmod + uni02CC + verticallinemod + uni02C8 + won + uni20A9 + xdieresis + uni1E8D + ydotaccent + uni1E8F + ydotbelow + uni1EF5 + yhookabove + uni1EF7 + ymacron + uni0233 + ytilde + uni1EF9 + zcircumflex + uni1E91 + zdotbelow + uni1E93 + zlinebelow + uni1E95 + + + diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/metainfo.plist b/sources/instances/truetype/IntelOneMono-Bold.ufo/metainfo.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/metainfo.plist rename to sources/instances/truetype/IntelOneMono-Bold.ufo/metainfo.plist diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/features.fea b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/features.fea deleted file mode 100644 index 442214bb..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/features.fea +++ /dev/null @@ -1,271 +0,0 @@ -# ---------------------------- -# INTEL ONE MONO OPENTYPE CODE -# ---------------------------- - -# ---------------- -# Language Systems -# ---------------- - -languagesystem DFLT dflt; -languagesystem latn dflt; -languagesystem latn TRK; -languagesystem latn AZE; -languagesystem latn CRT; -languagesystem latn CAT; - - -# ------- -# Classes -# ------- - -# Base Letters -@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; -@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; - -# Figures -@fig = [zero one two three four five six seven eight nine]; -@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; -@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; -@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; -@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; - -# Marks Above -@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; -@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; - -# Marks Below -@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; - - -# --------------- -# Localized Forms -# --------------- - -feature locl { - script latn; - language TRK; - lookup iTurkish { - sub i by idotaccent; - } iTurkish; - language AZE; - lookup iTurkish; - language CRT; - lookup iTurkish; - language CAT; - sub l periodcentered' l by middotcat; - sub L periodcentered' L by middotcat.cap; - # try fusing them - sub L middotcat.cap by L.dot; - sub L middotcat by L.dot; - sub l middotcat by l.dot; -} locl; - - -# --------------------------------- -# Glyph Composition / Decomposition -# --------------------------------- - -feature ccmp { - - # Decompose unicode lowercase characters whose uppercase counterparts have no unicode. - lookup Decomp { - sub hlinebelow by h macronlowmod; - sub jcaron by j caron; - } Decomp; - - # Replace double above accents by combined drawings. - lookup DblMarks { - sub dieresiscmb acutecmb by dieresisacute; - sub dieresiscmb gravecmb by dieresisgrave; - sub dieresiscmb caroncmb by dieresiscaron; - sub dieresiscmb macroncmb by dieresismacron; - sub brevecmb acutecmb by breveacute; - sub brevecmb gravecmb by brevegrave; - sub brevecmb hookcmb by brevehook; - sub brevecmb tildecmb by brevetilde; - sub circumflexcmb acutecmb by circumflexacute; - sub circumflexcmb gravecmb by circumflexgrave; - sub circumflexcmb hookcmb by circumflexhook; - sub circumflexcmb tildecmb by circumflextilde; - # capital forms - sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; - sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; - sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; - sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; - sub brevecmb.cap acutecmb.cap by breveacute.cap; - sub brevecmb.cap gravecmb.cap by brevegrave.cap; - sub brevecmb.cap hookcmb.cap by brevehook.cap; - sub brevecmb.cap tildecmb.cap by brevetilde.cap; - sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; - sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; - sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; - sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; - } DblMarks; - - # Replace combining marks that follow a uppercase letter by their uppercase form - lookup CapitalMarks { - sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; - sub [@ltrUC] [@lcMarks]' by [@ucMarks]; - } CapitalMarks; - - # Replace letters with dotless counterparts when followed by a combining mark - lookup Dotless { - sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; - sub [i j]' [@lcMarks] by [dotlessi dotlessj]; - } Dotless; - - # Replace e ogonek with pre-drawn eogonek - lookup eogonek { - sub e ogonekcmb by eogonek; - } eogonek; - -} ccmp; - - -# ---------- -# Numerators -# ---------- - -feature numr { - sub @fig by @figNum; -} numr; - -# ------------ -# Denominators -# ------------ - -feature dnom { - sub @fig by @figDen; -} dnom; - -# ----------- -# Superscript -# ----------- - -feature sups { - sub @fig by @figSup; -} sups; - -# --------------------- -# Subscript & Inferiors -# --------------------- - -feature subs { - sub @fig by @figInf; -} subs; - -feature sinf { - sub @fig by @figInf; -} sinf; - - -# --------------------- -# Contextual Alternates -# --------------------- - -feature calt { - # shifts colon to align with math symbols when used together - - sub colon' [plus equal greater less hyphen] by colon.fig; - sub [plus equal less greater hyphen] colon' by colon.fig; - - sub colon' [colon colon.fig] by colon.fig; - sub colon.fig colon' by colon.fig; - -} calt; - - -# -------------- -# Stylistic Sets -# -------------- - -feature ss11 { - featureNames { - name "Raised Colon (Figures Only)"; # Windows English - name 1 0 0 "Raised Colon (Figures Only)"; # Mac English - }; - lookup FigureColonContextual { - sub @fig colon' @fig by colon.fig; - } FigureColonContextual; -} ss11; - -feature ss12 { - featureNames { - name "Raised Colon (Global)"; # Windows English - name 1 0 0 "Raised Colon (Global)"; # Mac English - }; - lookup FigureColon { - sub colon by colon.fig; - } FigureColon; -} ss12; - - -# -------------------- -# Stylistic Alternates -# -------------------- - -feature salt { - lookup FigureColon; # SS12 -} salt; - - -# -------------- -# All Alternates -# -------------- - -feature aalt { - sub germandbls from [germandbls uni1E9E]; - sub uni1E9E from [uni1E9E germandbls]; - sub colon from [colon colon.fig]; - sub colon.fig from [colon.fig colon]; - sub eight from [eight eight.den eight.sup eight.num eight.inf]; - sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; - sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; - sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; - sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; - sub five from [five five.inf five.num five.den five.sup]; - sub five.sup from [five.sup five five.inf five.num five.den]; - sub five.den from [five.den five.sup five five.inf five.num]; - sub five.num from [five.num five.den five.sup five five.inf]; - sub five.inf from [five.inf five.num five.den five.sup five]; - sub four from [four four.sup four.num four.den four.inf]; - sub four.inf from [four.inf four four.sup four.num four.den]; - sub four.den from [four.den four.inf four four.sup four.num]; - sub four.num from [four.num four.den four.inf four four.sup]; - sub four.sup from [four.sup four.num four.den four.inf four]; - sub nine from [nine nine.den nine.inf nine.num nine.sup]; - sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; - sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; - sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; - sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; - sub one from [one one.den one.num one.inf one.sup]; - sub one.sup from [one.sup one one.den one.num one.inf]; - sub one.inf from [one.inf one.sup one one.den one.num]; - sub one.num from [one.num one.inf one.sup one one.den]; - sub one.den from [one.den one.num one.inf one.sup one]; - sub seven from [seven seven.inf seven.num seven.sup seven.den]; - sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; - sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; - sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; - sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; - sub six from [six six.num six.sup six.den six.inf]; - sub six.inf from [six.inf six six.num six.sup six.den]; - sub six.den from [six.den six.inf six six.num six.sup]; - sub six.sup from [six.sup six.den six.inf six six.num]; - sub six.num from [six.num six.sup six.den six.inf six]; - sub three from [three three.inf three.den three.num three.sup]; - sub three.sup from [three.sup three three.inf three.den three.num]; - sub three.num from [three.num three.sup three three.inf three.den]; - sub three.den from [three.den three.num three.sup three three.inf]; - sub three.inf from [three.inf three.den three.num three.sup three]; - sub two from [two two.inf two.sup two.num two.den]; - sub two.den from [two.den two two.inf two.sup two.num]; - sub two.num from [two.num two.den two two.inf two.sup]; - sub two.sup from [two.sup two.num two.den two two.inf]; - sub two.inf from [two.inf two.sup two.num two.den two]; - sub zero from [zero zero.sup zero.num zero.den zero.inf]; - sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; - sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; - sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; - sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; -} aalt; diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/fontinfo.plist b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/fontinfo.plist deleted file mode 100644 index 59a96ed2..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/fontinfo.plist +++ /dev/null @@ -1,407 +0,0 @@ - - - - - ascender - 740 - capHeight - 655 - copyright - Copyright 2023 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) - descender - -260 - familyName - Intel One Mono - guidelines - - italicAngle - -16.0 - openTypeHeadFlags - - 0 - 1 - - openTypeHheaAscender - 1090 - openTypeHheaDescender - -290 - openTypeHheaLineGap - 0 - openTypeNameDesigner - Fred Shallcrass - openTypeNameDesignerURL - http://frerejones.com - openTypeNameLicense - This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL - openTypeNameLicenseURL - https://github.com/intel/intel-one-mono/blob/main/license - openTypeNameManufacturer - Frere-Jones Type LLC - openTypeNameManufacturerURL - http://frerejones.com - openTypeNamePreferredFamilyName - Intel One Mono - openTypeNamePreferredSubfamilyName - Bold Italic - openTypeNameRecords - - - encodingID - 0 - languageID - 0 - nameID - 0 - platformID - 1 - string - (C) 2023 Intel Corporation - - - encodingID - 1 - languageID - 1033 - nameID - 0 - platformID - 3 - string - (C) 2023 Intel Corporation - - - encodingID - 0 - languageID - 0 - nameID - 1 - platformID - 1 - string - Intel One Mono - - - encodingID - 1 - languageID - 1033 - nameID - 1 - platformID - 3 - string - Intel One Mono - - - encodingID - 0 - languageID - 0 - nameID - 2 - platformID - 1 - string - Bold Italic - - - encodingID - 1 - languageID - 1033 - nameID - 2 - platformID - 3 - string - Bold Italic - - - encodingID - 0 - languageID - 0 - nameID - 4 - platformID - 1 - string - Intel One Mono Bold Italic - - - encodingID - 1 - languageID - 1033 - nameID - 4 - platformID - 3 - string - Intel One Mono Bold Italic - - - encodingID - 0 - languageID - 0 - nameID - 6 - platformID - 1 - string - IntelOneMono-BoldItalic - - - encodingID - 1 - languageID - 1033 - nameID - 6 - platformID - 3 - string - IntelOneMono-BoldItalic - - - encodingID - 0 - languageID - 0 - nameID - 8 - platformID - 1 - string - Frere-Jones Type LLC - - - encodingID - 1 - languageID - 1033 - nameID - 8 - platformID - 3 - string - Frere-Jones Type LLC - - - encodingID - 0 - languageID - 0 - nameID - 9 - platformID - 1 - string - Fred Shallcrass - - - encodingID - 1 - languageID - 1033 - nameID - 9 - platformID - 3 - string - Fred Shallcrass - - - encodingID - 0 - languageID - 0 - nameID - 11 - platformID - 1 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 11 - platformID - 3 - string - http://frerejones.com - - - encodingID - 0 - languageID - 0 - nameID - 12 - platformID - 1 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 12 - platformID - 3 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 16 - platformID - 3 - string - Intel One Mono - - - encodingID - 1 - languageID - 1033 - nameID - 17 - platformID - 3 - string - Bold Italic - - - openTypeOS2CodePageRanges - - 0 - 1 - 4 - 7 - 8 - 29 - - openTypeOS2Panose - - 2 - 11 - 8 - 9 - 2 - 2 - 3 - 9 - 2 - 4 - - openTypeOS2Selection - - 7 - 8 - - openTypeOS2StrikeoutPosition - 286 - openTypeOS2StrikeoutSize - 50 - openTypeOS2Type - - openTypeOS2TypoAscender - 1090 - openTypeOS2TypoDescender - -290 - openTypeOS2TypoLineGap - 0 - openTypeOS2UnicodeRanges - - 0 - 1 - 2 - 29 - 32 - - openTypeOS2VendorID - FRJN - openTypeOS2WeightClass - 700 - openTypeOS2WidthClass - 5 - openTypeOS2WinAscent - 1090 - openTypeOS2WinDescent - 290 - postscriptBlueFuzz - 0 - postscriptBlueScale - 0.05 - postscriptBlueValues - - -15 - 0 - 477 - 492 - 655 - 670 - 710 - 725 - - postscriptDefaultWidthX - 614 - postscriptFamilyBlues - - postscriptFamilyOtherBlues - - postscriptFontName - IntelOneMono-BoldItalic - postscriptForceBold - - postscriptFullName - Intel One Mono Bold Italic - postscriptIsFixedPitch - - postscriptOtherBlues - - -245 - -230 - - postscriptStemSnapH - - 120 - - postscriptStemSnapV - - 139 - - postscriptUnderlinePosition - -75 - postscriptUnderlineThickness - 50 - styleMapFamilyName - Intel One Mono - styleMapStyleName - bold italic - styleName - Bold Italic - unitsPerEm - 1000 - versionMajor - 1 - versionMinor - 3 - xHeight - 477 - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_.dot.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_.dot.glif deleted file mode 100644 index de3df2f3..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_.dot.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_E_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_E_.glif deleted file mode 100644 index dc4c22fd..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_E_.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_breve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_breve.glif deleted file mode 100644 index 7a1c611d..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_breve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_caron.glif deleted file mode 100644 index a19f847a..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_circumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_circumflex.glif deleted file mode 100644 index 39a2db79..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_circumflexacute.glif deleted file mode 100644 index 464c4153..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_circumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_circumflexdotbelow.glif deleted file mode 100644 index c27c7538..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_circumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_circumflexgrave.glif deleted file mode 100644 index b8067676..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_circumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_circumflexhookabove.glif deleted file mode 100644 index 91bcfd51..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_circumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_circumflextilde.glif deleted file mode 100644 index 0edf1d56..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_circumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_dieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_dieresis.glif deleted file mode 100644 index 9e9eb802..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_dotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_dotaccent.glif deleted file mode 100644 index 510e3292..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_dotbelow.glif deleted file mode 100644 index e109ad93..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_hookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_hookabove.glif deleted file mode 100644 index afd8457e..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_horn.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_horn.glif deleted file mode 100644 index 0ad09ad8..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_horn.glif +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_hornacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_hornacute.glif deleted file mode 100644 index 1f82b62e..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_hornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_horndotbelow.glif deleted file mode 100644 index c9af7efc..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_horndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_horngrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_horngrave.glif deleted file mode 100644 index 4fab1bd0..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_horngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_hornhookabove.glif deleted file mode 100644 index b3e5100d..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_hornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_horntilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_horntilde.glif deleted file mode 100644 index ec1bd2d7..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_horntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_macron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_macron.glif deleted file mode 100644 index 5e5ebce3..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_ogonek.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_ogonek.glif deleted file mode 100644 index e7324697..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_ogonek.glif +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_slash.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_slash.glif deleted file mode 100644 index 96398e0b..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_slash.glif +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_tilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_tilde.glif deleted file mode 100644 index 29e46a88..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/R_acute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/R_acute.glif deleted file mode 100644 index 9e88d4ee..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/R_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/R_caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/R_caron.glif deleted file mode 100644 index 3629c7b0..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/R_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/R_dotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/R_dotaccent.glif deleted file mode 100644 index 1ecd69ae..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/R_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/R_macrondotbelow.glif deleted file mode 100644 index c51c470d..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/R_macrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_acute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_acute.glif deleted file mode 100644 index 6415cd7f..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_caron.glif deleted file mode 100644 index 4b5c0f61..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_cedilla.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_cedilla.glif deleted file mode 100644 index ce9920f8..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_cedilla.glif +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_chwa.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_chwa.glif deleted file mode 100644 index 3e4ceb68..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_chwa.glif +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_circumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_circumflex.glif deleted file mode 100644 index 730e0288..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_commaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_commaaccent.glif deleted file mode 100644 index 2acf52af..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_dotbelow.glif deleted file mode 100644 index fc1b68de..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_caron.glif deleted file mode 100644 index e79dec6c..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_cedilla.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_cedilla.glif deleted file mode 100644 index 23741d8a..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_cedilla.glif +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_circumflexbelow.glif deleted file mode 100644 index e4239a57..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_circumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_commaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_commaaccent.glif deleted file mode 100644 index 13c9077c..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_dotbelow.glif deleted file mode 100644 index e4571cca..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_horn.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_horn.glif deleted file mode 100644 index 1bef606e..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_horn.glif +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_linebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_linebelow.glif deleted file mode 100644 index 8cbacb06..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_acute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_acute.glif deleted file mode 100644 index 6be1e675..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_breve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_breve.glif deleted file mode 100644 index f34bc5d8..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_breve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_caron.glif deleted file mode 100644 index 75e4df37..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_grave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_grave.glif deleted file mode 100644 index 1dff7fe4..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_horn.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_horn.glif deleted file mode 100644 index 6ffe0e11..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_horn.glif +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_horntilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_horntilde.glif deleted file mode 100644 index 1822b4fa..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_horntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_ogonek.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_ogonek.glif deleted file mode 100644 index 6ec6c5df..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_ogonek.glif +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_ring.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_ring.glif deleted file mode 100644 index abeffe45..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_ring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/V_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/V_dotbelow.glif deleted file mode 100644 index 6d5acd0f..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/V_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_acute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_acute.glif deleted file mode 100644 index 7e48e7ea..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_circumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_circumflex.glif deleted file mode 100644 index a224d767..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_dieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_dieresis.glif deleted file mode 100644 index 61844da3..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_dotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_dotaccent.glif deleted file mode 100644 index cb9eee6c..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_dotbelow.glif deleted file mode 100644 index b3430da3..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_grave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_grave.glif deleted file mode 100644 index 32914251..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_hookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_hookabove.glif deleted file mode 100644 index b2cc86d7..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_macron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_macron.glif deleted file mode 100644 index 570e5696..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_tilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_tilde.glif deleted file mode 100644 index 3c698d9a..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Z_acute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Z_acute.glif deleted file mode 100644 index d0e96cf7..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Z_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Z_caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Z_caron.glif deleted file mode 100644 index c7b0c1fd..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Z_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Z_circumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Z_circumflex.glif deleted file mode 100644 index 182d7170..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Z_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Z_dotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Z_dotaccent.glif deleted file mode 100644 index 698119d2..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Z_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Z_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Z_dotbelow.glif deleted file mode 100644 index 8c67b1bb..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Z_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Z_linebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Z_linebelow.glif deleted file mode 100644 index 21898337..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Z_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/aacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/aacute.glif deleted file mode 100644 index d4f9abc3..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/aacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/abreve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/abreve.glif deleted file mode 100644 index 58b96469..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/abreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/abreveacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/abreveacute.glif deleted file mode 100644 index 3653d7a9..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/abreveacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/abrevedotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/abrevedotbelow.glif deleted file mode 100644 index d8d19245..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/abrevedotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/abrevegrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/abrevegrave.glif deleted file mode 100644 index bbc0b631..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/abrevegrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/abrevehookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/abrevehookabove.glif deleted file mode 100644 index 638dd863..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/abrevehookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/abrevetilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/abrevetilde.glif deleted file mode 100644 index 7e3fdc36..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/abrevetilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acaron.glif deleted file mode 100644 index 3d6a4b77..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acircumflex.glif deleted file mode 100644 index 705c33fe..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acircumflexacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acircumflexacute.glif deleted file mode 100644 index db623d0f..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acircumflexdotbelow.glif deleted file mode 100644 index 49074492..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acircumflexgrave.glif deleted file mode 100644 index d49920a3..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acircumflexhookabove.glif deleted file mode 100644 index 8290afaa..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acircumflextilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acircumflextilde.glif deleted file mode 100644 index 62874803..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/adieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/adieresis.glif deleted file mode 100644 index 0283b196..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/adieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/adotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/adotaccent.glif deleted file mode 100644 index 035f9fff..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/adotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/adotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/adotbelow.glif deleted file mode 100644 index 3ef18183..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/adotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ae.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ae.glif deleted file mode 100644 index 72db26e9..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ae.glif +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/agrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/agrave.glif deleted file mode 100644 index e9a9e49e..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/agrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ahookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ahookabove.glif deleted file mode 100644 index 0b520efb..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ahookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/amacron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/amacron.glif deleted file mode 100644 index 192316b2..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/amacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/aogonek.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/aogonek.glif deleted file mode 100644 index cccf07d2..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/aogonek.glif +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/aring.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/aring.glif deleted file mode 100644 index 99a0ebca..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/aring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/atilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/atilde.glif deleted file mode 100644 index 579b462e..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/atilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/blinebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/blinebelow.glif deleted file mode 100644 index e3d2bcff..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/blinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/breveacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/breveacute.glif deleted file mode 100644 index 7218ee1d..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/breveacute.glif +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevegrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevegrave.glif deleted file mode 100644 index 0fb3fdee..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevegrave.glif +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevehook.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevehook.glif deleted file mode 100644 index d407860a..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevehook.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevetilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevetilde.glif deleted file mode 100644 index 2d612d64..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevetilde.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/cacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/cacute.glif deleted file mode 100644 index 232d0885..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/cacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ccaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ccaron.glif deleted file mode 100644 index 911c38c3..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ccaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ccedilla.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ccedilla.glif deleted file mode 100644 index 8ad2f8c5..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ccedilla.glif +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ccircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ccircumflex.glif deleted file mode 100644 index ca34592a..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ccircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/cdotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/cdotaccent.glif deleted file mode 100644 index aa80327b..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/cdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflexhook.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflexhook.glif deleted file mode 100644 index 7bc440bf..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflexhook.glif +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflextilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflextilde.glif deleted file mode 100644 index c301a0e5..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflextilde.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/commaturnedabovecmb.glif deleted file mode 100644 index eea50805..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/commaturnedabovecmb.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/contents.plist b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/contents.plist deleted file mode 100644 index 9b3fa25c..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/contents.plist +++ /dev/null @@ -1,1374 +0,0 @@ - - - - - .notdef - _notdef.glif - A - A_.glif - AE - A_E_.glif - Aacute - A_acute.glif - Abreve - A_breve.glif - Abreveacute - A_breveacute.glif - Abrevedotbelow - A_brevedotbelow.glif - Abrevegrave - A_brevegrave.glif - Abrevehookabove - A_brevehookabove.glif - Abrevetilde - A_brevetilde.glif - Acaron - A_caron.glif - Acircumflex - A_circumflex.glif - Acircumflexacute - A_circumflexacute.glif - Acircumflexdotbelow - A_circumflexdotbelow.glif - Acircumflexgrave - A_circumflexgrave.glif - Acircumflexhookabove - A_circumflexhookabove.glif - Acircumflextilde - A_circumflextilde.glif - Adieresis - A_dieresis.glif - Adotaccent - A_dotaccent.glif - Adotbelow - A_dotbelow.glif - Agrave - A_grave.glif - Ahookabove - A_hookabove.glif - Amacron - A_macron.glif - Aogonek - A_ogonek.glif - Aring - A_ring.glif - Atilde - A_tilde.glif - B - B_.glif - Blinebelow - B_linebelow.glif - C - C_.glif - Cacute - C_acute.glif - Ccaron - C_caron.glif - Ccedilla - C_cedilla.glif - Ccircumflex - C_circumflex.glif - Cdotaccent - C_dotaccent.glif - D - D_.glif - Dcaron - D_caron.glif - Dcircumflexbelow - D_circumflexbelow.glif - Dcroat - D_croat.glif - Ddotbelow - D_dotbelow.glif - Dlinebelow - D_linebelow.glif - E - E_.glif - Eacute - E_acute.glif - Ebreve - E_breve.glif - Ecaron - E_caron.glif - Ecircumflex - E_circumflex.glif - Ecircumflexacute - E_circumflexacute.glif - Ecircumflexdotbelow - E_circumflexdotbelow.glif - Ecircumflexgrave - E_circumflexgrave.glif - Ecircumflexhookabove - E_circumflexhookabove.glif - Ecircumflextilde - E_circumflextilde.glif - Edieresis - E_dieresis.glif - Edotaccent - E_dotaccent.glif - Edotbelow - E_dotbelow.glif - Egrave - E_grave.glif - Ehookabove - E_hookabove.glif - Emacron - E_macron.glif - Eng - E_ng.glif - Eogonek - E_ogonek.glif - Eth - E_th.glif - Etilde - E_tilde.glif - Euro - E_uro.glif - F - F_.glif - G - G_.glif - Gbreve - G_breve.glif - Gcaron - G_caron.glif - Gcircumflex - G_circumflex.glif - Gcommaaccent - G_commaaccent.glif - Gdotaccent - G_dotaccent.glif - Gmacron - G_macron.glif - H - H_.glif - Hbar - H_bar.glif - Hbrevebelow - H_brevebelow.glif - Hcedilla - H_cedilla.glif - Hcircumflex - H_circumflex.glif - Hdotbelow - H_dotbelow.glif - I - I_.glif - Iacute - I_acute.glif - Ibreve - I_breve.glif - Icaron - I_caron.glif - Icircumflex - I_circumflex.glif - Idieresis - I_dieresis.glif - Idotaccent - I_dotaccent.glif - Idotbelow - I_dotbelow.glif - Igrave - I_grave.glif - Ihookabove - I_hookabove.glif - Imacron - I_macron.glif - Iogonek - I_ogonek.glif - Itilde - I_tilde.glif - J - J_.glif - Jcircumflex - J_circumflex.glif - K - K_.glif - Kcommaaccent - K_commaaccent.glif - Kdotbelow - K_dotbelow.glif - Klinebelow - K_linebelow.glif - L - L_.glif - L.dot - L_.dot.glif - Lacute - L_acute.glif - Lcaron - L_caron.glif - Lcircumflexbelow - L_circumflexbelow.glif - Lcommaaccent - L_commaaccent.glif - Ldotbelow - L_dotbelow.glif - Llinebelow - L_linebelow.glif - Lmacrondotbelow - L_macrondotbelow.glif - Lslash - L_slash.glif - M - M_.glif - Macute - M_acute.glif - Mdotaccent - M_dotaccent.glif - Mdotbelow - M_dotbelow.glif - N - N_.glif - Nacute - N_acute.glif - Ncaron - N_caron.glif - Ncircumflexbelow - N_circumflexbelow.glif - Ncommaaccent - N_commaaccent.glif - Ndotaccent - N_dotaccent.glif - Ndotbelow - N_dotbelow.glif - Ngrave - N_grave.glif - Nlinebelow - N_linebelow.glif - Ntilde - N_tilde.glif - O - O_.glif - OE - O_E_.glif - Oacute - O_acute.glif - Obreve - O_breve.glif - Ocaron - O_caron.glif - Ocircumflex - O_circumflex.glif - Ocircumflexacute - O_circumflexacute.glif - Ocircumflexdotbelow - O_circumflexdotbelow.glif - Ocircumflexgrave - O_circumflexgrave.glif - Ocircumflexhookabove - O_circumflexhookabove.glif - Ocircumflextilde - O_circumflextilde.glif - Odieresis - O_dieresis.glif - Odotaccent - O_dotaccent.glif - Odotbelow - O_dotbelow.glif - Ograve - O_grave.glif - Ohookabove - O_hookabove.glif - Ohorn - O_horn.glif - Ohornacute - O_hornacute.glif - Ohorndotbelow - O_horndotbelow.glif - Ohorngrave - O_horngrave.glif - Ohornhookabove - O_hornhookabove.glif - Ohorntilde - O_horntilde.glif - Ohungarumlaut - O_hungarumlaut.glif - Omacron - O_macron.glif - Oogonek - O_ogonek.glif - Oslash - O_slash.glif - Otilde - O_tilde.glif - P - P_.glif - Q - Q_.glif - R - R_.glif - Racute - R_acute.glif - Rcaron - R_caron.glif - Rcommaaccent - R_commaaccent.glif - Rdotaccent - R_dotaccent.glif - Rdotbelow - R_dotbelow.glif - Rlinebelow - R_linebelow.glif - Rmacrondotbelow - R_macrondotbelow.glif - S - S_.glif - Sacute - S_acute.glif - Scaron - S_caron.glif - Scedilla - S_cedilla.glif - Schwa - S_chwa.glif - Scircumflex - S_circumflex.glif - Scommaaccent - S_commaaccent.glif - Sdotbelow - S_dotbelow.glif - T - T_.glif - Tbar - T_bar.glif - Tcaron - T_caron.glif - Tcedilla - T_cedilla.glif - Tcircumflexbelow - T_circumflexbelow.glif - Tcommaaccent - T_commaaccent.glif - Tdotbelow - T_dotbelow.glif - Thorn - T_horn.glif - Tlinebelow - T_linebelow.glif - U - U_.glif - Uacute - U_acute.glif - Ubreve - U_breve.glif - Ucaron - U_caron.glif - Ucircumflex - U_circumflex.glif - Udieresis - U_dieresis.glif - Udieresisacute - U_dieresisacute.glif - Udieresiscaron - U_dieresiscaron.glif - Udieresisgrave - U_dieresisgrave.glif - Udieresismacron - U_dieresismacron.glif - Udotbelow - U_dotbelow.glif - Ugrave - U_grave.glif - Uhookabove - U_hookabove.glif - Uhorn - U_horn.glif - Uhornacute - U_hornacute.glif - Uhorndotbelow - U_horndotbelow.glif - Uhorngrave - U_horngrave.glif - Uhornhookabove - U_hornhookabove.glif - Uhorntilde - U_horntilde.glif - Uhungarumlaut - U_hungarumlaut.glif - Umacron - U_macron.glif - Uogonek - U_ogonek.glif - Uring - U_ring.glif - Utilde - U_tilde.glif - V - V_.glif - Vdotbelow - V_dotbelow.glif - W - W_.glif - Wacute - W_acute.glif - Wcircumflex - W_circumflex.glif - Wdieresis - W_dieresis.glif - Wgrave - W_grave.glif - X - X_.glif - Xdieresis - X_dieresis.glif - Y - Y_.glif - Yacute - Y_acute.glif - Ycircumflex - Y_circumflex.glif - Ydieresis - Y_dieresis.glif - Ydotaccent - Y_dotaccent.glif - Ydotbelow - Y_dotbelow.glif - Ygrave - Y_grave.glif - Yhookabove - Y_hookabove.glif - Ymacron - Y_macron.glif - Ytilde - Y_tilde.glif - Z - Z_.glif - Zacute - Z_acute.glif - Zcaron - Z_caron.glif - Zcircumflex - Z_circumflex.glif - Zdotaccent - Z_dotaccent.glif - Zdotbelow - Z_dotbelow.glif - Zlinebelow - Z_linebelow.glif - a - a.glif - aacute - aacute.glif - abreve - abreve.glif - abreveacute - abreveacute.glif - abrevedotbelow - abrevedotbelow.glif - abrevegrave - abrevegrave.glif - abrevehookabove - abrevehookabove.glif - abrevetilde - abrevetilde.glif - acaron - acaron.glif - acircumflex - acircumflex.glif - acircumflexacute - acircumflexacute.glif - acircumflexdotbelow - acircumflexdotbelow.glif - acircumflexgrave - acircumflexgrave.glif - acircumflexhookabove - acircumflexhookabove.glif - acircumflextilde - acircumflextilde.glif - acute - acute.glif - acutecmb - acutecmb.glif - acutecmb.cap - acutecmb.cap.glif - adieresis - adieresis.glif - adotaccent - adotaccent.glif - adotbelow - adotbelow.glif - ae - ae.glif - agrave - agrave.glif - ahookabove - ahookabove.glif - amacron - amacron.glif - ampersand - ampersand.glif - aogonek - aogonek.glif - apostrophemod - apostrophemod.glif - approxequal - approxequal.glif - aring - aring.glif - asciicircum - asciicircum.glif - asciitilde - asciitilde.glif - asterisk - asterisk.glif - at - at.glif - atilde - atilde.glif - b - b.glif - backslash - backslash.glif - bahtthai - bahtthai.glif - bar - bar.glif - blinebelow - blinebelow.glif - braceleft - braceleft.glif - braceright - braceright.glif - bracketleft - bracketleft.glif - bracketright - bracketright.glif - breve - breve.glif - breveacute - breveacute.glif - breveacute.cap - breveacute.cap.glif - brevebelowcmb - brevebelowcmb.glif - brevecmb - brevecmb.glif - brevecmb.cap - brevecmb.cap.glif - brevegrave - brevegrave.glif - brevegrave.cap - brevegrave.cap.glif - brevehook - brevehook.glif - brevehook.cap - brevehook.cap.glif - brevetilde - brevetilde.glif - brevetilde.cap - brevetilde.cap.glif - bullet - bullet.glif - c - c.glif - cacute - cacute.glif - caron - caron.glif - caroncmb - caroncmb.glif - caroncmb.cap - caroncmb.cap.glif - ccaron - ccaron.glif - ccedilla - ccedilla.glif - ccircumflex - ccircumflex.glif - cdotaccent - cdotaccent.glif - cedilla - cedilla.glif - cedillacmb - cedillacmb.glif - cent - cent.glif - circumflex - circumflex.glif - circumflexacute - circumflexacute.glif - circumflexacute.cap - circumflexacute.cap.glif - circumflexbelowcmb - circumflexbelowcmb.glif - circumflexcmb - circumflexcmb.glif - circumflexcmb.cap - circumflexcmb.cap.glif - circumflexgrave - circumflexgrave.glif - circumflexgrave.cap - circumflexgrave.cap.glif - circumflexhook - circumflexhook.glif - circumflexhook.cap - circumflexhook.cap.glif - circumflextilde - circumflextilde.glif - circumflextilde.cap - circumflextilde.cap.glif - colon - colon.glif - colon.fig - colon.fig.glif - comma - comma.glif - commaaboverightcmb - commaaboverightcmb.glif - commaturnedabovecmb - commaturnedabovecmb.glif - commaturnedmod - commaturnedmod.glif - copyright - copyright.glif - d - d.glif - dagger - dagger.glif - daggerdbl - daggerdbl.glif - dblprimemod - dblprimemod.glif - dcaron - dcaron.glif - dcircumflexbelow - dcircumflexbelow.glif - dcroat - dcroat.glif - ddotbelow - ddotbelow.glif - degree - degree.glif - dieresis - dieresis.glif - dieresisacute - dieresisacute.glif - dieresisacute.cap - dieresisacute.cap.glif - dieresisbelowcmb - dieresisbelowcmb.glif - dieresiscaron - dieresiscaron.glif - dieresiscaron.cap - dieresiscaron.cap.glif - dieresiscmb - dieresiscmb.glif - dieresiscmb.cap - dieresiscmb.cap.glif - dieresisgrave - dieresisgrave.glif - dieresisgrave.cap - dieresisgrave.cap.glif - dieresismacron - dieresismacron.glif - dieresismacron.cap - dieresismacron.cap.glif - divide - divide.glif - dlinebelow - dlinebelow.glif - dollar - dollar.glif - dong - dong.glif - dotaccent - dotaccent.glif - dotaccentcmb - dotaccentcmb.glif - dotaccentcmb.cap - dotaccentcmb.cap.glif - dotbelowcmb - dotbelowcmb.glif - dotlessi - dotlessi.glif - dotlessj - dotlessj.glif - e - e.glif - eacute - eacute.glif - ebreve - ebreve.glif - ecaron - ecaron.glif - ecircumflex - ecircumflex.glif - ecircumflexacute - ecircumflexacute.glif - ecircumflexdotbelow - ecircumflexdotbelow.glif - ecircumflexgrave - ecircumflexgrave.glif - ecircumflexhookabove - ecircumflexhookabove.glif - ecircumflextilde - ecircumflextilde.glif - edieresis - edieresis.glif - edotaccent - edotaccent.glif - edotbelow - edotbelow.glif - egrave - egrave.glif - ehookabove - ehookabove.glif - eight - eight.glif - eight.den - eight.den.glif - eight.inf - eight.inf.glif - eight.num - eight.num.glif - eight.sup - eight.sup.glif - ellipsis - ellipsis.glif - emacron - emacron.glif - emdash - emdash.glif - endash - endash.glif - eng - eng.glif - eogonek - eogonek.glif - equal - equal.glif - eth - eth.glif - etilde - etilde.glif - exclam - exclam.glif - exclamdown - exclamdown.glif - f - f.glif - five - five.glif - five.den - five.den.glif - five.inf - five.inf.glif - five.num - five.num.glif - five.sup - five.sup.glif - fiveeighths - fiveeighths.glif - fivesixths - fivesixths.glif - four - four.glif - four.den - four.den.glif - four.inf - four.inf.glif - four.num - four.num.glif - four.sup - four.sup.glif - fourfifths - fourfifths.glif - fracbar - fracbar.glif - fraction - fraction.glif - g - g.glif - gbreve - gbreve.glif - gcaron - gcaron.glif - gcircumflex - gcircumflex.glif - gcommaaccent - gcommaaccent.glif - gdotaccent - gdotaccent.glif - germandbls - germandbls.glif - gmacron - gmacron.glif - grave - grave.glif - gravecmb - gravecmb.glif - gravecmb.cap - gravecmb.cap.glif - greater - greater.glif - greaterequal - greaterequal.glif - guillemetleft - guillemetleft.glif - guillemetright - guillemetright.glif - guilsinglleft - guilsinglleft.glif - guilsinglright - guilsinglright.glif - h - h.glif - hbar - hbar.glif - hbrevebelow - hbrevebelow.glif - hcedilla - hcedilla.glif - hcircumflex - hcircumflex.glif - hdotbelow - hdotbelow.glif - hlinebelow - hlinebelow.glif - hookcmb - hookcmb.glif - hookcmb.cap - hookcmb.cap.glif - horizontalbar - horizontalbar.glif - hungarumlaut - hungarumlaut.glif - hungarumlautcmb - hungarumlautcmb.glif - hungarumlautcmb.cap - hungarumlautcmb.cap.glif - hyphen - hyphen.glif - i - i.glif - iacute - iacute.glif - ibreve - ibreve.glif - icaron - icaron.glif - icircumflex - icircumflex.glif - idieresis - idieresis.glif - idotaccent - idotaccent.glif - idotbelow - idotbelow.glif - igrave - igrave.glif - ihookabove - ihookabove.glif - imacron - imacron.glif - iogonek - iogonek.glif - itilde - itilde.glif - j - j.glif - jcaron - jcaron.glif - jcircumflex - jcircumflex.glif - k - k.glif - kcommaaccent - kcommaaccent.glif - kdotbelow - kdotbelow.glif - klinebelow - klinebelow.glif - l - l.glif - l.dot - l.dot.glif - lacute - lacute.glif - lcaron - lcaron.glif - lcircumflexbelow - lcircumflexbelow.glif - lcommaaccent - lcommaaccent.glif - ldotbelow - ldotbelow.glif - less - less.glif - lessequal - lessequal.glif - llinebelow - llinebelow.glif - lmacrondotbelow - lmacrondotbelow.glif - lslash - lslash.glif - m - m.glif - macron - macron.glif - macronbelowcmb - macronbelowcmb.glif - macroncmb - macroncmb.glif - macroncmb.cap - macroncmb.cap.glif - macronlowmod - macronlowmod.glif - macute - macute.glif - mdotaccent - mdotaccent.glif - mdotbelow - mdotbelow.glif - middotcat - middotcat.glif - middotcat.cap - middotcat.cap.glif - minus - minus.glif - mu - mu.glif - multiply - multiply.glif - n - n.glif - nacute - nacute.glif - naira - naira.glif - ncaron - ncaron.glif - ncircumflexbelow - ncircumflexbelow.glif - ncommaaccent - ncommaaccent.glif - ndotaccent - ndotaccent.glif - ndotbelow - ndotbelow.glif - ngrave - ngrave.glif - nine - nine.glif - nine.den - nine.den.glif - nine.inf - nine.inf.glif - nine.num - nine.num.glif - nine.sup - nine.sup.glif - nlinebelow - nlinebelow.glif - notequal - notequal.glif - ntilde - ntilde.glif - numbersign - numbersign.glif - o - o.glif - oacute - oacute.glif - obreve - obreve.glif - ocaron - ocaron.glif - ocircumflex - ocircumflex.glif - ocircumflexacute - ocircumflexacute.glif - ocircumflexdotbelow - ocircumflexdotbelow.glif - ocircumflexgrave - ocircumflexgrave.glif - ocircumflexhookabove - ocircumflexhookabove.glif - ocircumflextilde - ocircumflextilde.glif - odieresis - odieresis.glif - odotaccent - odotaccent.glif - odotbelow - odotbelow.glif - oe - oe.glif - ogonek - ogonek.glif - ogonekcmb - ogonekcmb.glif - ograve - ograve.glif - ohookabove - ohookabove.glif - ohorn - ohorn.glif - ohornacute - ohornacute.glif - ohorndotbelow - ohorndotbelow.glif - ohorngrave - ohorngrave.glif - ohornhookabove - ohornhookabove.glif - ohorntilde - ohorntilde.glif - ohungarumlaut - ohungarumlaut.glif - omacron - omacron.glif - one - one.glif - one.den - one.den.glif - one.inf - one.inf.glif - one.num - one.num.glif - one.sup - one.sup.glif - oneeighth - oneeighth.glif - onefifth - onefifth.glif - onehalf - onehalf.glif - onequarter - onequarter.glif - onesixth - onesixth.glif - onethird - onethird.glif - oogonek - oogonek.glif - ordfeminine - ordfeminine.glif - ordmasculine - ordmasculine.glif - oslash - oslash.glif - otilde - otilde.glif - p - p.glif - paragraph - paragraph.glif - parenleft - parenleft.glif - parenright - parenright.glif - percent - percent.glif - period - period.glif - periodcentered - periodcentered.glif - peso - peso.glif - plus - plus.glif - plusminus - plusminus.glif - primemod - primemod.glif - published - published.glif - q - q.glif - question - question.glif - questiondown - questiondown.glif - quotedbl - quotedbl.glif - quotedblbase - quotedblbase.glif - quotedblleft - quotedblleft.glif - quotedblright - quotedblright.glif - quoteleft - quoteleft.glif - quoteright - quoteright.glif - quotesinglbase - quotesinglbase.glif - quotesingle - quotesingle.glif - r - r.glif - racute - racute.glif - rcaron - rcaron.glif - rcommaaccent - rcommaaccent.glif - rdotaccent - rdotaccent.glif - rdotbelow - rdotbelow.glif - registered - registered.glif - ring - ring.glif - ringcmb - ringcmb.glif - ringcmb.cap - ringcmb.cap.glif - ringhalfleft - ringhalfleft.glif - ringhalfright - ringhalfright.glif - rlinebelow - rlinebelow.glif - rmacrondotbelow - rmacrondotbelow.glif - s - s.glif - sacute - sacute.glif - scaron - scaron.glif - scedilla - scedilla.glif - schwa - schwa.glif - scircumflex - scircumflex.glif - scommaaccent - scommaaccent.glif - sdotbelow - sdotbelow.glif - section - section.glif - semicolon - semicolon.glif - servicemark - servicemark.glif - seven - seven.glif - seven.den - seven.den.glif - seven.inf - seven.inf.glif - seven.num - seven.num.glif - seven.sup - seven.sup.glif - seveneighths - seveneighths.glif - six - six.glif - six.den - six.den.glif - six.inf - six.inf.glif - six.num - six.num.glif - six.sup - six.sup.glif - slash - slash.glif - space - space.glif - sterling - sterling.glif - t - t.glif - tbar - tbar.glif - tcaron - tcaron.glif - tcedilla - tcedilla.glif - tcircumflexbelow - tcircumflexbelow.glif - tcommaaccent - tcommaaccent.glif - tdotbelow - tdotbelow.glif - thorn - thorn.glif - three - three.glif - three.den - three.den.glif - three.inf - three.inf.glif - three.num - three.num.glif - three.sup - three.sup.glif - threeeighths - threeeighths.glif - threefifths - threefifths.glif - threequarters - threequarters.glif - tilde - tilde.glif - tildecmb - tildecmb.glif - tildecmb.cap - tildecmb.cap.glif - tlinebelow - tlinebelow.glif - trademark - trademark.glif - two - two.glif - two.den - two.den.glif - two.inf - two.inf.glif - two.num - two.num.glif - two.sup - two.sup.glif - twodotleader - twodotleader.glif - twofifths - twofifths.glif - twothirds - twothirds.glif - u - u.glif - uacute - uacute.glif - ubreve - ubreve.glif - ucaron - ucaron.glif - ucircumflex - ucircumflex.glif - udieresis - udieresis.glif - udieresisacute - udieresisacute.glif - udieresiscaron - udieresiscaron.glif - udieresisgrave - udieresisgrave.glif - udieresismacron - udieresismacron.glif - udotbelow - udotbelow.glif - ugrave - ugrave.glif - uhookabove - uhookabove.glif - uhorn - uhorn.glif - uhornacute - uhornacute.glif - uhorndotbelow - uhorndotbelow.glif - uhorngrave - uhorngrave.glif - uhornhookabove - uhornhookabove.glif - uhorntilde - uhorntilde.glif - uhungarumlaut - uhungarumlaut.glif - umacron - umacron.glif - underscore - underscore.glif - uni00A0 - uni00A_0.glif - uni0326 - uni0326.glif - uni1E9E - uni1E_9E_.glif - uni2011 - uni2011.glif - uni20B9 - uni20B_9.glif - uni20BA - uni20B_A_.glif - uni20BD - uni20B_D_.glif - uniA788 - uniA_788.glif - uogonek - uogonek.glif - uring - uring.glif - utilde - utilde.glif - v - v.glif - vdotbelow - vdotbelow.glif - verticallinelowmod - verticallinelowmod.glif - verticallinemod - verticallinemod.glif - w - w.glif - wacute - wacute.glif - wcircumflex - wcircumflex.glif - wdieresis - wdieresis.glif - wgrave - wgrave.glif - won - won.glif - x - x.glif - xdieresis - xdieresis.glif - y - y.glif - yacute - yacute.glif - ycircumflex - ycircumflex.glif - ydieresis - ydieresis.glif - ydotaccent - ydotaccent.glif - ydotbelow - ydotbelow.glif - yen - yen.glif - ygrave - ygrave.glif - yhookabove - yhookabove.glif - ymacron - ymacron.glif - ytilde - ytilde.glif - z - z.glif - zacute - zacute.glif - zcaron - zcaron.glif - zcircumflex - zcircumflex.glif - zdotaccent - zdotaccent.glif - zdotbelow - zdotbelow.glif - zero - zero.glif - zero.den - zero.den.glif - zero.inf - zero.inf.glif - zero.num - zero.num.glif - zero.sup - zero.sup.glif - zlinebelow - zlinebelow.glif - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dcaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dcaron.glif deleted file mode 100644 index 3005962d..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dcircumflexbelow.glif deleted file mode 100644 index d480b92c..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dcroat.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dcroat.glif deleted file mode 100644 index fbfa4b61..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dcroat.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ddotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ddotbelow.glif deleted file mode 100644 index 783e2aec..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ddotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresisacute.cap.glif deleted file mode 100644 index 5e0820e9..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresisacute.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresisacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresisacute.glif deleted file mode 100644 index f752614f..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresisacute.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresisbelowcmb.glif deleted file mode 100644 index 1209424d..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresisbelowcmb.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresiscaron.cap.glif deleted file mode 100644 index 0c56125a..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresiscaron.cap.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresiscaron.glif deleted file mode 100644 index 37f6659e..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresiscaron.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresisgrave.cap.glif deleted file mode 100644 index de269c93..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresisgrave.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresisgrave.glif deleted file mode 100644 index 4f88b520..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresisgrave.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresismacron.cap.glif deleted file mode 100644 index cb103f73..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresismacron.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresismacron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresismacron.glif deleted file mode 100644 index f803839a..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresismacron.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dlinebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dlinebelow.glif deleted file mode 100644 index ea067292..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dotlessj.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dotlessj.glif deleted file mode 100644 index 7f12d152..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dotlessj.glif +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eacute.glif deleted file mode 100644 index 40b65bd8..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ebreve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ebreve.glif deleted file mode 100644 index 61efc8a9..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ebreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecaron.glif deleted file mode 100644 index d90792c5..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecircumflex.glif deleted file mode 100644 index 4014c995..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecircumflexacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecircumflexacute.glif deleted file mode 100644 index 17e50457..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecircumflexdotbelow.glif deleted file mode 100644 index cc80ad7c..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecircumflexgrave.glif deleted file mode 100644 index 443e2357..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecircumflexhookabove.glif deleted file mode 100644 index ec9d4f87..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecircumflextilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecircumflextilde.glif deleted file mode 100644 index 81b1f192..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ecircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/edieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/edieresis.glif deleted file mode 100644 index 8796b5a9..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/edieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/edotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/edotaccent.glif deleted file mode 100644 index 58d527e1..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/edotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/edotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/edotbelow.glif deleted file mode 100644 index 3ffe1962..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/edotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/egrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/egrave.glif deleted file mode 100644 index 5e24108b..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/egrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ehookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ehookabove.glif deleted file mode 100644 index 3f9d22b4..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ehookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/emacron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/emacron.glif deleted file mode 100644 index d44b0a78..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/emacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eng.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eng.glif deleted file mode 100644 index 8feeb752..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eng.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eogonek.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eogonek.glif deleted file mode 100644 index b283cd69..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eogonek.glif +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eth.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eth.glif deleted file mode 100644 index 4c85437e..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eth.glif +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/etilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/etilde.glif deleted file mode 100644 index 296cb825..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/etilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gbreve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gbreve.glif deleted file mode 100644 index 0d6d2251..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gbreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gcaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gcaron.glif deleted file mode 100644 index b8de914c..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gcircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gcircumflex.glif deleted file mode 100644 index cd7e3054..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gcommaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gcommaaccent.glif deleted file mode 100644 index 017e6a9b..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gdotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gdotaccent.glif deleted file mode 100644 index 869f1d8f..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/germandbls.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/germandbls.glif deleted file mode 100644 index b631cb80..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/germandbls.glif +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gmacron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gmacron.glif deleted file mode 100644 index 8fd3ac8d..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gmacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hbar.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hbar.glif deleted file mode 100644 index d69b5bec..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hbar.glif +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hbrevebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hbrevebelow.glif deleted file mode 100644 index 6c9f41fd..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hbrevebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hcedilla.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hcedilla.glif deleted file mode 100644 index 5f1ef2b2..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hcedilla.glif +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hcircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hcircumflex.glif deleted file mode 100644 index 875c538d..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hdotbelow.glif deleted file mode 100644 index af36dff3..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hlinebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hlinebelow.glif deleted file mode 100644 index ecef774d..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hookcmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hookcmb.glif deleted file mode 100644 index 6622a28e..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hookcmb.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/horizontalbar.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/horizontalbar.glif deleted file mode 100644 index 19ce9f0d..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/horizontalbar.glif +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/iacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/iacute.glif deleted file mode 100644 index e81ffb1d..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/iacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ibreve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ibreve.glif deleted file mode 100644 index 1c9aeaee..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ibreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/icaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/icaron.glif deleted file mode 100644 index fda9af7c..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/icaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/icircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/icircumflex.glif deleted file mode 100644 index 3522d081..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/icircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/idieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/idieresis.glif deleted file mode 100644 index 6624f111..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/idieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/idotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/idotaccent.glif deleted file mode 100644 index c7225f52..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/idotaccent.glif +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/idotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/idotbelow.glif deleted file mode 100644 index fa8546ae..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/idotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/igrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/igrave.glif deleted file mode 100644 index b134ad7d..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/igrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ihookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ihookabove.glif deleted file mode 100644 index 5977b8cc..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ihookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/imacron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/imacron.glif deleted file mode 100644 index 42954f2a..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/imacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/iogonek.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/iogonek.glif deleted file mode 100644 index 740d5d23..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/iogonek.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/itilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/itilde.glif deleted file mode 100644 index ae84f46c..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/itilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/jcaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/jcaron.glif deleted file mode 100644 index 4ce8c4d2..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/jcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/jcircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/jcircumflex.glif deleted file mode 100644 index 2a03b027..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/jcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/kcommaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/kcommaaccent.glif deleted file mode 100644 index da05a6a8..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/kcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/kdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/kdotbelow.glif deleted file mode 100644 index 321cc79d..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/kdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/klinebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/klinebelow.glif deleted file mode 100644 index 0b617ae2..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/klinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/l.dot.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/l.dot.glif deleted file mode 100644 index 2f8c4b75..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/l.dot.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/lacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/lacute.glif deleted file mode 100644 index d8c5ceba..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/lacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/lcaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/lcaron.glif deleted file mode 100644 index 38ec3d87..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/lcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/lcircumflexbelow.glif deleted file mode 100644 index 202f0f8a..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/lcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/lcommaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/lcommaaccent.glif deleted file mode 100644 index 72cdb48e..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/lcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ldotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ldotbelow.glif deleted file mode 100644 index b68ad8b4..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ldotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/llinebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/llinebelow.glif deleted file mode 100644 index 586b0c3a..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/llinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/lmacrondotbelow.glif deleted file mode 100644 index 599a4dbf..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/lmacrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/lslash.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/lslash.glif deleted file mode 100644 index 22c205cb..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/lslash.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/macute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/macute.glif deleted file mode 100644 index f56df465..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/macute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/mdotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/mdotaccent.glif deleted file mode 100644 index dd5d9698..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/mdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/mdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/mdotbelow.glif deleted file mode 100644 index cb17b3c8..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/mdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/middotcat.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/middotcat.glif deleted file mode 100644 index 689f0809..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/middotcat.glif +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/nacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/nacute.glif deleted file mode 100644 index ba27e168..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/nacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ncaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ncaron.glif deleted file mode 100644 index 154c2712..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ncaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ncircumflexbelow.glif deleted file mode 100644 index 554d5c5c..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ncircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ncommaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ncommaaccent.glif deleted file mode 100644 index 46631520..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ncommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ndotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ndotaccent.glif deleted file mode 100644 index 91c47c76..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ndotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ndotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ndotbelow.glif deleted file mode 100644 index c5593518..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ngrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ngrave.glif deleted file mode 100644 index 5a212e2f..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/nlinebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/nlinebelow.glif deleted file mode 100644 index 6793c665..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/nlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ntilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ntilde.glif deleted file mode 100644 index a4377105..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/oacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/oacute.glif deleted file mode 100644 index 883e1266..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/oacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/obreve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/obreve.glif deleted file mode 100644 index 7f037d09..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/obreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocaron.glif deleted file mode 100644 index 322e8ec8..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocircumflex.glif deleted file mode 100644 index 64970a83..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocircumflexacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocircumflexacute.glif deleted file mode 100644 index 0058cbd9..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocircumflexdotbelow.glif deleted file mode 100644 index b0f6fe64..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocircumflexgrave.glif deleted file mode 100644 index b17b0d6a..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocircumflexhookabove.glif deleted file mode 100644 index a6fa0a2d..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocircumflextilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocircumflextilde.glif deleted file mode 100644 index 96080b15..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ocircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/odieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/odieresis.glif deleted file mode 100644 index ddd385bc..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/odieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/odotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/odotaccent.glif deleted file mode 100644 index 1aa5d01b..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/odotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/oe.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/oe.glif deleted file mode 100644 index 3c01596e..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/oe.glif +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ograve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ograve.glif deleted file mode 100644 index c562dfae..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ograve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohookabove.glif deleted file mode 100644 index 5f95d256..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohorn.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohorn.glif deleted file mode 100644 index 9c33e17e..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohorn.glif +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohornacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohornacute.glif deleted file mode 100644 index 02ae3e48..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohorngrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohorngrave.glif deleted file mode 100644 index 1841e2a0..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohorngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohornhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohornhookabove.glif deleted file mode 100644 index 6377e202..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohorntilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohorntilde.glif deleted file mode 100644 index 88257832..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohorntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohungarumlaut.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohungarumlaut.glif deleted file mode 100644 index fcaff1f5..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/omacron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/omacron.glif deleted file mode 100644 index 91d652b8..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/omacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/oogonek.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/oogonek.glif deleted file mode 100644 index 2048772f..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/oogonek.glif +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/oslash.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/oslash.glif deleted file mode 100644 index 885fd62d..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/oslash.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/otilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/otilde.glif deleted file mode 100644 index 046cfb22..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/otilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/racute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/racute.glif deleted file mode 100644 index 2e7ec5cf..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/racute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/rcaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/rcaron.glif deleted file mode 100644 index e2f4db9a..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/rcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/rcommaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/rcommaaccent.glif deleted file mode 100644 index 4a8c08ab..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/rcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/rdotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/rdotaccent.glif deleted file mode 100644 index 5c7131f7..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/rdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/rdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/rdotbelow.glif deleted file mode 100644 index 4df68053..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/rdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ringcmb.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ringcmb.cap.glif deleted file mode 100644 index 3290eeb6..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ringcmb.cap.glif +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/rlinebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/rlinebelow.glif deleted file mode 100644 index c3303509..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/rlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/rmacrondotbelow.glif deleted file mode 100644 index c08f8c03..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/rmacrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/sacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/sacute.glif deleted file mode 100644 index 192d15b7..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/sacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/scaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/scaron.glif deleted file mode 100644 index b18a3017..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/scaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/scedilla.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/scedilla.glif deleted file mode 100644 index e24b53f4..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/scedilla.glif +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/schwa.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/schwa.glif deleted file mode 100644 index f11f4046..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/schwa.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/scircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/scircumflex.glif deleted file mode 100644 index a950982b..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/scircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/scommaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/scommaaccent.glif deleted file mode 100644 index 2beff1be..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/scommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/sdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/sdotbelow.glif deleted file mode 100644 index ee866181..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/sdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tbar.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tbar.glif deleted file mode 100644 index 451d4cd4..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tbar.glif +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tcaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tcaron.glif deleted file mode 100644 index 38a2648e..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tcedilla.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tcedilla.glif deleted file mode 100644 index c9267548..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tcedilla.glif +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tcircumflexbelow.glif deleted file mode 100644 index 6760ada9..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tcommaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tcommaaccent.glif deleted file mode 100644 index c69fb011..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tdotbelow.glif deleted file mode 100644 index a712e0f9..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/thorn.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/thorn.glif deleted file mode 100644 index 2f261e58..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/thorn.glif +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tlinebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tlinebelow.glif deleted file mode 100644 index 9d79b99a..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uacute.glif deleted file mode 100644 index 4793e6eb..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ubreve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ubreve.glif deleted file mode 100644 index afb7f06d..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ubreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ucaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ucaron.glif deleted file mode 100644 index cfe34728..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ucaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ucircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ucircumflex.glif deleted file mode 100644 index 4deaf160..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ucircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/udieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/udieresis.glif deleted file mode 100644 index c00e65ea..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/udieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/udieresisacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/udieresisacute.glif deleted file mode 100644 index fdfc00e0..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/udieresisacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/udieresiscaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/udieresiscaron.glif deleted file mode 100644 index c905090a..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/udieresiscaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/udieresisgrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/udieresisgrave.glif deleted file mode 100644 index 36d9839b..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/udieresisgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/udieresismacron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/udieresismacron.glif deleted file mode 100644 index d50c9f66..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/udieresismacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/udotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/udotbelow.glif deleted file mode 100644 index cb985663..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/udotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ugrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ugrave.glif deleted file mode 100644 index e0d85eb2..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ugrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhookabove.glif deleted file mode 100644 index 34097999..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhorn.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhorn.glif deleted file mode 100644 index 7c2efe00..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhorn.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhornacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhornacute.glif deleted file mode 100644 index a35a98c5..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhorndotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhorndotbelow.glif deleted file mode 100644 index e5e46084..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhorndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhorngrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhorngrave.glif deleted file mode 100644 index 21184211..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhorngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhornhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhornhookabove.glif deleted file mode 100644 index 75611bc3..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhorntilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhorntilde.glif deleted file mode 100644 index 8f038a9c..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhorntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhungarumlaut.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhungarumlaut.glif deleted file mode 100644 index 5b0f2bd3..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uhungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/umacron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/umacron.glif deleted file mode 100644 index 216367c8..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/umacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uni1E_9E_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uni1E_9E_.glif deleted file mode 100644 index 6d0f53cb..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uni1E_9E_.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uni2011.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uni2011.glif deleted file mode 100644 index cb2d7998..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uni2011.glif +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uogonek.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uogonek.glif deleted file mode 100644 index 224c109b..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uogonek.glif +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uring.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uring.glif deleted file mode 100644 index 5ef39bcb..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/utilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/utilde.glif deleted file mode 100644 index fbbd973f..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/utilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/vdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/vdotbelow.glif deleted file mode 100644 index 00f9f759..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/vdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/wacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/wacute.glif deleted file mode 100644 index 6ab10d57..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/wacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/wcircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/wcircumflex.glif deleted file mode 100644 index b88d01ba..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/wcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/wdieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/wdieresis.glif deleted file mode 100644 index 35605980..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/wdieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/wgrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/wgrave.glif deleted file mode 100644 index 1ffb2820..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/wgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/xdieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/xdieresis.glif deleted file mode 100644 index 47f3dc77..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/xdieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/yacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/yacute.glif deleted file mode 100644 index f4192fd5..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/yacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ycircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ycircumflex.glif deleted file mode 100644 index 7d2b7593..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ycircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ydieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ydieresis.glif deleted file mode 100644 index 2771dc0f..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ydieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ydotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ydotaccent.glif deleted file mode 100644 index 2fc695ed..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ydotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ydotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ydotbelow.glif deleted file mode 100644 index 0c53dbcf..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ydotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ygrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ygrave.glif deleted file mode 100644 index f3a957ca..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ygrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/yhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/yhookabove.glif deleted file mode 100644 index f80a8a8a..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/yhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ymacron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ymacron.glif deleted file mode 100644 index 854fafd6..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ymacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ytilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ytilde.glif deleted file mode 100644 index 7571afa0..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ytilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zacute.glif deleted file mode 100644 index 21d80f0e..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zcaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zcaron.glif deleted file mode 100644 index 00c94dba..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zcircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zcircumflex.glif deleted file mode 100644 index 5ffbcbc6..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zdotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zdotaccent.glif deleted file mode 100644 index 98ee704c..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zdotbelow.glif deleted file mode 100644 index b64534b4..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zlinebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zlinebelow.glif deleted file mode 100644 index f06171d4..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/lib.plist b/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/lib.plist deleted file mode 100644 index 6cee22db..00000000 --- a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/lib.plist +++ /dev/null @@ -1,1288 +0,0 @@ - - - - - com.typemytype.robofont.compileSettings.autohint - - com.typemytype.robofont.compileSettings.checkOutlines - - com.typemytype.robofont.compileSettings.createDummyDSIG - - com.typemytype.robofont.compileSettings.decompose - - com.typemytype.robofont.compileSettings.generateFormat - 1 - com.typemytype.robofont.compileSettings.releaseMode - 1 - com.typemytype.robofont.italicSlantOffset - 0 - com.typemytype.robofont.segmentType - curve - com.typemytype.robofont.shouldAddPointsInSplineConversion - 1 - public.glyphOrder - - .notdef - A - B - C - D - E - F - G - H - I - J - K - L - M - N - O - P - Q - R - S - T - U - V - W - X - Y - Z - a - b - c - d - e - f - g - h - i - j - k - l - m - n - o - p - q - r - s - t - u - v - w - x - y - z - period - comma - colon - semicolon - question - exclam - questiondown - exclamdown - ellipsis - twodotleader - quotedblleft - quotedblright - quotedblbase - quoteleft - quoteright - quotesinglbase - guillemetleft - guillemetright - guilsinglleft - guilsinglright - parenleft - parenright - bracketleft - bracketright - braceleft - braceright - slash - backslash - bar - hyphen - endash - emdash - periodcentered - bullet - underscore - ampersand - at - published - copyright - registered - servicemark - trademark - asterisk - dagger - daggerdbl - section - paragraph - zero - one - two - three - four - five - six - seven - eight - nine - colon.fig - plus - divide - minus - equal - notequal - asciitilde - approxequal - multiply - less - greater - lessequal - greaterequal - plusminus - asciicircum - mu - numbersign - percent - quotedbl - quotesingle - ordfeminine - ordmasculine - degree - dollar - sterling - yen - Euro - naira - peso - uni20BA - uni20BD - uni20B9 - bahtthai - won - cent - dong - onehalf - onethird - twothirds - onequarter - threequarters - onefifth - twofifths - threefifths - fourfifths - onesixth - fivesixths - oneeighth - threeeighths - fiveeighths - seveneighths - zero.sup - one.sup - two.sup - three.sup - four.sup - five.sup - six.sup - seven.sup - eight.sup - nine.sup - zero.inf - one.inf - two.inf - three.inf - four.inf - five.inf - six.inf - seven.inf - eight.inf - nine.inf - primemod - dblprimemod - commaturnedmod - apostrophemod - ringhalfleft - ringhalfright - verticallinemod - verticallinelowmod - acute - hungarumlaut - grave - circumflex - caron - breve - tilde - macron - dieresis - dotaccent - ring - uniA788 - macronlowmod - cedilla - ogonek - Aacute - Agrave - Acircumflex - Acircumflexdotbelow - Acircumflexacute - Acircumflexgrave - Acircumflexhookabove - Acircumflextilde - Acaron - Abreve - Abrevedotbelow - Abreveacute - Abrevegrave - Abrevehookabove - Abrevetilde - Atilde - Amacron - Adieresis - Adotaccent - Aring - Ahookabove - Adotbelow - Aogonek - AE - Blinebelow - Cacute - Ccircumflex - Ccaron - Cdotaccent - Ccedilla - Dcaron - Dcircumflexbelow - Dlinebelow - Ddotbelow - Dcroat - Eacute - Egrave - Ecircumflex - Ecircumflexdotbelow - Ecircumflexacute - Ecircumflexgrave - Ecircumflexhookabove - Ecircumflextilde - Ecaron - Ebreve - Etilde - Emacron - Edieresis - Edotaccent - Ehookabove - Edotbelow - Eogonek - Gcircumflex - Gcaron - Gbreve - Gmacron - Gdotaccent - Gcommaaccent - Hcircumflex - Hbrevebelow - Hdotbelow - Hcedilla - Hbar - Iacute - Igrave - Icircumflex - Icaron - Ibreve - Itilde - Imacron - Idieresis - Idotaccent - Ihookabove - Idotbelow - Iogonek - Jcircumflex - Klinebelow - Kcommaaccent - Kdotbelow - Lacute - Lcaron - Lcommaaccent - Lcircumflexbelow - Llinebelow - Lmacrondotbelow - Ldotbelow - L.dot - Lslash - Macute - Mdotaccent - Mdotbelow - Nacute - Ngrave - Ncaron - Ntilde - Ndotaccent - Ncircumflexbelow - Ncommaaccent - Ndotbelow - Nlinebelow - Eng - Oacute - Ohungarumlaut - Ograve - Ocircumflex - Ocircumflexdotbelow - Ocircumflexacute - Ocircumflexgrave - Ocircumflexhookabove - Ocircumflextilde - Ocaron - Obreve - Otilde - Omacron - Odieresis - Odotaccent - Ohookabove - Odotbelow - Oogonek - Oslash - OE - Ohorn - Ohornacute - Ohorngrave - Ohorntilde - Ohornhookabove - Ohorndotbelow - Racute - Rcaron - Rdotaccent - Rmacrondotbelow - Rcommaaccent - Rdotbelow - Rlinebelow - Sacute - Scircumflex - Scaron - Scommaaccent - Sdotbelow - Scedilla - uni1E9E - Tcaron - Tcircumflexbelow - Tcommaaccent - Tdotbelow - Tlinebelow - Tcedilla - Tbar - Uacute - Uhungarumlaut - Ugrave - Ucircumflex - Ucaron - Ubreve - Utilde - Umacron - Udieresis - Udieresisacute - Udieresisgrave - Udieresiscaron - Udieresismacron - Uring - Uhookabove - Udotbelow - Uogonek - Uhorn - Uhornacute - Uhorngrave - Uhorntilde - Uhornhookabove - Uhorndotbelow - Vdotbelow - Wacute - Wgrave - Wcircumflex - Wdieresis - Xdieresis - Yacute - Ygrave - Ycircumflex - Ytilde - Ymacron - Ydieresis - Ydotaccent - Yhookabove - Ydotbelow - Zacute - Zcircumflex - Zcaron - Zdotaccent - Zdotbelow - Zlinebelow - Eth - Thorn - Schwa - aacute - agrave - acircumflex - acircumflexdotbelow - acircumflexacute - acircumflexgrave - acircumflexhookabove - acircumflextilde - acaron - abreve - abrevedotbelow - abreveacute - abrevegrave - abrevehookabove - abrevetilde - atilde - amacron - adieresis - adotaccent - aring - ahookabove - adotbelow - aogonek - ae - blinebelow - cacute - ccircumflex - ccaron - cdotaccent - ccedilla - dcaron - dcircumflexbelow - dlinebelow - ddotbelow - dcroat - eacute - egrave - ecircumflex - ecircumflexdotbelow - ecircumflexacute - ecircumflexgrave - ecircumflexhookabove - ecircumflextilde - ecaron - ebreve - etilde - emacron - edieresis - edotaccent - ehookabove - edotbelow - eogonek - gcircumflex - gcaron - gbreve - gmacron - gdotaccent - gcommaaccent - hcircumflex - hbrevebelow - hlinebelow - hdotbelow - hcedilla - hbar - dotlessi - iacute - igrave - icircumflex - icaron - ibreve - itilde - imacron - idieresis - idotaccent - ihookabove - idotbelow - iogonek - dotlessj - jcircumflex - jcaron - klinebelow - kcommaaccent - kdotbelow - lacute - lcaron - lcommaaccent - lcircumflexbelow - llinebelow - lmacrondotbelow - ldotbelow - l.dot - lslash - macute - mdotaccent - mdotbelow - nacute - ngrave - ncaron - ntilde - ndotaccent - ncircumflexbelow - ncommaaccent - ndotbelow - nlinebelow - eng - oacute - ohungarumlaut - ograve - ocircumflex - ocircumflexdotbelow - ocircumflexacute - ocircumflexgrave - ocircumflexhookabove - ocircumflextilde - ocaron - obreve - otilde - omacron - odieresis - odotaccent - ohookabove - odotbelow - oogonek - oslash - oe - ohorn - ohornacute - ohorngrave - ohorntilde - ohornhookabove - ohorndotbelow - racute - rcaron - rdotaccent - rmacrondotbelow - rcommaaccent - rdotbelow - rlinebelow - sacute - scircumflex - scaron - scommaaccent - sdotbelow - scedilla - germandbls - tcaron - tcircumflexbelow - tcommaaccent - tdotbelow - tlinebelow - tcedilla - tbar - uacute - uhungarumlaut - ugrave - ucircumflex - ucaron - ubreve - utilde - umacron - udieresis - udieresisacute - udieresisgrave - udieresiscaron - udieresismacron - uring - uhookabove - udotbelow - uogonek - uhorn - uhornacute - uhorngrave - uhorntilde - uhornhookabove - uhorndotbelow - vdotbelow - wacute - wgrave - wcircumflex - wdieresis - xdieresis - yacute - ygrave - ycircumflex - ytilde - ymacron - ydieresis - ydotaccent - yhookabove - ydotbelow - zacute - zcircumflex - zcaron - zdotaccent - zdotbelow - zlinebelow - eth - thorn - schwa - space - uni00A0 - zero.num - one.num - two.num - three.num - four.num - five.num - six.num - seven.num - eight.num - nine.num - fraction - fracbar - zero.den - one.den - two.den - three.den - four.den - five.den - six.den - seven.den - eight.den - nine.den - uni2011 - horizontalbar - middotcat - middotcat.cap - acutecmb - hungarumlautcmb - gravecmb - commaaboverightcmb - circumflexcmb - caroncmb - brevecmb - tildecmb - macroncmb - dieresiscmb - dotaccentcmb - ringcmb - commaturnedabovecmb - hookcmb - circumflexbelowcmb - brevebelowcmb - macronbelowcmb - dieresisbelowcmb - dotbelowcmb - uni0326 - cedillacmb - ogonekcmb - dieresisacute - dieresisgrave - dieresiscaron - dieresismacron - breveacute - brevegrave - brevehook - brevetilde - circumflexacute - circumflexgrave - circumflexhook - circumflextilde - acutecmb.cap - hungarumlautcmb.cap - gravecmb.cap - circumflexcmb.cap - caroncmb.cap - brevecmb.cap - tildecmb.cap - macroncmb.cap - dieresiscmb.cap - dotaccentcmb.cap - ringcmb.cap - hookcmb.cap - dieresisacute.cap - dieresisgrave.cap - dieresiscaron.cap - dieresismacron.cap - breveacute.cap - brevegrave.cap - brevehook.cap - brevetilde.cap - circumflexacute.cap - circumflexgrave.cap - circumflexhook.cap - circumflextilde.cap - - public.postscriptNames - - Abreveacute - uni1EAE - Abrevedotbelow - uni1EB6 - Abrevegrave - uni1EB0 - Abrevehookabove - uni1EB2 - Abrevetilde - uni1EB4 - Acaron - uni01CD - Acircumflexacute - uni1EA4 - Acircumflexdotbelow - uni1EAC - Acircumflexgrave - uni1EA6 - Acircumflexhookabove - uni1EA8 - Acircumflextilde - uni1EAA - Adotaccent - uni0226 - Adotbelow - uni1EA0 - Ahookabove - uni1EA2 - Blinebelow - uni1E06 - Dcircumflexbelow - uni1E12 - Ddotbelow - uni1E0C - Dlinebelow - uni1E0E - Ecircumflexacute - uni1EBE - Ecircumflexdotbelow - uni1EC6 - Ecircumflexgrave - uni1EC0 - Ecircumflexhookabove - uni1EC2 - Ecircumflextilde - uni1EC4 - Edotbelow - uni1EB8 - Ehookabove - uni1EBA - Etilde - uni1EBC - Gcommaaccent - uni0122 - Gmacron - uni1E20 - Hbrevebelow - uni1E2A - Hcedilla - uni1E28 - Hdotbelow - uni1E24 - Icaron - uni01CF - Idotbelow - uni1ECA - Ihookabove - uni1EC8 - Kcommaaccent - uni0136 - Kdotbelow - uni1E32 - Klinebelow - uni1E34 - L.dot - Ldot - Lcircumflexbelow - uni1E3C - Lcommaaccent - uni013B - Ldotbelow - uni1E36 - Llinebelow - uni1E3A - Lmacrondotbelow - uni1E38 - Macute - uni1E3E - Mdotaccent - uni1E40 - Mdotbelow - uni1E42 - Ncircumflexbelow - uni1E4A - Ncommaaccent - uni0145 - Ndotaccent - uni1E44 - Ndotbelow - uni1E46 - Ngrave - uni01F8 - Nlinebelow - uni1E48 - Ocaron - uni01D1 - Ocircumflexacute - uni1ED0 - Ocircumflexdotbelow - uni1ED8 - Ocircumflexgrave - uni1ED2 - Ocircumflexhookabove - uni1ED4 - Ocircumflextilde - uni1ED6 - Odotaccent - uni022E - Odotbelow - uni1ECC - Ohookabove - uni1ECE - Ohornacute - uni1EDA - Ohorndotbelow - uni1EE2 - Ohorngrave - uni1EDC - Ohornhookabove - uni1EDE - Ohorntilde - uni1EE0 - Oogonek - uni01EA - Rcommaaccent - uni0156 - Rdotaccent - uni1E58 - Rdotbelow - uni1E5A - Rlinebelow - uni1E5E - Rmacrondotbelow - uni1E5C - Scedilla - uni015E - Schwa - uni018F - Scommaaccent - uni0218 - Sdotbelow - uni1E62 - Tcedilla - uni0162 - Tcircumflexbelow - uni1E70 - Tcommaaccent - uni021A - Tdotbelow - uni1E6C - Tlinebelow - uni1E6E - Ucaron - uni01D3 - Udieresisacute - uni01D7 - Udieresiscaron - uni01D9 - Udieresisgrave - uni01DB - Udieresismacron - uni01D5 - Udotbelow - uni1EE4 - Uhookabove - uni1EE6 - Uhornacute - uni1EE8 - Uhorndotbelow - uni1EF0 - Uhorngrave - uni1EEA - Uhornhookabove - uni1EEC - Uhorntilde - uni1EEE - Vdotbelow - uni1E7E - Xdieresis - uni1E8C - Ydotaccent - uni1E8E - Ydotbelow - uni1EF4 - Yhookabove - uni1EF6 - Ymacron - uni0232 - Ytilde - uni1EF8 - Zcircumflex - uni1E90 - Zdotbelow - uni1E92 - Zlinebelow - uni1E94 - abreveacute - uni1EAF - abrevedotbelow - uni1EB7 - abrevegrave - uni1EB1 - abrevehookabove - uni1EB3 - abrevetilde - uni1EB5 - acaron - uni01CE - acircumflexacute - uni1EA5 - acircumflexdotbelow - uni1EAD - acircumflexgrave - uni1EA7 - acircumflexhookabove - uni1EA9 - acircumflextilde - uni1EAB - acutecmb - uni0301 - acutecmb.cap - uni0301.cap - adotaccent - uni0227 - adotbelow - uni1EA1 - ahookabove - uni1EA3 - apostrophemod - uni02BC - bahtthai - uni0E3F - blinebelow - uni1E07 - breveacute - uni02D80301 - breveacute.cap - uni02D80301.cap - brevebelowcmb - uni032E - brevecmb - uni0306 - brevecmb.cap - uni0306.cap - brevegrave - uni02D80300 - brevegrave.cap - uni02D80300.cap - brevehook - uni02D80309 - brevehook.cap - uni02D80309.cap - brevetilde - uni02D80303 - brevetilde.cap - uni02D80303.cap - caroncmb - uni030C - caroncmb.cap - uni030C.cap - cedillacmb - uni0327 - circumflexacute - uni02C60301 - circumflexacute.cap - uni02C60301.cap - circumflexbelowcmb - uni032D - circumflexcmb - uni0302 - circumflexcmb.cap - uni0302.cap - circumflexgrave - uni02C60300 - circumflexgrave.cap - uni02C60300.cap - circumflexhook - uni02C60309 - circumflexhook.cap - uni02C60309.cap - circumflextilde - uni02C60303 - circumflextilde.cap - uni02C60303.cap - commaaboverightcmb - uni0315 - commaturnedabovecmb - uni0312 - commaturnedmod - uni02BB - dblprimemod - uni02BA - dcircumflexbelow - uni1E13 - ddotbelow - uni1E0D - dieresisacute - uni00A80301 - dieresisacute.cap - uni00A80301.cap - dieresisbelowcmb - uni0324 - dieresiscaron - uni00A8030C - dieresiscaron.cap - uni00A8030C.cap - dieresiscmb - uni0308 - dieresiscmb.cap - uni0308.cap - dieresisgrave - uni00A80300 - dieresisgrave.cap - uni00A80300.cap - dieresismacron - uni00A80304 - dieresismacron.cap - uni00A80304.cap - dlinebelow - uni1E0F - dotaccentcmb - uni0307 - dotaccentcmb.cap - uni0307.cap - dotbelowcmb - uni0323 - dotlessj - uni0237 - ecircumflexacute - uni1EBF - ecircumflexdotbelow - uni1EC7 - ecircumflexgrave - uni1EC1 - ecircumflexhookabove - uni1EC3 - ecircumflextilde - uni1EC5 - edotbelow - uni1EB9 - ehookabove - uni1EBB - etilde - uni1EBD - gcommaaccent - uni0123 - gmacron - uni1E21 - gravecmb - uni0300 - gravecmb.cap - uni0300.cap - guillemetleft - uni00AB - guillemetright - uni00BB - hbrevebelow - uni1E2B - hcedilla - uni1E29 - hdotbelow - uni1E25 - hlinebelow - uni1E96 - hookcmb - uni0309 - hookcmb.cap - uni0309.cap - horizontalbar - uni2015 - hungarumlautcmb - uni030B - hungarumlautcmb.cap - uni030B.cap - icaron - uni01D0 - idotaccent - i.dot - idotbelow - uni1ECB - ihookabove - uni1EC9 - jcaron - uni01F0 - kcommaaccent - uni0137 - kdotbelow - uni1E33 - klinebelow - uni1E35 - l.dot - ldot - lcircumflexbelow - uni1E3D - lcommaaccent - uni013C - ldotbelow - uni1E37 - llinebelow - uni1E3B - lmacrondotbelow - uni1E39 - macronbelowcmb - uni0331 - macroncmb - uni0304 - macroncmb.cap - uni0304.cap - macronlowmod - uni02CD - macute - uni1E3F - mdotaccent - uni1E41 - mdotbelow - uni1E43 - naira - uni20A6 - ncircumflexbelow - uni1E4B - ncommaaccent - uni0146 - ndotaccent - uni1E45 - ndotbelow - uni1E47 - ngrave - uni01F9 - nlinebelow - uni1E49 - ocaron - uni01D2 - ocircumflexacute - uni1ED1 - ocircumflexdotbelow - uni1ED9 - ocircumflexgrave - uni1ED3 - ocircumflexhookabove - uni1ED5 - ocircumflextilde - uni1ED7 - odotaccent - uni022F - odotbelow - uni1ECD - ogonekcmb - uni0328 - ohookabove - uni1ECF - ohornacute - uni1EDB - ohorndotbelow - uni1EE3 - ohorngrave - uni1EDD - ohornhookabove - uni1EDF - ohorntilde - uni1EE1 - oogonek - uni01EB - peso - uni20B1 - primemod - uni02B9 - published - uni2117 - rcommaaccent - uni0157 - rdotaccent - uni1E59 - rdotbelow - uni1E5B - ringcmb - uni030A - ringcmb.cap - uni030A.cap - ringhalfleft - uni02BF - ringhalfright - uni02BE - rlinebelow - uni1E5F - rmacrondotbelow - uni1E5D - scedilla - uni015F - schwa - uni0259 - scommaaccent - uni0219 - sdotbelow - uni1E63 - servicemark - uni2120 - tcedilla - uni0163 - tcircumflexbelow - uni1E71 - tcommaaccent - uni021B - tdotbelow - uni1E6D - tildecmb - uni0303 - tildecmb.cap - uni0303.cap - tlinebelow - uni1E6F - twodotleader - uni2025 - ucaron - uni01D4 - udieresisacute - uni01D8 - udieresiscaron - uni01DA - udieresisgrave - uni01DC - udieresismacron - uni01D6 - udotbelow - uni1EE5 - uhookabove - uni1EE7 - uhornacute - uni1EE9 - uhorndotbelow - uni1EF1 - uhorngrave - uni1EEB - uhornhookabove - uni1EED - uhorntilde - uni1EEF - uni1E9E - uni1E9E - vdotbelow - uni1E7F - verticallinelowmod - uni02CC - verticallinemod - uni02C8 - won - uni20A9 - xdieresis - uni1E8D - ydotaccent - uni1E8F - ydotbelow - uni1EF5 - yhookabove - uni1EF7 - ymacron - uni0233 - ytilde - uni1EF9 - zcircumflex - uni1E91 - zdotbelow - uni1E93 - zlinebelow - uni1E95 - - - diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/features.fea b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/features.fea new file mode 100644 index 00000000..69ec020c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/features.fea @@ -0,0 +1,6 @@ + +include(../../features/shared.fea); + +include(../../features/mark/IntelOneMono-BoldItalic mark.fea); + +include(../../features/aalt.fea); diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/fontinfo.plist b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/fontinfo.plist new file mode 100644 index 00000000..867b6608 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/fontinfo.plist @@ -0,0 +1,383 @@ + + + + + ascender + 740 + capHeight + 655 + copyright + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + descender + -260 + familyName + Intel One Mono + guidelines + + italicAngle + -16.0 + openTypeHeadFlags + + 0 + 1 + + openTypeHheaAscender + 1090 + openTypeHheaDescender + -290 + openTypeHheaLineGap + 0 + openTypeNameDesigner + Fred Shallcrass + openTypeNameDesignerURL + http://frerejones.com + openTypeNameLicense + This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL + openTypeNameLicenseURL + https://github.com/intel/intel-one-mono/blob/main/license + openTypeNameManufacturer + Frere-Jones Type LLC + openTypeNameManufacturerURL + http://frerejones.com + openTypeNamePreferredFamilyName + Intel One Mono + openTypeNamePreferredSubfamilyName + Bold Italic + openTypeNameRecords + + + encodingID + 0 + languageID + 0 + nameID + 0 + platformID + 1 + string + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + + + encodingID + 1 + languageID + 1033 + nameID + 0 + platformID + 3 + string + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + + + encodingID + 0 + languageID + 0 + nameID + 1 + platformID + 1 + string + Intel One Mono + + + encodingID + 1 + languageID + 1033 + nameID + 1 + platformID + 3 + string + Intel One Mono + + + encodingID + 0 + languageID + 0 + nameID + 2 + platformID + 1 + string + Bold Italic + + + encodingID + 1 + languageID + 1033 + nameID + 2 + platformID + 3 + string + Bold Italic + + + encodingID + 0 + languageID + 0 + nameID + 4 + platformID + 1 + string + Intel One Mono Bold Italic + + + encodingID + 1 + languageID + 1033 + nameID + 4 + platformID + 3 + string + Intel One Mono Bold Italic + + + encodingID + 0 + languageID + 0 + nameID + 6 + platformID + 1 + string + IntelOneMono-BoldItalic + + + encodingID + 1 + languageID + 1033 + nameID + 6 + platformID + 3 + string + IntelOneMono-BoldItalic + + + encodingID + 0 + languageID + 0 + nameID + 8 + platformID + 1 + string + Frere-Jones Type LLC + + + encodingID + 1 + languageID + 1033 + nameID + 8 + platformID + 3 + string + Frere-Jones Type LLC + + + encodingID + 0 + languageID + 0 + nameID + 9 + platformID + 1 + string + Fred Shallcrass + + + encodingID + 1 + languageID + 1033 + nameID + 9 + platformID + 3 + string + Fred Shallcrass + + + encodingID + 0 + languageID + 0 + nameID + 11 + platformID + 1 + string + http://frerejones.com + + + encodingID + 1 + languageID + 1033 + nameID + 11 + platformID + 3 + string + http://frerejones.com + + + encodingID + 0 + languageID + 0 + nameID + 12 + platformID + 1 + string + http://frerejones.com + + + encodingID + 1 + languageID + 1033 + nameID + 12 + platformID + 3 + string + http://frerejones.com + + + openTypeOS2CodePageRanges + + 0 + 1 + 4 + 7 + 8 + 29 + + openTypeOS2Panose + + 2 + 11 + 8 + 9 + 2 + 2 + 3 + 9 + 2 + 4 + + openTypeOS2Selection + + 7 + 8 + + openTypeOS2StrikeoutPosition + 286 + openTypeOS2StrikeoutSize + 50 + openTypeOS2Type + + openTypeOS2TypoAscender + 1090 + openTypeOS2TypoDescender + -290 + openTypeOS2TypoLineGap + 0 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 29 + 32 + + openTypeOS2VendorID + FRJN + openTypeOS2WeightClass + 700 + openTypeOS2WidthClass + 5 + openTypeOS2WinAscent + 1090 + openTypeOS2WinDescent + 290 + postscriptBlueFuzz + 0 + postscriptBlueScale + 0.05 + postscriptBlueValues + + -15 + 0 + 477 + 492 + 655 + 670 + 710 + 725 + + postscriptDefaultWidthX + 614 + postscriptFamilyBlues + + postscriptFamilyOtherBlues + + postscriptFontName + IntelOneMono-BoldItalic + postscriptForceBold + + postscriptFullName + Intel One Mono Bold Italic + postscriptIsFixedPitch + + postscriptOtherBlues + + -245 + -230 + + postscriptStemSnapH + + 120 + + postscriptStemSnapV + + 139 + + postscriptUnderlinePosition + -75 + postscriptUnderlineThickness + 50 + styleMapFamilyName + Intel One Mono + styleMapStyleName + bold italic + styleName + Bold Italic + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 4 + xHeight + 477 + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_E_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_E_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_E_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_E_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_acute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_acute.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_breve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_breve.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_breveacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_breveacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_breveacute.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_breveacute.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_brevedotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_brevedotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_brevedotbelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_brevedotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_brevegrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_brevegrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_brevegrave.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_brevegrave.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_brevehookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_brevehookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_brevehookabove.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_brevehookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_brevetilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_brevetilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_brevetilde.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_brevetilde.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_caron.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_circumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_circumflex.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_circumflexdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_circumflexdotbelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_circumflexdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_circumflexhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_circumflexhookabove.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_circumflexhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_circumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_circumflextilde.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_circumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_dieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_dieresis.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_dotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_grave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_grave.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_hookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_hookabove.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_macron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_macron.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_ogonek.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_ogonek.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_ring.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_ring.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_ring.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_ring.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_tilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/A_tilde.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/A_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/B_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/B_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/B_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/B_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/B_linebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/B_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/B_linebelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/B_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/C_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/C_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/C_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/C_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/C_acute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/C_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/C_acute.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/C_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/C_caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/C_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/C_caron.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/C_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/C_cedilla.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/C_cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/C_cedilla.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/C_cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/C_circumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/C_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/C_circumflex.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/C_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/C_dotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/C_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/C_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/C_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/D_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/D_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/D_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/D_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/D_caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/D_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/D_caron.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/D_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/D_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/D_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/D_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/D_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/D_croat.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/D_croat.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/D_croat.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/D_croat.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/D_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/D_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/D_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/D_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/D_linebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/D_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/D_linebelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/D_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_acute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_acute.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_breve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_breve.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_caron.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_circumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_circumflex.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_circumflexdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_circumflexdotbelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_circumflexdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_circumflexhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_circumflexhookabove.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_circumflexhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_circumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_circumflextilde.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_circumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_dieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_dieresis.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_dotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_grave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_grave.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_hookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_hookabove.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_macron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_macron.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_ng.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_ng.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_ng.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_ng.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_ogonek.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_ogonek.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_th.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_th.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_th.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_th.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_tilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_tilde.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_uro.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_uro.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/E_uro.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/E_uro.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/F_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/F_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/F_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/F_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/G_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/G_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/G_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/G_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/G_breve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/G_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/G_breve.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/G_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/G_caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/G_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/G_caron.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/G_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/G_circumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/G_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/G_circumflex.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/G_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/G_commaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/G_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/G_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/G_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/G_dotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/G_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/G_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/G_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/G_macron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/G_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/G_macron.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/G_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/H_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/H_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/H_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/H_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/H_bar.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/H_bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/H_bar.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/H_bar.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/H_brevebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/H_brevebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/H_brevebelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/H_brevebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/H_cedilla.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/H_cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/H_cedilla.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/H_cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/H_circumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/H_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/H_circumflex.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/H_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/H_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/H_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/H_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/H_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_acute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_acute.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_breve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_breve.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_caron.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_circumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_circumflex.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_dieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_dieresis.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_dotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_grave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_grave.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_hookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_hookabove.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_macron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_macron.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_ogonek.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_ogonek.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_tilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/I_tilde.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/I_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/J_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/J_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/J_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/J_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/J_circumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/J_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/J_circumflex.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/J_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/K_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/K_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/K_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/K_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/K_commaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/K_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/K_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/K_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/K_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/K_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/K_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/K_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/K_linebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/K_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/K_linebelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/K_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_.dot.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_.dot.glif new file mode 100644 index 00000000..7b68cb69 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_.dot.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + public.objectLibs + + component0 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + component1 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + component2 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + + public.truetype.overlap + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_acute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_acute.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_caron.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_commaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_linebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_linebelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_macrondotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_macrondotbelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_macrondotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_slash.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_slash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/L_slash.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/L_slash.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/M_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/M_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/M_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/M_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/M_acute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/M_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/M_acute.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/M_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/M_dotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/M_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/M_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/M_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/M_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/M_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/M_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/M_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/N_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/N_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/N_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/N_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/N_acute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/N_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/N_acute.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/N_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/N_caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/N_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/N_caron.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/N_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/N_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/N_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/N_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/N_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/N_commaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/N_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/N_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/N_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/N_dotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/N_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/N_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/N_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/N_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/N_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/N_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/N_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/N_grave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/N_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/N_grave.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/N_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/N_linebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/N_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/N_linebelow.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/N_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/N_tilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/N_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/N_tilde.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/N_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_E_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..09f13150 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_E_.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_acute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_acute.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_breve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..1a6bb3f1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_breve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_caron.glif new file mode 100644 index 00000000..65ed1e5f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..f5e5ed00 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexacute.glif new file mode 100644 index 00000000..3d0d348a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexdotbelow.glif new file mode 100644 index 00000000..a7fe7462 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexgrave.glif new file mode 100644 index 00000000..8efd59bd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexhookabove.glif new file mode 100644 index 00000000..20c0661d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflextilde.glif new file mode 100644 index 00000000..0ff6b581 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_circumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_dieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..dc0b18f5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_dotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_dotaccent.glif new file mode 100644 index 00000000..439b5270 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_dotbelow.glif new file mode 100644 index 00000000..ab8fc49e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_grave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_grave.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_hookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_hookabove.glif new file mode 100644 index 00000000..0588ac06 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_horn.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_horn.glif new file mode 100644 index 00000000..5c7c1703 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_horn.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_hornacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_hornacute.glif new file mode 100644 index 00000000..c1537178 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_hornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_horndotbelow.glif new file mode 100644 index 00000000..904b57ee --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_horndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_horngrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_horngrave.glif new file mode 100644 index 00000000..42f18f1d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_horngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_hornhookabove.glif new file mode 100644 index 00000000..e13ca72b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_hornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_horntilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_horntilde.glif new file mode 100644 index 00000000..b6f2cb06 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_horntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_hungarumlaut.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/O_hungarumlaut.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_hungarumlaut.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_macron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..a41a78b7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_ogonek.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_ogonek.glif new file mode 100644 index 00000000..f8e8ed3c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_ogonek.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_slash.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..11b00dd7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_slash.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_tilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..039c3414 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/O_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/P_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/P_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/P_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/P_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Q_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Q_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Q_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Q_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/R_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/R_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_acute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..f45225da --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..c2f5a6ac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_commaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..993d4c7c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_dotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_dotaccent.glif new file mode 100644 index 00000000..110950b4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_dotbelow.glif new file mode 100644 index 00000000..89162beb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_linebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_linebelow.glif new file mode 100644 index 00000000..be375d89 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_macrondotbelow.glif new file mode 100644 index 00000000..aaed97f7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/R_macrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/S_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_acute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..b840adeb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..730de3c6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_cedilla.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..a22c3c09 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_chwa.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..b36add05 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_chwa.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_circumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..eac62b9c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_commaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..b6cb5c1a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_dotbelow.glif new file mode 100644 index 00000000..a70297fe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/S_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_bar.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/T_bar.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_bar.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..0cc3e869 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_cedilla.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..0ac820ff --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_circumflexbelow.glif new file mode 100644 index 00000000..04e62723 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_circumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_commaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..8efd5833 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_dotbelow.glif new file mode 100644 index 00000000..3d102e5d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_horn.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..ad492b48 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_horn.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_linebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_linebelow.glif new file mode 100644 index 00000000..7c07de34 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/T_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_acute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..18fd00e8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_breve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..c046ca2e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_breve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_caron.glif new file mode 100644 index 00000000..ddb55f39 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_circumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..81b49c3d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..46ec60f2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresisacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresisacute.glif new file mode 100644 index 00000000..fd619e5f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresisacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresiscaron.glif new file mode 100644 index 00000000..ac59eded --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresiscaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresisgrave.glif new file mode 100644 index 00000000..a7aaf32a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresisgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresismacron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresismacron.glif new file mode 100644 index 00000000..f406713f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_dieresismacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_dotbelow.glif new file mode 100644 index 00000000..e5734611 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_grave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..5af9c734 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_hookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_hookabove.glif new file mode 100644 index 00000000..91bd6c03 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_horn.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_horn.glif new file mode 100644 index 00000000..219cedbd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_horn.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_hornacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_hornacute.glif new file mode 100644 index 00000000..2fd0d981 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_hornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_horndotbelow.glif new file mode 100644 index 00000000..261148a5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_horndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_horngrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_horngrave.glif new file mode 100644 index 00000000..323cac9d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_horngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_hornhookabove.glif new file mode 100644 index 00000000..e91c29d4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_hornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_horntilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_horntilde.glif new file mode 100644 index 00000000..a348994a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_horntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..5cb9543f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_macron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..1b325228 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_ogonek.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..ffe7d568 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_ring.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..4d48b64f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_ring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_tilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..09ca5efe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/U_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/V_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/V_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/V_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/V_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/V_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/V_dotbelow.glif new file mode 100644 index 00000000..5d1df2c8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/V_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/W_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/W_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/W_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/W_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/W_acute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..72c69526 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/W_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/W_circumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..c4cd4560 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/W_dieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..5465f60a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/W_grave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..d25a854b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/W_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/X_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/X_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/X_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/X_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/X_dieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/X_dieresis.glif new file mode 100644 index 00000000..812f5e70 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/X_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Y_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_acute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..619f23e1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_circumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..b612cd67 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_dieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..e2a0c730 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_dotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_dotaccent.glif new file mode 100644 index 00000000..e559db43 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_dotbelow.glif new file mode 100644 index 00000000..f4686c7e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_grave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_grave.glif new file mode 100644 index 00000000..94814a87 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_hookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_hookabove.glif new file mode 100644 index 00000000..f118af34 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_macron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_macron.glif new file mode 100644 index 00000000..c7034e5e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_tilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_tilde.glif new file mode 100644 index 00000000..84e479a2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Y_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Z_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Z_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/Z_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Z_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Z_acute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..b01877c7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Z_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Z_caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..ad3e62df --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Z_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Z_circumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Z_circumflex.glif new file mode 100644 index 00000000..43f3e5a2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Z_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Z_dotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..55a6e97c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Z_dotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Z_dotbelow.glif new file mode 100644 index 00000000..7cbeea3c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Z_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Z_linebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Z_linebelow.glif new file mode 100644 index 00000000..015a9488 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/Z_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/_notdef.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/_notdef.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/_notdef.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/_notdef.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/a.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/a.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/a.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/a.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/aacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..57a3ebdd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/aacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/abreve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..ab366a79 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/abreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/abreveacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/abreveacute.glif new file mode 100644 index 00000000..87a5d745 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/abreveacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/abrevedotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/abrevedotbelow.glif new file mode 100644 index 00000000..73c6c281 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/abrevedotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/abrevegrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/abrevegrave.glif new file mode 100644 index 00000000..8d80d07c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/abrevegrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/abrevehookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/abrevehookabove.glif new file mode 100644 index 00000000..e7c47816 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/abrevehookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/abrevetilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/abrevetilde.glif new file mode 100644 index 00000000..41d76812 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/abrevetilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..30a6de80 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..ae1ed7b4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexacute.glif new file mode 100644 index 00000000..cebd53f1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexdotbelow.glif new file mode 100644 index 00000000..d661918d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexgrave.glif new file mode 100644 index 00000000..7a7f29d8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexhookabove.glif new file mode 100644 index 00000000..1e973371 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acircumflextilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acircumflextilde.glif new file mode 100644 index 00000000..c7bff737 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acute.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acute.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acutecmb.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acutecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acutecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acutecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acutecmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acutecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/acutecmb.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/acutecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/adieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..bed7e43b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/adieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/adotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/adotaccent.glif new file mode 100644 index 00000000..06094c3a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/adotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/adotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/adotbelow.glif new file mode 100644 index 00000000..b2231476 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/adotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ae.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ae.glif new file mode 100644 index 00000000..d663907b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ae.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/agrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..2ac33570 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/agrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ahookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ahookabove.glif new file mode 100644 index 00000000..a5d10857 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ahookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/amacron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..bd3b5c7b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/amacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ampersand.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ampersand.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ampersand.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ampersand.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ampersand_ampersand.liga.glif new file mode 100644 index 00000000..bb46b495 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ampersand_ampersand.liga.glif @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/aogonek.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..fe79e8a7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/aogonek.glif @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/apostrophemod.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/apostrophemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/apostrophemod.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/apostrophemod.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/approxequal.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/approxequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/approxequal.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/approxequal.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/aring.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/aring.glif new file mode 100644 index 00000000..9f992e9e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/aring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/asciicircum.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciicircum.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/asciicircum.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciicircum.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciicircum_equal.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciicircum_equal.liga.glif new file mode 100644 index 00000000..af86f19d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciicircum_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/asciitilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/asciitilde.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..1ee29ccb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_asciitilde_greater.glif new file mode 100644 index 00000000..aab1ef83 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_asciitilde_greater.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_at.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_at.liga.glif new file mode 100644 index 00000000..9d4b3b53 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_at.liga.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_greater.liga.glif new file mode 100644 index 00000000..4591c047 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_greater.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_hyphen.liga.glif new file mode 100644 index 00000000..844a37ff --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asciitilde_hyphen.liga.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/asterisk.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asterisk.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/asterisk.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asterisk.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_asterisk.liga.glif new file mode 100644 index 00000000..81c64581 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif new file mode 100644 index 00000000..eb2d054c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_greater.liga.glif new file mode 100644 index 00000000..bf9e6a9c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_slash.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_slash.liga.glif new file mode 100644 index 00000000..1536beb0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/asterisk_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/at.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/at.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/at.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/at.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/atilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..08043abb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/atilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/b.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/b.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/b.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/b.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/backslash.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/backslash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/backslash.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/backslash.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/backslash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/backslash_slash.liga.glif new file mode 100644 index 00000000..4601498d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/backslash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/bahtthai.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bahtthai.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/bahtthai.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bahtthai.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/bar.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/bar.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar.liga.glif new file mode 100644 index 00000000..6e09a289 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_bar.liga.glif new file mode 100644 index 00000000..dc1b5564 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_bar.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif new file mode 100644 index 00000000..9f921797 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_equal.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_equal.liga.glif new file mode 100644 index 00000000..d9a1cb2d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_equal.start.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_equal.start.glif new file mode 100644 index 00000000..4f443792 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_greater.liga.glif new file mode 100644 index 00000000..f62a1ab4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_greater.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_hyphen.liga.glif new file mode 100644 index 00000000..52f14e19 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_hyphen.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_hyphen.start.glif new file mode 100644 index 00000000..c3246656 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bar_hyphen.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_braceright.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_braceright.liga.glif new file mode 100644 index 00000000..2420a4da --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_braceright.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bracketright.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bracketright.liga.glif new file mode 100644 index 00000000..578efd3b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_bracketright.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_equal.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_equal.liga.glif new file mode 100644 index 00000000..48663c47 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_equal.start.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_equal.start.glif new file mode 100644 index 00000000..7fbd2335 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_greater.liga.glif new file mode 100644 index 00000000..1f8ee631 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_hyphen.liga.glif new file mode 100644 index 00000000..0a3ab3a2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_hyphen.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_hyphen.start.glif new file mode 100644 index 00000000..1c658b67 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bar_hyphen.start.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/blinebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/blinebelow.glif new file mode 100644 index 00000000..9d46e0c7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/blinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/braceleft.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/braceleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/braceleft.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/braceleft.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/braceleft_bar.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/braceleft_bar.liga.glif new file mode 100644 index 00000000..02f91a06 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/braceleft_bar.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/braceright.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/braceright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/braceright.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/braceright.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/bracketleft.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bracketleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/bracketleft.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bracketleft.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bracketleft_bar.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bracketleft_bar.liga.glif new file mode 100644 index 00000000..e973f9a1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bracketleft_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/bracketright.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bracketright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/bracketright.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bracketright.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bracketright_numbersign.liga.glif new file mode 100644 index 00000000..ccacdfb6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bracketright_numbersign.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/breve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/breve.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/breve.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/breveacute.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/breveacute.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/breveacute.cap.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/breveacute.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/breveacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/breveacute.glif new file mode 100644 index 00000000..4f589784 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/breveacute.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevebelowcmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevebelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevebelowcmb.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevebelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevecmb.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevecmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevecmb.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevegrave.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevegrave.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevegrave.cap.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevegrave.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevegrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevegrave.glif new file mode 100644 index 00000000..fc0b9576 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevegrave.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevehook.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevehook.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevehook.cap.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevehook.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevehook.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevehook.glif new file mode 100644 index 00000000..82a4f793 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevehook.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevetilde.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevetilde.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/brevetilde.cap.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevetilde.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevetilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevetilde.glif new file mode 100644 index 00000000..3c1cb1ac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/brevetilde.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/bullet.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bullet.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/bullet.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/bullet.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/c.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/c.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/c.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/c.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/cacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..7ecfedec --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/cacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/caron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/caron.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/caron.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/caroncmb.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/caroncmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/caroncmb.cap.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/caroncmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/caroncmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/caroncmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/caroncmb.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/caroncmb.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ccaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..fd65d4b8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ccaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ccedilla.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..e47d626e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ccedilla.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ccircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..5b9497fe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/cdotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..3c72ca25 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/cedilla.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/cedilla.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/cedillacmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/cedillacmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/cedillacmb.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/cedillacmb.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/cent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/cent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/cent.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/cent.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflex.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflexacute.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflexacute.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflexacute.cap.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflexacute.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflexacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflexbelowcmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflexbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflexbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflexbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflexcmb.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflexcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflexcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflexcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflexcmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflexcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflexcmb.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflexcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflexgrave.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflexgrave.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflexgrave.cap.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflexgrave.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflexhook.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflexhook.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflexhook.cap.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflexhook.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflexhook.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflexhook.glif new file mode 100644 index 00000000..61b5adbf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflexhook.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflextilde.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflextilde.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/circumflextilde.cap.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflextilde.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflextilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflextilde.glif new file mode 100644 index 00000000..a9b897b1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/circumflextilde.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/colon.fig.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon.fig.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/colon.fig.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon.fig.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/colon.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/colon.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon_colon.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon_colon.liga.glif new file mode 100644 index 00000000..ace4265b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon_colon_colon.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon_colon_colon.liga.glif new file mode 100644 index 00000000..d9d24432 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon_colon_colon.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon_colon_equal.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon_colon_equal.liga.glif new file mode 100644 index 00000000..2e6bc625 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon_colon_equal.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon_equal.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon_equal.liga.glif new file mode 100644 index 00000000..fcc7a5d7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon_greater.liga.glif new file mode 100644 index 00000000..d3e50f68 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon_greater.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon_less.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon_less.liga.glif new file mode 100644 index 00000000..27e58743 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/colon_less.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/comma.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/comma.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/comma.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/comma.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/commaaboverightcmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/commaaboverightcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/commaaboverightcmb.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/commaaboverightcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/commaturnedabovecmb.glif new file mode 100644 index 00000000..5e70dfbf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/commaturnedabovecmb.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/commaturnedmod.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/commaturnedmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/commaturnedmod.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/commaturnedmod.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/contents.plist b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/contents.plist new file mode 100644 index 00000000..10a2ded8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/contents.plist @@ -0,0 +1,2092 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + AE + A_E_.glif + Aacute + A_acute.glif + Abreve + A_breve.glif + Abreveacute + A_breveacute.glif + Abrevedotbelow + A_brevedotbelow.glif + Abrevegrave + A_brevegrave.glif + Abrevehookabove + A_brevehookabove.glif + Abrevetilde + A_brevetilde.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflexacute + A_circumflexacute.glif + Acircumflexdotbelow + A_circumflexdotbelow.glif + Acircumflexgrave + A_circumflexgrave.glif + Acircumflexhookabove + A_circumflexhookabove.glif + Acircumflextilde + A_circumflextilde.glif + Adieresis + A_dieresis.glif + Adotaccent + A_dotaccent.glif + Adotbelow + A_dotbelow.glif + Agrave + A_grave.glif + Ahookabove + A_hookabove.glif + Amacron + A_macron.glif + Aogonek + A_ogonek.glif + Aring + A_ring.glif + Atilde + A_tilde.glif + B + B_.glif + Blinebelow + B_linebelow.glif + C + C_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + D + D_.glif + Dcaron + D_caron.glif + Dcircumflexbelow + D_circumflexbelow.glif + Dcroat + D_croat.glif + Ddotbelow + D_dotbelow.glif + Dlinebelow + D_linebelow.glif + E + E_.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Ecircumflexacute + E_circumflexacute.glif + Ecircumflexdotbelow + E_circumflexdotbelow.glif + Ecircumflexgrave + E_circumflexgrave.glif + Ecircumflexhookabove + E_circumflexhookabove.glif + Ecircumflextilde + E_circumflextilde.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Edotbelow + E_dotbelow.glif + Egrave + E_grave.glif + Ehookabove + E_hookabove.glif + Emacron + E_macron.glif + Eng + E_ng.glif + Eogonek + E_ogonek.glif + Eth + E_th.glif + Etilde + E_tilde.glif + Euro + E_uro.glif + F + F_.glif + G + G_.glif + Gbreve + G_breve.glif + Gcaron + G_caron.glif + Gcircumflex + G_circumflex.glif + Gcommaaccent + G_commaaccent.glif + Gdotaccent + G_dotaccent.glif + Gmacron + G_macron.glif + H + H_.glif + Hbar + H_bar.glif + Hbrevebelow + H_brevebelow.glif + Hcedilla + H_cedilla.glif + Hcircumflex + H_circumflex.glif + Hdotbelow + H_dotbelow.glif + I + I_.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icaron + I_caron.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idotaccent + I_dotaccent.glif + Idotbelow + I_dotbelow.glif + Igrave + I_grave.glif + Ihookabove + I_hookabove.glif + Imacron + I_macron.glif + Iogonek + I_ogonek.glif + Itilde + I_tilde.glif + J + J_.glif + Jcircumflex + J_circumflex.glif + K + K_.glif + Kcommaaccent + K_commaaccent.glif + Kdotbelow + K_dotbelow.glif + Klinebelow + K_linebelow.glif + L + L_.glif + L.dot + L_.dot.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcircumflexbelow + L_circumflexbelow.glif + Lcommaaccent + L_commaaccent.glif + Ldotbelow + L_dotbelow.glif + Llinebelow + L_linebelow.glif + Lmacrondotbelow + L_macrondotbelow.glif + Lslash + L_slash.glif + M + M_.glif + Macute + M_acute.glif + Mdotaccent + M_dotaccent.glif + Mdotbelow + M_dotbelow.glif + N + N_.glif + Nacute + N_acute.glif + Ncaron + N_caron.glif + Ncircumflexbelow + N_circumflexbelow.glif + Ncommaaccent + N_commaaccent.glif + Ndotaccent + N_dotaccent.glif + Ndotbelow + N_dotbelow.glif + Ngrave + N_grave.glif + Nlinebelow + N_linebelow.glif + Ntilde + N_tilde.glif + O + O_.glif + OE + O_E_.glif + Oacute + O_acute.glif + Obreve + O_breve.glif + Ocaron + O_caron.glif + Ocircumflex + O_circumflex.glif + Ocircumflexacute + O_circumflexacute.glif + Ocircumflexdotbelow + O_circumflexdotbelow.glif + Ocircumflexgrave + O_circumflexgrave.glif + Ocircumflexhookabove + O_circumflexhookabove.glif + Ocircumflextilde + O_circumflextilde.glif + Odieresis + O_dieresis.glif + Odotaccent + O_dotaccent.glif + Odotbelow + O_dotbelow.glif + Ograve + O_grave.glif + Ohookabove + O_hookabove.glif + Ohorn + O_horn.glif + Ohornacute + O_hornacute.glif + Ohorndotbelow + O_horndotbelow.glif + Ohorngrave + O_horngrave.glif + Ohornhookabove + O_hornhookabove.glif + Ohorntilde + O_horntilde.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Oogonek + O_ogonek.glif + Oslash + O_slash.glif + Otilde + O_tilde.glif + P + P_.glif + Q + Q_.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Rdotaccent + R_dotaccent.glif + Rdotbelow + R_dotbelow.glif + Rlinebelow + R_linebelow.glif + Rmacrondotbelow + R_macrondotbelow.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Sdotbelow + S_dotbelow.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tcircumflexbelow + T_circumflexbelow.glif + Tcommaaccent + T_commaaccent.glif + Tdotbelow + T_dotbelow.glif + Thorn + T_horn.glif + Tlinebelow + T_linebelow.glif + U + U_.glif + Uacute + U_acute.glif + Ubreve + U_breve.glif + Ucaron + U_caron.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresisacute + U_dieresisacute.glif + Udieresiscaron + U_dieresiscaron.glif + Udieresisgrave + U_dieresisgrave.glif + Udieresismacron + U_dieresismacron.glif + Udotbelow + U_dotbelow.glif + Ugrave + U_grave.glif + Uhookabove + U_hookabove.glif + Uhorn + U_horn.glif + Uhornacute + U_hornacute.glif + Uhorndotbelow + U_horndotbelow.glif + Uhorngrave + U_horngrave.glif + Uhornhookabove + U_hornhookabove.glif + Uhorntilde + U_horntilde.glif + Uhungarumlaut + U_hungarumlaut.glif + Umacron + U_macron.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Utilde + U_tilde.glif + V + V_.glif + Vdotbelow + V_dotbelow.glif + W + W_.glif + Wacute + W_acute.glif + Wcircumflex + W_circumflex.glif + Wdieresis + W_dieresis.glif + Wgrave + W_grave.glif + X + X_.glif + Xdieresis + X_dieresis.glif + Y + Y_.glif + Yacute + Y_acute.glif + Ycircumflex + Y_circumflex.glif + Ydieresis + Y_dieresis.glif + Ydotaccent + Y_dotaccent.glif + Ydotbelow + Y_dotbelow.glif + Ygrave + Y_grave.glif + Yhookabove + Y_hookabove.glif + Ymacron + Y_macron.glif + Ytilde + Y_tilde.glif + Z + Z_.glif + Zacute + Z_acute.glif + Zcaron + Z_caron.glif + Zcircumflex + Z_circumflex.glif + Zdotaccent + Z_dotaccent.glif + Zdotbelow + Z_dotbelow.glif + Zlinebelow + Z_linebelow.glif + a + a.glif + aacute + aacute.glif + abreve + abreve.glif + abreveacute + abreveacute.glif + abrevedotbelow + abrevedotbelow.glif + abrevegrave + abrevegrave.glif + abrevehookabove + abrevehookabove.glif + abrevetilde + abrevetilde.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflexacute + acircumflexacute.glif + acircumflexdotbelow + acircumflexdotbelow.glif + acircumflexgrave + acircumflexgrave.glif + acircumflexhookabove + acircumflexhookabove.glif + acircumflextilde + acircumflextilde.glif + acute + acute.glif + acutecmb + acutecmb.glif + acutecmb.cap + acutecmb.cap.glif + adieresis + adieresis.glif + adotaccent + adotaccent.glif + adotbelow + adotbelow.glif + ae + ae.glif + agrave + agrave.glif + ahookabove + ahookabove.glif + amacron + amacron.glif + ampersand + ampersand.glif + ampersand_ampersand.liga + ampersand_ampersand.liga.glif + aogonek + aogonek.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + asciicircum + asciicircum.glif + asciicircum_equal.liga + asciicircum_equal.liga.glif + asciitilde + asciitilde.glif + asciitilde_asciitilde.liga + asciitilde_asciitilde.liga.glif + asciitilde_asciitilde_greater + asciitilde_asciitilde_greater.glif + asciitilde_at.liga + asciitilde_at.liga.glif + asciitilde_greater.liga + asciitilde_greater.liga.glif + asciitilde_hyphen.liga + asciitilde_hyphen.liga.glif + asterisk + asterisk.glif + asterisk_asterisk.liga + asterisk_asterisk.liga.glif + asterisk_asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga.glif + asterisk_greater.liga + asterisk_greater.liga.glif + asterisk_slash.liga + asterisk_slash.liga.glif + at + at.glif + atilde + atilde.glif + b + b.glif + backslash + backslash.glif + backslash_slash.liga + backslash_slash.liga.glif + bahtthai + bahtthai.glif + bar + bar.glif + bar_bar.liga + bar_bar.liga.glif + bar_bar_bar.liga + bar_bar_bar.liga.glif + bar_bar_bar_greater.liga + bar_bar_bar_greater.liga.glif + bar_bar_equal.liga + bar_bar_equal.liga.glif + bar_bar_equal.start + bar_bar_equal.start.glif + bar_bar_greater.liga + bar_bar_greater.liga.glif + bar_bar_hyphen.liga + bar_bar_hyphen.liga.glif + bar_bar_hyphen.start + bar_bar_hyphen.start.glif + bar_braceright.liga + bar_braceright.liga.glif + bar_bracketright.liga + bar_bracketright.liga.glif + bar_equal.liga + bar_equal.liga.glif + bar_equal.start + bar_equal.start.glif + bar_greater.liga + bar_greater.liga.glif + bar_hyphen.liga + bar_hyphen.liga.glif + bar_hyphen.start + bar_hyphen.start.glif + blinebelow + blinebelow.glif + braceleft + braceleft.glif + braceleft_bar.liga + braceleft_bar.liga.glif + braceright + braceright.glif + bracketleft + bracketleft.glif + bracketleft_bar.liga + bracketleft_bar.liga.glif + bracketright + bracketright.glif + bracketright_numbersign.liga + bracketright_numbersign.liga.glif + breve + breve.glif + breveacute + breveacute.glif + breveacute.cap + breveacute.cap.glif + brevebelowcmb + brevebelowcmb.glif + brevecmb + brevecmb.glif + brevecmb.cap + brevecmb.cap.glif + brevegrave + brevegrave.glif + brevegrave.cap + brevegrave.cap.glif + brevehook + brevehook.glif + brevehook.cap + brevehook.cap.glif + brevetilde + brevetilde.glif + brevetilde.cap + brevetilde.cap.glif + bullet + bullet.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caroncmb + caroncmb.glif + caroncmb.cap + caroncmb.cap.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cedillacmb + cedillacmb.glif + cent + cent.glif + circumflex + circumflex.glif + circumflexacute + circumflexacute.glif + circumflexacute.cap + circumflexacute.cap.glif + circumflexbelowcmb + circumflexbelowcmb.glif + circumflexcmb + circumflexcmb.glif + circumflexcmb.cap + circumflexcmb.cap.glif + circumflexgrave + circumflexgrave.glif + circumflexgrave.cap + circumflexgrave.cap.glif + circumflexhook + circumflexhook.glif + circumflexhook.cap + circumflexhook.cap.glif + circumflextilde + circumflextilde.glif + circumflextilde.cap + circumflextilde.cap.glif + colon + colon.glif + colon.fig + colon.fig.glif + colon_colon.liga + colon_colon.liga.glif + colon_colon_colon.liga + colon_colon_colon.liga.glif + colon_colon_equal.liga + colon_colon_equal.liga.glif + colon_equal.liga + colon_equal.liga.glif + colon_greater.liga + colon_greater.liga.glif + colon_less.liga + colon_less.liga.glif + comma + comma.glif + commaaboverightcmb + commaaboverightcmb.glif + commaturnedabovecmb + commaturnedabovecmb.glif + commaturnedmod + commaturnedmod.glif + copyright + copyright.glif + d + d.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + darkshade + darkshade.glif + dbldnhorzbxd + dbldnhorzbxd.glif + dbldnleftbxd + dbldnleftbxd.glif + dbldnrightbxd + dbldnrightbxd.glif + dblhorzbxd + dblhorzbxd.glif + dblprimemod + dblprimemod.glif + dbluphorzbxd + dbluphorzbxd.glif + dblupleftbxd + dblupleftbxd.glif + dbluprightbxd + dbluprightbxd.glif + dblvertbxd + dblvertbxd.glif + dblverthorzbxd + dblverthorzbxd.glif + dblvertleftbxd + dblvertleftbxd.glif + dblvertrightbxd + dblvertrightbxd.glif + dcaron + dcaron.glif + dcircumflexbelow + dcircumflexbelow.glif + dcroat + dcroat.glif + ddotbelow + ddotbelow.glif + degree + degree.glif + dieresis + dieresis.glif + dieresisacute + dieresisacute.glif + dieresisacute.cap + dieresisacute.cap.glif + dieresisbelowcmb + dieresisbelowcmb.glif + dieresiscaron + dieresiscaron.glif + dieresiscaron.cap + dieresiscaron.cap.glif + dieresiscmb + dieresiscmb.glif + dieresiscmb.cap + dieresiscmb.cap.glif + dieresisgrave + dieresisgrave.glif + dieresisgrave.cap + dieresisgrave.cap.glif + dieresismacron + dieresismacron.glif + dieresismacron.cap + dieresismacron.cap.glif + divide + divide.glif + dlinebelow + dlinebelow.glif + dndblhorzsngbxd + dndblhorzsngbxd.glif + dndblleftsngbxd + dndblleftsngbxd.glif + dndblrightsngbxd + dndblrightsngbxd.glif + dneighthblock + dneighthblock.glif + dnfiveeighthsblock + dnfiveeighthsblock.glif + dnhalfblock + dnhalfblock.glif + dnheavyhorzlightbxd + dnheavyhorzlightbxd.glif + dnheavyleftlightbxd + dnheavyleftlightbxd.glif + dnheavyleftuplightbxd + dnheavyleftuplightbxd.glif + dnheavyrightlightbxd + dnheavyrightlightbxd.glif + dnheavyrightuplightbxd + dnheavyrightuplightbxd.glif + dnheavyuphorzlightbxd + dnheavyuphorzlightbxd.glif + dnleftquadrant + dnleftquadrant.glif + dnlighthorzheavybxd + dnlighthorzheavybxd.glif + dnlightleftheavybxd + dnlightleftheavybxd.glif + dnlightleftupheavybxd + dnlightleftupheavybxd.glif + dnlightrightheavybxd + dnlightrightheavybxd.glif + dnlightrightupheavybxd + dnlightrightupheavybxd.glif + dnlightuphorzheavybxd + dnlightuphorzheavybxd.glif + dnquarterblock + dnquarterblock.glif + dnrightquadrant + dnrightquadrant.glif + dnseveneighthsblock + dnseveneighthsblock.glif + dnsnghorzdblbxd + dnsnghorzdblbxd.glif + dnsngleftdblbxd + dnsngleftdblbxd.glif + dnsngrightdblbxd + dnsngrightdblbxd.glif + dnthreeeighthsblock + dnthreeeighthsblock.glif + dnthreequartersblock + dnthreequartersblock.glif + dollar + dollar.glif + dollar_greater.liga + dollar_greater.liga.glif + dong + dong.glif + dotaccent + dotaccent.glif + dotaccentcmb + dotaccentcmb.glif + dotaccentcmb.cap + dotaccentcmb.cap.glif + dotbelowcmb + dotbelowcmb.glif + dotlessi + dotlessi.glif + dotlessj + dotlessj.glif + e + e.glif + eacute + eacute.glif + ebreve + ebreve.glif + ecaron + ecaron.glif + ecircumflex + ecircumflex.glif + ecircumflexacute + ecircumflexacute.glif + ecircumflexdotbelow + ecircumflexdotbelow.glif + ecircumflexgrave + ecircumflexgrave.glif + ecircumflexhookabove + ecircumflexhookabove.glif + ecircumflextilde + ecircumflextilde.glif + edieresis + edieresis.glif + edotaccent + edotaccent.glif + edotbelow + edotbelow.glif + egrave + egrave.glif + ehookabove + ehookabove.glif + eight + eight.glif + eight.den + eight.den.glif + eight.inf + eight.inf.glif + eight.num + eight.num.glif + eight.sup + eight.sup.glif + ellipsis + ellipsis.glif + emacron + emacron.glif + emdash + emdash.glif + endash + endash.glif + eng + eng.glif + eogonek + eogonek.glif + equal + equal.glif + equal.end + equal.end.glif + equal.middle + equal.middle.glif + equal.start + equal.start.glif + equal_asciitilde.liga + equal_asciitilde.liga.glif + equal_bar.end + equal_bar.end.glif + equal_bar.liga + equal_bar.liga.glif + equal_bar_bar.end + equal_bar_bar.end.glif + equal_bar_bar.liga + equal_bar_bar.liga.glif + equal_bar_bar_equal.middle + equal_bar_bar_equal.middle.glif + equal_bar_equal.middle + equal_bar_equal.middle.glif + equal_colon_equal.middle + equal_colon_equal.middle.glif + equal_equal.liga + equal_equal.liga.glif + equal_equal_equal.liga + equal_equal_equal.liga.glif + equal_exclam_equal.middle + equal_exclam_equal.middle.glif + equal_greater.end + equal_greater.end.glif + equal_greater.liga + equal_greater.liga.glif + equal_greater_equal.middle + equal_greater_equal.middle.glif + equal_greater_greater.end + equal_greater_greater.end.glif + equal_greater_greater.liga + equal_greater_greater.liga.glif + equal_greater_greater_equal.m + equal_greater_greater_equal.m.glif + equal_less.end + equal_less.end.glif + equal_less.liga + equal_less.liga.glif + equal_less_equal.middle + equal_less_equal.middle.glif + equal_less_less.end + equal_less_less.end.glif + equal_less_less.liga + equal_less_less.liga.glif + equal_less_less_equal.middle + equal_less_less_equal.middle.glif + equal_slash.end + equal_slash.end.glif + equal_slash.liga + equal_slash.liga.glif + equal_slash_equal.middle + equal_slash_equal.middle.glif + equal_slash_slash.end + equal_slash_slash.end.glif + equal_slash_slash.liga + equal_slash_slash.liga.glif + equal_slash_slash_equal.middle + equal_slash_slash_equal.middle.glif + eth + eth.glif + etilde + etilde.glif + exclam + exclam.glif + exclam_asciitilde.liga + exclam_asciitilde.liga.glif + exclam_equal.liga + exclam_equal.liga.glif + exclam_equal_equal.liga + exclam_equal_equal.liga.glif + exclam_exclam.liga + exclam_exclam.liga.glif + exclam_exclam_period.liga + exclam_exclam_period.liga.glif + exclamdown + exclamdown.glif + f + f.glif + five + five.glif + five.den + five.den.glif + five.inf + five.inf.glif + five.num + five.num.glif + five.sup + five.sup.glif + fiveeighths + fiveeighths.glif + fivesixths + fivesixths.glif + four + four.glif + four.den + four.den.glif + four.inf + four.inf.glif + four.num + four.num.glif + four.sup + four.sup.glif + fourfifths + fourfifths.glif + fracbar + fracbar.glif + fraction + fraction.glif + fullblock + fullblock.glif + g + g.glif + gbreve + gbreve.glif + gcaron + gcaron.glif + gcircumflex + gcircumflex.glif + gcommaaccent + gcommaaccent.glif + gdotaccent + gdotaccent.glif + germandbls + germandbls.glif + gmacron + gmacron.glif + grave + grave.glif + gravecmb + gravecmb.glif + gravecmb.cap + gravecmb.cap.glif + greater + greater.glif + greater_colon.liga + greater_colon.liga.glif + greater_equal + greater_equal.glif + greater_equal.liga + greater_equal.liga.glif + greater_equal.start + greater_equal.start.glif + greater_equal_greater.liga + greater_equal_greater.liga.glif + greater_greater.liga + greater_greater.liga.glif + greater_greater_equal.liga + greater_greater_equal.liga.glif + greater_greater_equal.start + greater_greater_equal.start.glif + greater_greater_greater.liga + greater_greater_greater.liga.glif + greater_greater_hyphen.liga + greater_greater_hyphen.liga.glif + greater_greater_hyphen.start + greater_greater_hyphen.start.glif + greater_hyphen.liga + greater_hyphen.liga.glif + greater_hyphen.start + greater_hyphen.start.glif + greater_hyphen_greater.liga + greater_hyphen_greater.liga.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetright + guillemetright.glif + guilsinglleft + guilsinglleft.glif + guilsinglright + guilsinglright.glif + h + h.glif + hbar + hbar.glif + hbrevebelow + hbrevebelow.glif + hcedilla + hcedilla.glif + hcircumflex + hcircumflex.glif + hdotbelow + hdotbelow.glif + heavydbldashhorzbxd + heavydbldashhorzbxd.glif + heavydbldashvertbxd + heavydbldashvertbxd.glif + heavydnbxd + heavydnbxd.glif + heavydnhorzbxd + heavydnhorzbxd.glif + heavydnleftbxd + heavydnleftbxd.glif + heavydnrightbxd + heavydnrightbxd.glif + heavyhorzbxd + heavyhorzbxd.glif + heavyleftbxd + heavyleftbxd.glif + heavyleftlightrightbxd + heavyleftlightrightbxd.glif + heavyquaddashhorzbxd + heavyquaddashhorzbxd.glif + heavyquaddashvertbxd + heavyquaddashvertbxd.glif + heavyrightbxd + heavyrightbxd.glif + heavytrpldashhorzbxd + heavytrpldashhorzbxd.glif + heavytrpldashvertbxd + heavytrpldashvertbxd.glif + heavyupbxd + heavyupbxd.glif + heavyuphorzbxd + heavyuphorzbxd.glif + heavyupleftbxd + heavyupleftbxd.glif + heavyuplightdnbxd + heavyuplightdnbxd.glif + heavyuprightbxd + heavyuprightbxd.glif + heavyvertbxd + heavyvertbxd.glif + heavyverthorzbxd + heavyverthorzbxd.glif + heavyvertleftbxd + heavyvertleftbxd.glif + heavyvertrightbxd + heavyvertrightbxd.glif + hlinebelow + hlinebelow.glif + hookcmb + hookcmb.glif + hookcmb.cap + hookcmb.cap.glif + horizontalbar + horizontalbar.glif + hungarumlaut + hungarumlaut.glif + hungarumlautcmb + hungarumlautcmb.glif + hungarumlautcmb.cap + hungarumlautcmb.cap.glif + hyphen + hyphen.glif + hyphen.end + hyphen.end.glif + hyphen.middle + hyphen.middle.glif + hyphen.start + hyphen.start.glif + hyphen_asciitilde.liga + hyphen_asciitilde.liga.glif + hyphen_bar.end + hyphen_bar.end.glif + hyphen_bar.liga + hyphen_bar.liga.glif + hyphen_bar_bar.end + hyphen_bar_bar.end.glif + hyphen_bar_bar.liga + hyphen_bar_bar.liga.glif + hyphen_bar_bar_hyphen.middle + hyphen_bar_bar_hyphen.middle.glif + hyphen_bar_hyphen.middle + hyphen_bar_hyphen.middle.glif + hyphen_greater.end + hyphen_greater.end.glif + hyphen_greater.liga + hyphen_greater.liga.glif + hyphen_greater_greater.end + hyphen_greater_greater.end.glif + hyphen_greater_greater.liga + hyphen_greater_greater.liga.glif + hyphen_greater_greater_hyphen.m + hyphen_greater_greater_hyphen.m.glif + hyphen_greater_hyphen.middle + hyphen_greater_hyphen.middle.glif + hyphen_hyphen.liga + hyphen_hyphen.liga.glif + hyphen_hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga.glif + hyphen_less.end + hyphen_less.end.glif + hyphen_less.liga + hyphen_less.liga.glif + hyphen_less_hyphen.middle + hyphen_less_hyphen.middle.glif + hyphen_less_less.end + hyphen_less_less.end.glif + hyphen_less_less.liga + hyphen_less_less.liga.glif + hyphen_less_less_hyphen.middle + hyphen_less_less_hyphen.middle.glif + i + i.glif + iacute + iacute.glif + ibreve + ibreve.glif + icaron + icaron.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idotaccent + idotaccent.glif + idotbelow + idotbelow.glif + igrave + igrave.glif + ihookabove + ihookabove.glif + imacron + imacron.glif + iogonek + iogonek.glif + itilde + itilde.glif + j + j.glif + jcaron + jcaron.glif + jcircumflex + jcircumflex.glif + k + k.glif + kcommaaccent + kcommaaccent.glif + kdotbelow + kdotbelow.glif + klinebelow + klinebelow.glif + l + l.glif + l.dot + l.dot.glif + lacute + lacute.glif + lcaron + lcaron.glif + lcircumflexbelow + lcircumflexbelow.glif + lcommaaccent + lcommaaccent.glif + ldotbelow + ldotbelow.glif + leftdnheavyrightuplightbxd + leftdnheavyrightuplightbxd.glif + lefteighthblock + lefteighthblock.glif + leftfiveeighthsblock + leftfiveeighthsblock.glif + lefthalfblock + lefthalfblock.glif + leftheavyrightdnlightbxd + leftheavyrightdnlightbxd.glif + leftheavyrightuplightbxd + leftheavyrightuplightbxd.glif + leftheavyrightvertlightbxd + leftheavyrightvertlightbxd.glif + leftlightrightdnheavybxd + leftlightrightdnheavybxd.glif + leftlightrightupheavybxd + leftlightrightupheavybxd.glif + leftlightrightvertheavybxd + leftlightrightvertheavybxd.glif + leftquarterblock + leftquarterblock.glif + leftseveneighthsblock + leftseveneighthsblock.glif + leftthreeeighthsblock + leftthreeeighthsblock.glif + leftthreequartersblock + leftthreequartersblock.glif + leftupheavyrightdnlightbxd + leftupheavyrightdnlightbxd.glif + less + less.glif + less_asciitilde.liga + less_asciitilde.liga.glif + less_asciitilde_asciitilde.liga + less_asciitilde_asciitilde.liga.glif + less_asciitilde_greater.liga + less_asciitilde_greater.liga.glif + less_asterisk.liga + less_asterisk.liga.glif + less_asterisk_greater.liga + less_asterisk_greater.liga.glif + less_bar.liga + less_bar.liga.glif + less_bar_bar.liga + less_bar_bar.liga.glif + less_bar_bar_bar.liga + less_bar_bar_bar.liga.glif + less_bar_greater.liga + less_bar_greater.liga.glif + less_colon.liga + less_colon.liga.glif + less_dollar.liga + less_dollar.liga.glif + less_dollar_greater.liga + less_dollar_greater.liga.glif + less_equal + less_equal.glif + less_equal.liga + less_equal.liga.glif + less_equal.start + less_equal.start.glif + less_equal_greater.liga + less_equal_greater.liga.glif + less_equal_less.liga + less_equal_less.liga.glif + less_exclam_hyphen_hyphen.liga + less_exclam_hyphen_hyphen.liga.glif + less_greater.liga + less_greater.liga.glif + less_hyphen.liga + less_hyphen.liga.glif + less_hyphen.start + less_hyphen.start.glif + less_hyphen_greater.liga + less_hyphen_greater.liga.glif + less_hyphen_less.liga + less_hyphen_less.liga.glif + less_less.liga + less_less.liga.glif + less_less_equal.liga + less_less_equal.liga.glif + less_less_equal.start + less_less_equal.start.glif + less_less_hyphen.liga + less_less_hyphen.liga.glif + less_less_hyphen.start + less_less_hyphen.start.glif + less_less_less.liga + less_less_less.liga.glif + less_plus.liga + less_plus.liga.glif + less_plus_greater.liga + less_plus_greater.liga.glif + less_slash.liga + less_slash.liga.glif + less_slash_greater.liga + less_slash_greater.liga.glif + lessequal + lessequal.glif + lightarcdnleftbxd + lightarcdnleftbxd.glif + lightarcdnrightbxd + lightarcdnrightbxd.glif + lightarcupleftbxd + lightarcupleftbxd.glif + lightarcuprightbxd + lightarcuprightbxd.glif + lightdbldashhorzbxd + lightdbldashhorzbxd.glif + lightdbldashvertbxd + lightdbldashvertbxd.glif + lightdiagcrossbxd + lightdiagcrossbxd.glif + lightdiagupleftdnrightbxd + lightdiagupleftdnrightbxd.glif + lightdiaguprightdnleftbxd + lightdiaguprightdnleftbxd.glif + lightdnbxd + lightdnbxd.glif + lightdnhorzbxd + lightdnhorzbxd.glif + lightdnleftbxd + lightdnleftbxd.glif + lightdnrightbxd + lightdnrightbxd.glif + lighthorzbxd + lighthorzbxd.glif + lightleftbxd + lightleftbxd.glif + lightleftheavyrightbxd + lightleftheavyrightbxd.glif + lightquaddashhorzbxd + lightquaddashhorzbxd.glif + lightquaddashvertbxd + lightquaddashvertbxd.glif + lightrightbxd + lightrightbxd.glif + lightshade + lightshade.glif + lighttrpldashhorzbxd + lighttrpldashhorzbxd.glif + lighttrpldashvertbxd + lighttrpldashvertbxd.glif + lightupbxd + lightupbxd.glif + lightupheavydnbxd + lightupheavydnbxd.glif + lightuphorzbxd + lightuphorzbxd.glif + lightupleftbxd + lightupleftbxd.glif + lightuprightbxd + lightuprightbxd.glif + lightvertbxd + lightvertbxd.glif + lightverthorzbxd + lightverthorzbxd.glif + lightvertleftbxd + lightvertleftbxd.glif + lightvertrightbxd + lightvertrightbxd.glif + ligspacer + ligspacer.glif + llinebelow + llinebelow.glif + lmacrondotbelow + lmacrondotbelow.glif + lslash + lslash.glif + m + m.glif + macron + macron.glif + macronbelowcmb + macronbelowcmb.glif + macroncmb + macroncmb.glif + macroncmb.cap + macroncmb.cap.glif + macronlowmod + macronlowmod.glif + macute + macute.glif + mdotaccent + mdotaccent.glif + mdotbelow + mdotbelow.glif + mediumshade + mediumshade.glif + middotcat + middotcat.glif + middotcat.cap + middotcat.cap.glif + minus + minus.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + naira + naira.glif + ncaron + ncaron.glif + ncircumflexbelow + ncircumflexbelow.glif + ncommaaccent + ncommaaccent.glif + ndotaccent + ndotaccent.glif + ndotbelow + ndotbelow.glif + ngrave + ngrave.glif + nine + nine.glif + nine.den + nine.den.glif + nine.inf + nine.inf.glif + nine.num + nine.num.glif + nine.sup + nine.sup.glif + nlinebelow + nlinebelow.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numbersign.end + numbersign.end.glif + numbersign.middle + numbersign.middle.glif + numbersign.start + numbersign.start.glif + numbersign_braceleft.liga + numbersign_braceleft.liga.glif + numbersign_bracketleft.liga + numbersign_bracketleft.liga.glif + numbersign_colon.liga + numbersign_colon.liga.glif + numbersign_equal.liga + numbersign_equal.liga.glif + numbersign_exclam.liga + numbersign_exclam.liga.glif + numbersign_parenleft.liga + numbersign_parenleft.liga.glif + numbersign_question.liga + numbersign_question.liga.glif + numbersign_underscore.liga + numbersign_underscore.liga.glif + numbersign_underscore_parenleft + numbersign_underscore_parenleft.glif + o + o.glif + oacute + oacute.glif + obreve + obreve.glif + ocaron + ocaron.glif + ocircumflex + ocircumflex.glif + ocircumflexacute + ocircumflexacute.glif + ocircumflexdotbelow + ocircumflexdotbelow.glif + ocircumflexgrave + ocircumflexgrave.glif + ocircumflexhookabove + ocircumflexhookabove.glif + ocircumflextilde + ocircumflextilde.glif + odieresis + odieresis.glif + odotaccent + odotaccent.glif + odotbelow + odotbelow.glif + oe + oe.glif + ogonek + ogonek.glif + ogonekcmb + ogonekcmb.glif + ograve + ograve.glif + ohookabove + ohookabove.glif + ohorn + ohorn.glif + ohornacute + ohornacute.glif + ohorndotbelow + ohorndotbelow.glif + ohorngrave + ohorngrave.glif + ohornhookabove + ohornhookabove.glif + ohorntilde + ohorntilde.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + one + one.glif + one.den + one.den.glif + one.inf + one.inf.glif + one.num + one.num.glif + one.sup + one.sup.glif + oneeighth + oneeighth.glif + onefifth + onefifth.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesixth + onesixth.glif + onethird + onethird.glif + oogonek + oogonek.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + otilde + otilde.glif + p + p.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenright + parenright.glif + percent + percent.glif + percent_percent.liga + percent_percent.liga.glif + period + period.glif + period_equal.liga + period_equal.liga.glif + period_hyphen.liga + period_hyphen.liga.glif + period_period.liga + period_period.liga.glif + period_period_equal.liga + period_period_equal.liga.glif + period_period_less.liga + period_period_less.liga.glif + period_period_period.liga + period_period_period.liga.glif + period_question.liga + period_question.liga.glif + periodcentered + periodcentered.glif + peso + peso.glif + plus + plus.glif + plus_greater.liga + plus_greater.liga.glif + plus_plus.liga + plus_plus.liga.glif + plus_plus_plus.liga + plus_plus_plus.liga.glif + plusminus + plusminus.glif + primemod + primemod.glif + published + published.glif + q + q.glif + question + question.glif + question_colon.liga + question_colon.liga.glif + question_equal.liga + question_equal.liga.glif + question_period.liga + question_period.liga.glif + question_question.liga + question_question.liga.glif + questiondown + questiondown.glif + quotedbl + quotedbl.glif + quotedblbase + quotedblbase.glif + quotedblleft + quotedblleft.glif + quotedblright + quotedblright.glif + quoteleft + quoteleft.glif + quoteright + quoteright.glif + quotesinglbase + quotesinglbase.glif + quotesingle + quotesingle.glif + r + r.glif + racute + racute.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + rdotaccent + rdotaccent.glif + rdotbelow + rdotbelow.glif + registered + registered.glif + rightdnheavyleftuplightbxd + rightdnheavyleftuplightbxd.glif + righteighthblock + righteighthblock.glif + righthalfblock + righthalfblock.glif + rightheavyleftdnlightbxd + rightheavyleftdnlightbxd.glif + rightheavyleftuplightbxd + rightheavyleftuplightbxd.glif + rightheavyleftvertlightbxd + rightheavyleftvertlightbxd.glif + rightlightleftdnheavybxd + rightlightleftdnheavybxd.glif + rightlightleftupheavybxd + rightlightleftupheavybxd.glif + rightlightleftvertheavybxd + rightlightleftvertheavybxd.glif + rightupheavyleftdnlightbxd + rightupheavyleftdnlightbxd.glif + ring + ring.glif + ringcmb + ringcmb.glif + ringcmb.cap + ringcmb.cap.glif + ringhalfleft + ringhalfleft.glif + ringhalfright + ringhalfright.glif + rlinebelow + rlinebelow.glif + rmacrondotbelow + rmacrondotbelow.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwa + schwa.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + sdotbelow + sdotbelow.glif + section + section.glif + semicolon + semicolon.glif + semicolon_semicolon.liga + semicolon_semicolon.liga.glif + servicemark + servicemark.glif + seven + seven.glif + seven.den + seven.den.glif + seven.inf + seven.inf.glif + seven.num + seven.num.glif + seven.sup + seven.sup.glif + seveneighths + seveneighths.glif + six + six.glif + six.den + six.den.glif + six.inf + six.inf.glif + six.num + six.num.glif + six.sup + six.sup.glif + slash + slash.glif + slash_asterisk.liga + slash_asterisk.liga.glif + slash_backslash.liga + slash_backslash.liga.glif + slash_equal.liga + slash_equal.liga.glif + slash_equal.start + slash_equal.start.glif + slash_greater.liga + slash_greater.liga.glif + slash_slash.liga + slash_slash.liga.glif + slash_slash_equal.liga + slash_slash_equal.liga.glif + slash_slash_equal.start + slash_slash_equal.start.glif + slash_slash_slash.liga + slash_slash_slash.liga.glif + space + space.glif + sterling + sterling.glif + t + t.glif + tbar + tbar.glif + tcaron + tcaron.glif + tcedilla + tcedilla.glif + tcircumflexbelow + tcircumflexbelow.glif + tcommaaccent + tcommaaccent.glif + tdotbelow + tdotbelow.glif + thorn + thorn.glif + three + three.glif + three.den + three.den.glif + three.inf + three.inf.glif + three.num + three.num.glif + three.sup + three.sup.glif + threeeighths + threeeighths.glif + threefifths + threefifths.glif + threequarters + threequarters.glif + tilde + tilde.glif + tildecmb + tildecmb.glif + tildecmb.cap + tildecmb.cap.glif + tlinebelow + tlinebelow.glif + trademark + trademark.glif + two + two.glif + two.den + two.den.glif + two.inf + two.inf.glif + two.num + two.num.glif + two.sup + two.sup.glif + twodotleader + twodotleader.glif + twofifths + twofifths.glif + twothirds + twothirds.glif + u + u.glif + uacute + uacute.glif + ubreve + ubreve.glif + ucaron + ucaron.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresisacute + udieresisacute.glif + udieresiscaron + udieresiscaron.glif + udieresisgrave + udieresisgrave.glif + udieresismacron + udieresismacron.glif + udotbelow + udotbelow.glif + ugrave + ugrave.glif + uhookabove + uhookabove.glif + uhorn + uhorn.glif + uhornacute + uhornacute.glif + uhorndotbelow + uhorndotbelow.glif + uhorngrave + uhorngrave.glif + uhornhookabove + uhornhookabove.glif + uhorntilde + uhorntilde.glif + uhungarumlaut + uhungarumlaut.glif + umacron + umacron.glif + underscore + underscore.glif + underscore.end + underscore.end.glif + underscore.middle + underscore.middle.glif + underscore.start + underscore.start.glif + underscore_bar_underscore.m + underscore_bar_underscore.m.glif + uni00A0 + uni00A_0.glif + uni0326 + uni0326.glif + uni1E9E + uni1E_9E_.glif + uni2011 + uni2011.glif + uni20B9 + uni20B_9.glif + uni20BA + uni20B_A_.glif + uni20BD + uni20B_D_.glif + uni2610 + uni2610.glif + uni2611 + uni2611.glif + uni2612 + uni2612.glif + uni2713 + uni2713.glif + uniA788 + uniA_788.glif + uniE0A0 + uniE_0A_0.glif + uniE0A1 + uniE_0A_1.glif + uniE0A2 + uniE_0A_2.glif + uniE0B0 + uniE_0B_0.glif + uniE0B1 + uniE_0B_1.glif + uniE0B2 + uniE_0B_2.glif + uniE0B3 + uniE_0B_3.glif + uogonek + uogonek.glif + updblhorzsngbxd + updblhorzsngbxd.glif + updblleftsngbxd + updblleftsngbxd.glif + updblrightsngbxd + updblrightsngbxd.glif + upeighthblock + upeighthblock.glif + uphalfblock + uphalfblock.glif + upheavydnhorzlightbxd + upheavydnhorzlightbxd.glif + upheavyhorzlightbxd + upheavyhorzlightbxd.glif + upheavyleftdnlightbxd + upheavyleftdnlightbxd.glif + upheavyleftlightbxd + upheavyleftlightbxd.glif + upheavyrightdnlightbxd + upheavyrightdnlightbxd.glif + upheavyrightlightbxd + upheavyrightlightbxd.glif + upleftdnleftdnrightquadrant + upleftdnleftdnrightquadrant.glif + upleftdnrightquadrant + upleftdnrightquadrant.glif + upleftquadrant + upleftquadrant.glif + upleftuprightdnleftquadrant + upleftuprightdnleftquadrant.glif + upleftuprightdnrightquadrant + upleftuprightdnrightquadrant.glif + uplightdnhorzheavybxd + uplightdnhorzheavybxd.glif + uplighthorzheavybxd + uplighthorzheavybxd.glif + uplightleftdnheavybxd + uplightleftdnheavybxd.glif + uplightleftheavybxd + uplightleftheavybxd.glif + uplightrightdnheavybxd + uplightrightdnheavybxd.glif + uplightrightheavybxd + uplightrightheavybxd.glif + uprightdnleftdnrightquadrant + uprightdnleftdnrightquadrant.glif + uprightdnleftquadrant + uprightdnleftquadrant.glif + uprightquadrant + uprightquadrant.glif + upsnghorzdblbxd + upsnghorzdblbxd.glif + upsngleftdblbxd + upsngleftdblbxd.glif + upsngrightdblbxd + upsngrightdblbxd.glif + uring + uring.glif + utilde + utilde.glif + v + v.glif + vdotbelow + vdotbelow.glif + vertdblhorzsngbxd + vertdblhorzsngbxd.glif + vertdblleftsngbxd + vertdblleftsngbxd.glif + vertdblrightsngbxd + vertdblrightsngbxd.glif + vertheavyhorzlightbxd + vertheavyhorzlightbxd.glif + vertheavyleftlightbxd + vertheavyleftlightbxd.glif + vertheavyrightlightbxd + vertheavyrightlightbxd.glif + verticallinelowmod + verticallinelowmod.glif + verticallinemod + verticallinemod.glif + vertlighthorzheavybxd + vertlighthorzheavybxd.glif + vertlightleftheavybxd + vertlightleftheavybxd.glif + vertlightrightheavybxd + vertlightrightheavybxd.glif + vertsnghorzdblbxd + vertsnghorzdblbxd.glif + vertsngleftdblbxd + vertsngleftdblbxd.glif + vertsngrightdblbxd + vertsngrightdblbxd.glif + w + w.glif + w_w_w.liga + w_w_w.liga.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wgrave + wgrave.glif + won + won.glif + x + x.glif + xdieresis + xdieresis.glif + y + y.glif + yacute + yacute.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + ydotaccent + ydotaccent.glif + ydotbelow + ydotbelow.glif + yen + yen.glif + ygrave + ygrave.glif + yhookabove + yhookabove.glif + ymacron + ymacron.glif + ytilde + ytilde.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zcircumflex + zcircumflex.glif + zdotaccent + zdotaccent.glif + zdotbelow + zdotbelow.glif + zero + zero.glif + zero.den + zero.den.glif + zero.inf + zero.inf.glif + zero.num + zero.num.glif + zero.sup + zero.sup.glif + zlinebelow + zlinebelow.glif + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/copyright.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/copyright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/copyright.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/copyright.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/d.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/d.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/d.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/d.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dagger.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dagger.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dagger.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dagger.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/daggerdbl.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/daggerdbl.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/daggerdbl.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/daggerdbl.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/darkshade.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/darkshade.glif new file mode 100644 index 00000000..e6ce8215 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/darkshade.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dbldnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dbldnhorzbxd.glif new file mode 100644 index 00000000..99f4a99d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dbldnhorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dbldnleftbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dbldnleftbxd.glif new file mode 100644 index 00000000..8f26cb67 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dbldnleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dbldnrightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dbldnrightbxd.glif new file mode 100644 index 00000000..8f085b5a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dbldnrightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dblhorzbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dblhorzbxd.glif new file mode 100644 index 00000000..6403a136 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dblhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dblprimemod.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dblprimemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dblprimemod.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dblprimemod.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dbluphorzbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dbluphorzbxd.glif new file mode 100644 index 00000000..ed4be696 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dbluphorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dblupleftbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dblupleftbxd.glif new file mode 100644 index 00000000..bc272aa1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dblupleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dbluprightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dbluprightbxd.glif new file mode 100644 index 00000000..6c29c7f6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dbluprightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dblvertbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dblvertbxd.glif new file mode 100644 index 00000000..2ff1f1fa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dblvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dblverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dblverthorzbxd.glif new file mode 100644 index 00000000..819e1ac3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dblverthorzbxd.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dblvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dblvertleftbxd.glif new file mode 100644 index 00000000..36d4303e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dblvertleftbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dblvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dblvertrightbxd.glif new file mode 100644 index 00000000..48d9a09b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dblvertrightbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dcaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..83d141f3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dcircumflexbelow.glif new file mode 100644 index 00000000..477cfcd7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dcroat.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..c86befb8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dcroat.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ddotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ddotbelow.glif new file mode 100644 index 00000000..1f468297 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ddotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/degree.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/degree.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/degree.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/degree.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresis.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresisacute.cap.glif new file mode 100644 index 00000000..36bf61b1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresisacute.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresisacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..37694c86 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresisbelowcmb.glif new file mode 100644 index 00000000..4677cfde --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresisbelowcmb.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresiscaron.cap.glif new file mode 100644 index 00000000..fdc547e0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresiscaron.cap.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresiscaron.glif new file mode 100644 index 00000000..d4958564 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresiscaron.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresiscmb.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresiscmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresiscmb.cap.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresiscmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresiscmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresiscmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dieresiscmb.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresiscmb.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresisgrave.cap.glif new file mode 100644 index 00000000..f3a997c4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresisgrave.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresisgrave.glif new file mode 100644 index 00000000..b5e043c0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresisgrave.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresismacron.cap.glif new file mode 100644 index 00000000..32e1a406 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresismacron.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresismacron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresismacron.glif new file mode 100644 index 00000000..a2250d43 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dieresismacron.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/divide.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/divide.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/divide.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/divide.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dlinebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dlinebelow.glif new file mode 100644 index 00000000..9f87d786 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dndblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dndblhorzsngbxd.glif new file mode 100644 index 00000000..175354da --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dndblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dndblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dndblleftsngbxd.glif new file mode 100644 index 00000000..2b340a58 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dndblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dndblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dndblrightsngbxd.glif new file mode 100644 index 00000000..e4bd54b1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dndblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dneighthblock.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dneighthblock.glif new file mode 100644 index 00000000..f9382474 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dneighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnfiveeighthsblock.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnfiveeighthsblock.glif new file mode 100644 index 00000000..6d6b327e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnhalfblock.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnhalfblock.glif new file mode 100644 index 00000000..5cb2299a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnhalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyhorzlightbxd.glif new file mode 100644 index 00000000..380a24d4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyleftlightbxd.glif new file mode 100644 index 00000000..1b888698 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyleftuplightbxd.glif new file mode 100644 index 00000000..b4caa9e3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyrightlightbxd.glif new file mode 100644 index 00000000..7cdf08a7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyrightuplightbxd.glif new file mode 100644 index 00000000..52cd22d3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyuphorzlightbxd.glif new file mode 100644 index 00000000..9fa856ab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnheavyuphorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnleftquadrant.glif new file mode 100644 index 00000000..0f752b04 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnlighthorzheavybxd.glif new file mode 100644 index 00000000..f30c836c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnlighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnlightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnlightleftheavybxd.glif new file mode 100644 index 00000000..176b92a4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnlightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnlightleftupheavybxd.glif new file mode 100644 index 00000000..1f76cebc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnlightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnlightrightheavybxd.glif new file mode 100644 index 00000000..5d35ff8a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnlightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnlightrightupheavybxd.glif new file mode 100644 index 00000000..a63c21b2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnlightuphorzheavybxd.glif new file mode 100644 index 00000000..9cb56736 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnlightuphorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnquarterblock.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnquarterblock.glif new file mode 100644 index 00000000..5dc81108 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnrightquadrant.glif new file mode 100644 index 00000000..012bd532 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnrightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnseveneighthsblock.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnseveneighthsblock.glif new file mode 100644 index 00000000..a47c62d6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnsnghorzdblbxd.glif new file mode 100644 index 00000000..e2673c4c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnsngleftdblbxd.glif new file mode 100644 index 00000000..613e60cd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnsngrightdblbxd.glif new file mode 100644 index 00000000..f1ee6692 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnthreeeighthsblock.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnthreeeighthsblock.glif new file mode 100644 index 00000000..e54a10a3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnthreequartersblock.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnthreequartersblock.glif new file mode 100644 index 00000000..e7b739c3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dnthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dollar.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dollar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dollar.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dollar.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dollar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dollar_greater.liga.glif new file mode 100644 index 00000000..7e5d77c6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dollar_greater.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dong.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dong.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dong.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dong.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dotaccent.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dotaccentcmb.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dotaccentcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dotaccentcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dotaccentcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dotaccentcmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dotaccentcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dotaccentcmb.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dotaccentcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dotbelowcmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dotbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dotbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dotbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dotlessi.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dotlessi.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/dotlessi.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dotlessi.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dotlessj.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dotlessj.glif new file mode 100644 index 00000000..17c9d55d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/dotlessj.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/e.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/e.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/e.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/e.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..399df89f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ebreve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..18c2ad77 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ebreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..26eb285c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..9e58daaa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexacute.glif new file mode 100644 index 00000000..8b714f6b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexdotbelow.glif new file mode 100644 index 00000000..0db5c796 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexgrave.glif new file mode 100644 index 00000000..91bd306c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexhookabove.glif new file mode 100644 index 00000000..6c51cc5c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflextilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflextilde.glif new file mode 100644 index 00000000..1833aca7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ecircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/edieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..48a77fa0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/edieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/edotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..9f5a28c1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/edotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/edotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/edotbelow.glif new file mode 100644 index 00000000..0624bc0a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/edotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/egrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..d1f3f1ca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/egrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ehookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ehookabove.glif new file mode 100644 index 00000000..5bd60e3f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ehookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eight.den.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eight.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eight.den.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eight.den.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eight.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eight.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eight.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eight.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eight.inf.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eight.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eight.inf.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eight.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eight.num.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eight.num.glif new file mode 100644 index 00000000..cc1ad559 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eight.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eight.sup.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eight.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eight.sup.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eight.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ellipsis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ellipsis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ellipsis.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ellipsis.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/emacron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..85931f32 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/emacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/emdash.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/emdash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/emdash.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/emdash.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/endash.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/endash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/endash.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/endash.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eng.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eng.glif new file mode 100644 index 00000000..bbccb0e6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eng.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eogonek.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..d966c714 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eogonek.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal.end.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal.end.glif new file mode 100644 index 00000000..3aee415b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/equal.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/equal.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal.middle.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal.middle.glif new file mode 100644 index 00000000..602e8586 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal.start.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal.start.glif new file mode 100644 index 00000000..525785fa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_asciitilde.liga.glif new file mode 100644 index 00000000..41bb1e5b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_asciitilde.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar.end.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar.end.glif new file mode 100644 index 00000000..f2ef6ec0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar.liga.glif new file mode 100644 index 00000000..103f9854 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_bar.end.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_bar.end.glif new file mode 100644 index 00000000..76402009 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_bar.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_bar.liga.glif new file mode 100644 index 00000000..dd131230 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_bar.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_bar_equal.middle.glif new file mode 100644 index 00000000..2b251845 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_bar_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_equal.middle.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_equal.middle.glif new file mode 100644 index 00000000..ebd302c0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_bar_equal.middle.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_colon_equal.middle.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_colon_equal.middle.glif new file mode 100644 index 00000000..d35fa8dc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_colon_equal.middle.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_equal.liga.glif new file mode 100644 index 00000000..f4702ce9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_equal.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_equal_equal.liga.glif new file mode 100644 index 00000000..0959225b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_equal_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_exclam_equal.middle.glif new file mode 100644 index 00000000..ce62f384 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_exclam_equal.middle.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater.end.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater.end.glif new file mode 100644 index 00000000..249f11d0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater.end.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater.liga.glif new file mode 100644 index 00000000..563af490 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_equal.middle.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_equal.middle.glif new file mode 100644 index 00000000..8268c1dc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_greater.end.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_greater.end.glif new file mode 100644 index 00000000..791133b7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_greater.end.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_greater.liga.glif new file mode 100644 index 00000000..a91d8ebf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_greater_equal.m.glif new file mode 100644 index 00000000..8b240c64 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_greater_greater_equal.m.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_less.end.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_less.end.glif new file mode 100644 index 00000000..17a418dc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_less.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_less.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_less.liga.glif new file mode 100644 index 00000000..69934e28 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_less.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_equal.middle.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_equal.middle.glif new file mode 100644 index 00000000..4ddda2ac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_less.end.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_less.end.glif new file mode 100644 index 00000000..61cfc80e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_less.end.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_less.liga.glif new file mode 100644 index 00000000..fa5e0cb9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_less.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_less_equal.middle.glif new file mode 100644 index 00000000..ae329074 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_less_less_equal.middle.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash.end.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash.end.glif new file mode 100644 index 00000000..f3bae3e7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash.liga.glif new file mode 100644 index 00000000..5680b4a7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_equal.middle.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_equal.middle.glif new file mode 100644 index 00000000..5e6d1446 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_equal.middle.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_slash.end.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_slash.end.glif new file mode 100644 index 00000000..3b967568 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_slash.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_slash.liga.glif new file mode 100644 index 00000000..4142e1fa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_slash.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_slash_equal.middle.glif new file mode 100644 index 00000000..875db56c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/equal_slash_slash_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eth.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eth.glif new file mode 100644 index 00000000..4d22ded1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/eth.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/etilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/etilde.glif new file mode 100644 index 00000000..4270e672 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/etilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/exclam.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/exclam.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/exclam.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/exclam.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/exclam_asciitilde.liga.glif new file mode 100644 index 00000000..0d3f473a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/exclam_asciitilde.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/exclam_equal.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/exclam_equal.liga.glif new file mode 100644 index 00000000..d352cfea --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/exclam_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/exclam_equal_equal.liga.glif new file mode 100644 index 00000000..fafc5ff0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/exclam_equal_equal.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/exclam_exclam.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/exclam_exclam.liga.glif new file mode 100644 index 00000000..92766d8a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/exclam_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/exclam_exclam_period.liga.glif new file mode 100644 index 00000000..782589da --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/exclam_exclam_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/exclamdown.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/exclamdown.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/exclamdown.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/exclamdown.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/f.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/f.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/f.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/f.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/five.den.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/five.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/five.den.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/five.den.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/five.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/five.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/five.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/five.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/five.inf.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/five.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/five.inf.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/five.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/five.num.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/five.num.glif new file mode 100644 index 00000000..c299993d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/five.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/five.sup.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/five.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/five.sup.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/five.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/fiveeighths.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/fiveeighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/fiveeighths.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/fiveeighths.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/fivesixths.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/fivesixths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/fivesixths.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/fivesixths.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/four.den.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/four.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/four.den.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/four.den.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/four.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/four.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/four.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/four.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/four.inf.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/four.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/four.inf.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/four.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/four.num.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/four.num.glif new file mode 100644 index 00000000..e02b8324 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/four.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/four.sup.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/four.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/four.sup.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/four.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/fourfifths.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/fourfifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/fourfifths.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/fourfifths.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/fracbar.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/fracbar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/fracbar.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/fracbar.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/fraction.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/fraction.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/fraction.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/fraction.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/fullblock.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/fullblock.glif new file mode 100644 index 00000000..c0d56679 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/fullblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/g.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/g.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/g.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/g.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gbreve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..8117d132 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gbreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gcaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gcaron.glif new file mode 100644 index 00000000..cd79619e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gcircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..645118e9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gcommaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..0e4399e3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gdotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..fcb34d64 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/germandbls.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..c1cec376 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/germandbls.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gmacron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gmacron.glif new file mode 100644 index 00000000..d572dfa2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gmacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/grave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/grave.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/grave.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gravecmb.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gravecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gravecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gravecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gravecmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gravecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/gravecmb.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/gravecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/greater.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/greater.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_colon.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_colon.liga.glif new file mode 100644 index 00000000..69d8915d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal.glif new file mode 100644 index 00000000..15cbf548 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal.liga.glif new file mode 100644 index 00000000..84647769 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal.start.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal.start.glif new file mode 100644 index 00000000..d7f9cbb7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal_greater.liga.glif new file mode 100644 index 00000000..3d729bac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_equal_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater.liga.glif new file mode 100644 index 00000000..c56c9ec0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_equal.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_equal.liga.glif new file mode 100644 index 00000000..3e40634b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_equal.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_equal.start.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_equal.start.glif new file mode 100644 index 00000000..46924c03 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_equal.start.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_greater.liga.glif new file mode 100644 index 00000000..4584a768 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_hyphen.liga.glif new file mode 100644 index 00000000..665f5901 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_hyphen.start.glif new file mode 100644 index 00000000..d39b6431 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_greater_hyphen.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_hyphen.liga.glif new file mode 100644 index 00000000..439d5e04 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_hyphen.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_hyphen.start.glif new file mode 100644 index 00000000..57e97cc6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_hyphen.start.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_hyphen_greater.liga.glif new file mode 100644 index 00000000..70e69656 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greater_hyphen_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/greaterequal.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greaterequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/greaterequal.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/greaterequal.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/guillemetleft.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/guillemetleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/guillemetleft.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/guillemetleft.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/guillemetright.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/guillemetright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/guillemetright.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/guillemetright.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/guilsinglleft.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/guilsinglleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/guilsinglleft.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/guilsinglleft.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/guilsinglright.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/guilsinglright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/guilsinglright.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/guilsinglright.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/h.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/h.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/h.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/h.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hbar.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..6a0ee85b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hbar.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hbrevebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hbrevebelow.glif new file mode 100644 index 00000000..b2ff468f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hbrevebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hcedilla.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hcedilla.glif new file mode 100644 index 00000000..563e1aa2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hcedilla.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hcircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..304d676a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hdotbelow.glif new file mode 100644 index 00000000..29d471a3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavydbldashhorzbxd.glif new file mode 100644 index 00000000..3d5cdac4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavydbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavydbldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavydbldashvertbxd.glif new file mode 100644 index 00000000..13b69e37 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavydbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavydnbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavydnbxd.glif new file mode 100644 index 00000000..7d377b66 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavydnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavydnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavydnhorzbxd.glif new file mode 100644 index 00000000..de7eb452 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavydnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavydnleftbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavydnleftbxd.glif new file mode 100644 index 00000000..0328973a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavydnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavydnrightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavydnrightbxd.glif new file mode 100644 index 00000000..14c78ad0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavydnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyhorzbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyhorzbxd.glif new file mode 100644 index 00000000..bfc343e1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyhorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyleftbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyleftbxd.glif new file mode 100644 index 00000000..2d102f78 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyleftlightrightbxd.glif new file mode 100644 index 00000000..10c173ed --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyleftlightrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyquaddashhorzbxd.glif new file mode 100644 index 00000000..5aadd50b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyquaddashvertbxd.glif new file mode 100644 index 00000000..039838f4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyrightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyrightbxd.glif new file mode 100644 index 00000000..20ed622e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavytrpldashhorzbxd.glif new file mode 100644 index 00000000..56277585 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavytrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavytrpldashvertbxd.glif new file mode 100644 index 00000000..f8d036c4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavytrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyupbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyupbxd.glif new file mode 100644 index 00000000..d1f34633 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyuphorzbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyuphorzbxd.glif new file mode 100644 index 00000000..3b776f36 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyupleftbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyupleftbxd.glif new file mode 100644 index 00000000..f78b13f9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyuplightdnbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyuplightdnbxd.glif new file mode 100644 index 00000000..8f7027a7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyuplightdnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyuprightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyuprightbxd.glif new file mode 100644 index 00000000..74d9655a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyvertbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyvertbxd.glif new file mode 100644 index 00000000..40b9763b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyverthorzbxd.glif new file mode 100644 index 00000000..acab897d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyvertleftbxd.glif new file mode 100644 index 00000000..7191285d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyvertrightbxd.glif new file mode 100644 index 00000000..77edab93 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/heavyvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hlinebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hlinebelow.glif new file mode 100644 index 00000000..fbbddfa0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hookcmb.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hookcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hookcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hookcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hookcmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hookcmb.glif new file mode 100644 index 00000000..3a1a9eac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hookcmb.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/horizontalbar.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/horizontalbar.glif new file mode 100644 index 00000000..ef4b3086 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/horizontalbar.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hungarumlaut.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hungarumlaut.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hungarumlaut.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hungarumlautcmb.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hungarumlautcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hungarumlautcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hungarumlautcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hungarumlautcmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hungarumlautcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hungarumlautcmb.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hungarumlautcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen.end.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen.end.glif new file mode 100644 index 00000000..7337c3ab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hyphen.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/hyphen.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen.middle.glif new file mode 100644 index 00000000..0fd1806c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen.start.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen.start.glif new file mode 100644 index 00000000..ac8f0387 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_asciitilde.liga.glif new file mode 100644 index 00000000..7fde25e4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_asciitilde.liga.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar.end.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar.end.glif new file mode 100644 index 00000000..065f84cd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar.end.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar.liga.glif new file mode 100644 index 00000000..49ef4d93 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_bar.end.glif new file mode 100644 index 00000000..8a9f69c6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_bar.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_bar.liga.glif new file mode 100644 index 00000000..4454d15e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif new file mode 100644 index 00000000..b49fd9b6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_hyphen.middle.glif new file mode 100644 index 00000000..336a3213 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_bar_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater.end.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater.end.glif new file mode 100644 index 00000000..970d9987 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater.liga.glif new file mode 100644 index 00000000..3b44948d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_greater.end.glif new file mode 100644 index 00000000..7570d65e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_greater.end.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_greater.liga.glif new file mode 100644 index 00000000..e9e32736 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif new file mode 100644 index 00000000..5dbdd5bf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_hyphen.middle.glif new file mode 100644 index 00000000..e9c5d8e9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_greater_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_hyphen.liga.glif new file mode 100644 index 00000000..4c49ab56 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_hyphen.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..52fb755c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less.end.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less.end.glif new file mode 100644 index 00000000..63275e35 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less.end.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less.liga.glif new file mode 100644 index 00000000..fee3a19d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_hyphen.middle.glif new file mode 100644 index 00000000..41ca4820 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_less.end.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_less.end.glif new file mode 100644 index 00000000..39a430e9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_less.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_less.liga.glif new file mode 100644 index 00000000..a3945007 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_less.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif new file mode 100644 index 00000000..c2f1a49f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/i.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/i.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/i.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/i.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/iacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..f5ce7650 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/iacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ibreve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..533d94d1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ibreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/icaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/icaron.glif new file mode 100644 index 00000000..cb78a16b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/icaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/icircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..847b3013 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/icircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/idieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..028d1c1d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/idieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/idotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/idotaccent.glif new file mode 100644 index 00000000..ad1bb427 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/idotaccent.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/idotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/idotbelow.glif new file mode 100644 index 00000000..82567491 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/idotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/igrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..ce1fbe2d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/igrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ihookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ihookabove.glif new file mode 100644 index 00000000..5b2c399a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ihookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/imacron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..f1d3e578 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/imacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/iogonek.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..850cbe53 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/iogonek.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/itilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..ebf72a87 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/itilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/j.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/j.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/j.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/j.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/jcaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/jcaron.glif new file mode 100644 index 00000000..84982632 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/jcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/jcircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..594429c1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/k.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/k.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/k.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/k.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/kcommaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..db33861e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/kdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/kdotbelow.glif new file mode 100644 index 00000000..0e91391b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/kdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/klinebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/klinebelow.glif new file mode 100644 index 00000000..66031605 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/klinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/l.dot.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/l.dot.glif new file mode 100644 index 00000000..d5e7d550 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/l.dot.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/l.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/l.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/l.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/l.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..67da2113 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/layerinfo.plist b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/layerinfo.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/layerinfo.plist rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/layerinfo.plist diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lcaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..76f05128 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lcircumflexbelow.glif new file mode 100644 index 00000000..38c60e33 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lcommaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..d3dc0ffb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ldotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ldotbelow.glif new file mode 100644 index 00000000..eb8d5ac9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ldotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftdnheavyrightuplightbxd.glif new file mode 100644 index 00000000..1c677a48 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftdnheavyrightuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lefteighthblock.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lefteighthblock.glif new file mode 100644 index 00000000..bd0981c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lefteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftfiveeighthsblock.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftfiveeighthsblock.glif new file mode 100644 index 00000000..1db3b143 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lefthalfblock.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lefthalfblock.glif new file mode 100644 index 00000000..7ad2b780 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lefthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftheavyrightdnlightbxd.glif new file mode 100644 index 00000000..09c4680b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftheavyrightuplightbxd.glif new file mode 100644 index 00000000..df6a5e12 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftheavyrightvertlightbxd.glif new file mode 100644 index 00000000..3a89649e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftheavyrightvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftlightrightdnheavybxd.glif new file mode 100644 index 00000000..1856de30 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftlightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftlightrightupheavybxd.glif new file mode 100644 index 00000000..b938fd38 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftlightrightvertheavybxd.glif new file mode 100644 index 00000000..19e4e132 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftlightrightvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftquarterblock.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftquarterblock.glif new file mode 100644 index 00000000..0a473fc6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftseveneighthsblock.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftseveneighthsblock.glif new file mode 100644 index 00000000..e6dd7d1a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftthreeeighthsblock.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftthreeeighthsblock.glif new file mode 100644 index 00000000..c6bf4e61 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftthreequartersblock.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftthreequartersblock.glif new file mode 100644 index 00000000..75cb3ef3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftupheavyrightdnlightbxd.glif new file mode 100644 index 00000000..04b0875c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/leftupheavyrightdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/less.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/less.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_asciitilde.liga.glif new file mode 100644 index 00000000..a7b9179f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_asciitilde.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..b677c065 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_asciitilde_greater.liga.glif new file mode 100644 index 00000000..49310e40 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_asciitilde_greater.liga.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_asterisk.liga.glif new file mode 100644 index 00000000..44fa2796 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_asterisk_greater.liga.glif new file mode 100644 index 00000000..1699358e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_asterisk_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_bar.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_bar.liga.glif new file mode 100644 index 00000000..fc0f1c52 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_bar.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_bar_bar.liga.glif new file mode 100644 index 00000000..72d65ce4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_bar_bar.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_bar_bar_bar.liga.glif new file mode 100644 index 00000000..cfbdbebb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_bar_bar_bar.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_bar_greater.liga.glif new file mode 100644 index 00000000..faec02df --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_bar_greater.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_colon.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_colon.liga.glif new file mode 100644 index 00000000..92758a7c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_dollar.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_dollar.liga.glif new file mode 100644 index 00000000..bd9cc4e1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_dollar.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_dollar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_dollar_greater.liga.glif new file mode 100644 index 00000000..b5c85ce3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_dollar_greater.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_equal.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_equal.glif new file mode 100644 index 00000000..0e15486c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_equal.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_equal.liga.glif new file mode 100644 index 00000000..82891d60 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_equal.start.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_equal.start.glif new file mode 100644 index 00000000..a7f26bab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_equal.start.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_equal_greater.liga.glif new file mode 100644 index 00000000..50e756aa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_equal_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_equal_less.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_equal_less.liga.glif new file mode 100644 index 00000000..87dfcee8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_equal_less.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..42a95f65 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_greater.liga.glif new file mode 100644 index 00000000..797477ae --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_greater.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen.liga.glif new file mode 100644 index 00000000..a430f1df --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen.start.glif new file mode 100644 index 00000000..aa8cb92e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen_greater.liga.glif new file mode 100644 index 00000000..5204a509 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen_greater.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen_less.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen_less.liga.glif new file mode 100644 index 00000000..5f0b8f55 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_hyphen_less.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_less.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_less.liga.glif new file mode 100644 index 00000000..5e90a9ab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_less.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_less_equal.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_less_equal.liga.glif new file mode 100644 index 00000000..6f9a88b3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_less_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_less_equal.start.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_less_equal.start.glif new file mode 100644 index 00000000..e777b881 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_less_equal.start.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_less_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_less_hyphen.liga.glif new file mode 100644 index 00000000..de94fae7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_less_hyphen.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_less_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_less_hyphen.start.glif new file mode 100644 index 00000000..a205b460 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_less_hyphen.start.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_less_less.liga.glif new file mode 100644 index 00000000..2b643117 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_less_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_plus.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_plus.liga.glif new file mode 100644 index 00000000..e4e7b1b4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_plus.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_plus_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_plus_greater.liga.glif new file mode 100644 index 00000000..ae5cf8dd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_plus_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_slash.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_slash.liga.glif new file mode 100644 index 00000000..8f81a448 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_slash.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_slash_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_slash_greater.liga.glif new file mode 100644 index 00000000..28699ba3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/less_slash_greater.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/lessequal.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lessequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/lessequal.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lessequal.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightarcdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightarcdnleftbxd.glif new file mode 100644 index 00000000..51dbc426 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightarcdnleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightarcdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightarcdnrightbxd.glif new file mode 100644 index 00000000..93c2c964 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightarcdnrightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightarcupleftbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightarcupleftbxd.glif new file mode 100644 index 00000000..9ca20ceb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightarcupleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightarcuprightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightarcuprightbxd.glif new file mode 100644 index 00000000..1c38f648 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightarcuprightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdbldashhorzbxd.glif new file mode 100644 index 00000000..38fe4828 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdbldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdbldashvertbxd.glif new file mode 100644 index 00000000..76527bed --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdiagcrossbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdiagcrossbxd.glif new file mode 100644 index 00000000..2d61cb45 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdiagcrossbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdiagupleftdnrightbxd.glif new file mode 100644 index 00000000..fb97d48f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdiagupleftdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdiaguprightdnleftbxd.glif new file mode 100644 index 00000000..63b0a4be --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdiaguprightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdnbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdnbxd.glif new file mode 100644 index 00000000..95b9a488 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdnhorzbxd.glif new file mode 100644 index 00000000..8c118142 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdnleftbxd.glif new file mode 100644 index 00000000..22771c51 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdnrightbxd.glif new file mode 100644 index 00000000..058ce1b8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lighthorzbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lighthorzbxd.glif new file mode 100644 index 00000000..45fbd354 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lighthorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightleftbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightleftbxd.glif new file mode 100644 index 00000000..a0f3b293 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightleftheavyrightbxd.glif new file mode 100644 index 00000000..c8c73471 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightleftheavyrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightquaddashhorzbxd.glif new file mode 100644 index 00000000..c70ddd97 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightquaddashvertbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightquaddashvertbxd.glif new file mode 100644 index 00000000..5eeceeb9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightrightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightrightbxd.glif new file mode 100644 index 00000000..ad7cdacf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightshade.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightshade.glif new file mode 100644 index 00000000..f4d373db --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightshade.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lighttrpldashhorzbxd.glif new file mode 100644 index 00000000..4b1cd639 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lighttrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lighttrpldashvertbxd.glif new file mode 100644 index 00000000..94ffcb3a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lighttrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightupbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightupbxd.glif new file mode 100644 index 00000000..42c7ca56 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightupheavydnbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightupheavydnbxd.glif new file mode 100644 index 00000000..4b8be348 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightupheavydnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightuphorzbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightuphorzbxd.glif new file mode 100644 index 00000000..b69b1ef2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightupleftbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightupleftbxd.glif new file mode 100644 index 00000000..5e6ff874 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightuprightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightuprightbxd.glif new file mode 100644 index 00000000..6ff62b28 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightvertbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightvertbxd.glif new file mode 100644 index 00000000..dd64ceab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightverthorzbxd.glif new file mode 100644 index 00000000..582f6f5e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightvertleftbxd.glif new file mode 100644 index 00000000..d0b69a4f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightvertrightbxd.glif new file mode 100644 index 00000000..668b7ba8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lightvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ligspacer.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ligspacer.glif new file mode 100644 index 00000000..aaf0214e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ligspacer.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/llinebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/llinebelow.glif new file mode 100644 index 00000000..ec96eaf1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/llinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lmacrondotbelow.glif new file mode 100644 index 00000000..424016ec --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lmacrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lslash.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..5e5334e3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/lslash.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/m.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/m.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/m.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/m.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/macron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/macron.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/macron.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/macronbelowcmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/macronbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/macronbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/macronbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/macroncmb.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/macroncmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/macroncmb.cap.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/macroncmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/macroncmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/macroncmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/macroncmb.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/macroncmb.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/macronlowmod.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/macronlowmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/macronlowmod.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/macronlowmod.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/macute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/macute.glif new file mode 100644 index 00000000..01be7c0c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/macute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/mdotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/mdotaccent.glif new file mode 100644 index 00000000..7e457f02 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/mdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/mdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/mdotbelow.glif new file mode 100644 index 00000000..13d17c03 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/mdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/mediumshade.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/mediumshade.glif new file mode 100644 index 00000000..6a701829 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/mediumshade.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/middotcat.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/middotcat.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/middotcat.cap.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/middotcat.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/middotcat.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/middotcat.glif new file mode 100644 index 00000000..7462c22a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/middotcat.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/minus.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/minus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/minus.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/minus.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/mu.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/mu.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/mu.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/mu.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/multiply.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/multiply.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/multiply.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/multiply.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/n.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/n.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/n.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/n.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/nacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..08206b69 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/nacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/naira.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/naira.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/naira.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/naira.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ncaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..4bc7f8e5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ncaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ncircumflexbelow.glif new file mode 100644 index 00000000..86a82565 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ncircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ncommaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..44e4a602 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ndotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ndotaccent.glif new file mode 100644 index 00000000..bece7a92 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ndotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ndotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ndotbelow.glif new file mode 100644 index 00000000..9402f27f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ngrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ngrave.glif new file mode 100644 index 00000000..3fa155f0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/nine.den.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/nine.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/nine.den.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/nine.den.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/nine.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/nine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/nine.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/nine.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/nine.inf.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/nine.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/nine.inf.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/nine.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/nine.num.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/nine.num.glif new file mode 100644 index 00000000..ebb0b622 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/nine.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/nine.sup.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/nine.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/nine.sup.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/nine.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/nlinebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/nlinebelow.glif new file mode 100644 index 00000000..7a00f5c8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/nlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/notequal.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/notequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/notequal.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/notequal.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ntilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..5c25937e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign.end.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign.end.glif new file mode 100644 index 00000000..b0fbdb23 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign.end.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/numbersign.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/numbersign.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign.middle.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign.middle.glif new file mode 100644 index 00000000..cc6437f6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign.start.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign.start.glif new file mode 100644 index 00000000..c510c315 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign.start.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_braceleft.liga.glif new file mode 100644 index 00000000..0220dcc0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_braceleft.liga.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_bracketleft.liga.glif new file mode 100644 index 00000000..a8ca109d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_bracketleft.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_colon.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_colon.liga.glif new file mode 100644 index 00000000..3675633d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_colon.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_equal.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_equal.liga.glif new file mode 100644 index 00000000..c07d6b2f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_equal.liga.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_exclam.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_exclam.liga.glif new file mode 100644 index 00000000..a808d38f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_parenleft.liga.glif new file mode 100644 index 00000000..3aa6c62a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_parenleft.liga.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_question.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_question.liga.glif new file mode 100644 index 00000000..6f44e44c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_underscore.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_underscore.liga.glif new file mode 100644 index 00000000..d0380f95 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_underscore.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_underscore_parenleft.glif new file mode 100644 index 00000000..8dac4479 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/numbersign_underscore_parenleft.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/o.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/o.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/o.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/o.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/oacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..c59ed529 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/oacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/obreve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..651b0598 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/obreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocaron.glif new file mode 100644 index 00000000..ea9b04f6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..1fc2fb79 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexacute.glif new file mode 100644 index 00000000..12bf0456 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexdotbelow.glif new file mode 100644 index 00000000..58be75f4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexgrave.glif new file mode 100644 index 00000000..a4ddd22a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexhookabove.glif new file mode 100644 index 00000000..de99d252 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflextilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflextilde.glif new file mode 100644 index 00000000..2c56fdf1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ocircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/odieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..56948fc1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/odieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/odotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/odotaccent.glif new file mode 100644 index 00000000..56c7beb2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/odotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/odotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/odotbelow.glif new file mode 100644 index 00000000..8d7d0312 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/odotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/oe.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/oe.glif new file mode 100644 index 00000000..3e550e42 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/oe.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ogonek.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ogonek.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ogonekcmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ogonekcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ogonekcmb.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ogonekcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ograve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..d3a1061c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ograve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohookabove.glif new file mode 100644 index 00000000..e3b2b63f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohorn.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohorn.glif new file mode 100644 index 00000000..516f1de4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohorn.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohornacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohornacute.glif new file mode 100644 index 00000000..cd103289 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohorndotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohorndotbelow.glif new file mode 100644 index 00000000..efc6deab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohorndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohorngrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohorngrave.glif new file mode 100644 index 00000000..eb7bc30b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohorngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohornhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohornhookabove.glif new file mode 100644 index 00000000..0bd937eb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohorntilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohorntilde.glif new file mode 100644 index 00000000..1a6e3d2f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohorntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohungarumlaut.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..5ec0df73 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/omacron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..4d29d440 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/omacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/one.den.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/one.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/one.den.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/one.den.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/one.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/one.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/one.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/one.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/one.inf.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/one.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/one.inf.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/one.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/one.num.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/one.num.glif new file mode 100644 index 00000000..b8fcdd09 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/one.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/one.sup.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/one.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/one.sup.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/one.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/oneeighth.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/oneeighth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/oneeighth.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/oneeighth.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/onefifth.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/onefifth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/onefifth.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/onefifth.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/onehalf.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/onehalf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/onehalf.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/onehalf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/onequarter.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/onequarter.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/onequarter.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/onequarter.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/onesixth.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/onesixth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/onesixth.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/onesixth.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/onethird.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/onethird.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/onethird.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/onethird.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/oogonek.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/oogonek.glif new file mode 100644 index 00000000..28644c70 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/oogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ordfeminine.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ordfeminine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ordfeminine.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ordfeminine.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ordmasculine.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ordmasculine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ordmasculine.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ordmasculine.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/oslash.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..2105b1eb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/oslash.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/otilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..f3f6637b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/otilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/p.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/p.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/p.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/p.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/paragraph.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/paragraph.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/paragraph.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/paragraph.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/parenleft.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/parenleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/parenleft.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/parenleft.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/parenright.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/parenright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/parenright.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/parenright.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/percent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/percent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/percent.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/percent.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/percent_percent.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/percent_percent.liga.glif new file mode 100644 index 00000000..8d19d00a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/percent_percent.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/period.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/period.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_equal.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_equal.liga.glif new file mode 100644 index 00000000..38166fe2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_hyphen.liga.glif new file mode 100644 index 00000000..67279e15 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_period.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_period.liga.glif new file mode 100644 index 00000000..7040f36f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_period_equal.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_period_equal.liga.glif new file mode 100644 index 00000000..844a7ba9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_period_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_period_less.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_period_less.liga.glif new file mode 100644 index 00000000..f3a825e9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_period_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_period_period.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_period_period.liga.glif new file mode 100644 index 00000000..d3a1d6bb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_period_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_question.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_question.liga.glif new file mode 100644 index 00000000..258c1c48 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/period_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/periodcentered.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/periodcentered.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/periodcentered.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/periodcentered.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/peso.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/peso.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/peso.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/peso.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/plus.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/plus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/plus.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/plus.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/plus_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/plus_greater.liga.glif new file mode 100644 index 00000000..5407614e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/plus_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/plus_plus.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/plus_plus.liga.glif new file mode 100644 index 00000000..27ade93f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/plus_plus.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/plus_plus_plus.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/plus_plus_plus.liga.glif new file mode 100644 index 00000000..d37e8476 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/plus_plus_plus.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/plusminus.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/plusminus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/plusminus.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/plusminus.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/primemod.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/primemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/primemod.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/primemod.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/published.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/published.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/published.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/published.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/q.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/q.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/q.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/q.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/question.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/question.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/question.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/question.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/question_colon.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/question_colon.liga.glif new file mode 100644 index 00000000..27ce8018 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/question_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/question_equal.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/question_equal.liga.glif new file mode 100644 index 00000000..218d0d2e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/question_equal.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/question_period.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/question_period.liga.glif new file mode 100644 index 00000000..80143bb3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/question_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/question_question.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/question_question.liga.glif new file mode 100644 index 00000000..e6e7c700 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/question_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/questiondown.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/questiondown.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/questiondown.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/questiondown.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/quotedbl.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/quotedbl.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/quotedbl.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/quotedbl.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/quotedblbase.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/quotedblbase.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/quotedblbase.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/quotedblbase.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/quotedblleft.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/quotedblleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/quotedblleft.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/quotedblleft.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/quotedblright.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/quotedblright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/quotedblright.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/quotedblright.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/quoteleft.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/quoteleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/quoteleft.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/quoteleft.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/quoteright.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/quoteright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/quoteright.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/quoteright.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/quotesinglbase.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/quotesinglbase.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/quotesinglbase.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/quotesinglbase.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/quotesingle.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/quotesingle.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/quotesingle.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/quotesingle.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/r.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/r.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/r.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/r.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/racute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/racute.glif new file mode 100644 index 00000000..5884cc2a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/racute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rcaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..9255e24c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rcommaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..9c0c643d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rdotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rdotaccent.glif new file mode 100644 index 00000000..175bdeba --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rdotbelow.glif new file mode 100644 index 00000000..01ce3303 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/registered.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/registered.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/registered.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/registered.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightdnheavyleftuplightbxd.glif new file mode 100644 index 00000000..13c8e880 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightdnheavyleftuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/righteighthblock.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/righteighthblock.glif new file mode 100644 index 00000000..ee46a32d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/righteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/righthalfblock.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/righthalfblock.glif new file mode 100644 index 00000000..9f3ba315 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/righthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightheavyleftdnlightbxd.glif new file mode 100644 index 00000000..f14bd1b1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightheavyleftuplightbxd.glif new file mode 100644 index 00000000..416a4548 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightheavyleftvertlightbxd.glif new file mode 100644 index 00000000..9e567cd4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightheavyleftvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightlightleftdnheavybxd.glif new file mode 100644 index 00000000..acb6a682 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightlightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightlightleftupheavybxd.glif new file mode 100644 index 00000000..c7714791 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightlightleftvertheavybxd.glif new file mode 100644 index 00000000..22e54792 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightlightleftvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightupheavyleftdnlightbxd.glif new file mode 100644 index 00000000..0025e963 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rightupheavyleftdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ring.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ring.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ring.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ring.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ringcmb.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ringcmb.cap.glif new file mode 100644 index 00000000..b8d687c0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ringcmb.cap.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ringcmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ringcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ringcmb.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ringcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ringhalfleft.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ringhalfleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ringhalfleft.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ringhalfleft.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ringhalfright.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ringhalfright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ringhalfright.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ringhalfright.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rlinebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rlinebelow.glif new file mode 100644 index 00000000..dc708b34 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rmacrondotbelow.glif new file mode 100644 index 00000000..0f9f9e0c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/rmacrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/s.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/s.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/s.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/s.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/sacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..2f619f02 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/sacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/scaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..a24fec30 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/scaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/scedilla.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..98519031 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/scedilla.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/schwa.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/schwa.glif new file mode 100644 index 00000000..72e00b34 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/schwa.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/scircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..4f41a346 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/scircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/scommaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..38ec0775 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/sdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/sdotbelow.glif new file mode 100644 index 00000000..7886ab3c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/sdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/section.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/section.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/section.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/section.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/semicolon.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/semicolon.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/semicolon.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/semicolon.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/semicolon_semicolon.liga.glif new file mode 100644 index 00000000..98760fb6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/semicolon_semicolon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/servicemark.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/servicemark.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/servicemark.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/servicemark.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/seven.den.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/seven.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/seven.den.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/seven.den.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/seven.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/seven.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/seven.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/seven.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/seven.inf.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/seven.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/seven.inf.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/seven.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/seven.num.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/seven.num.glif new file mode 100644 index 00000000..f4db09fd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/seven.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/seven.sup.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/seven.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/seven.sup.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/seven.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/seveneighths.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/seveneighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/seveneighths.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/seveneighths.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/six.den.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/six.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/six.den.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/six.den.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/six.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/six.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/six.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/six.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/six.inf.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/six.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/six.inf.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/six.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/six.num.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/six.num.glif new file mode 100644 index 00000000..f366fc60 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/six.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/six.sup.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/six.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/six.sup.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/six.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/slash.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/slash.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_asterisk.liga.glif new file mode 100644 index 00000000..5ccc3c01 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_backslash.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_backslash.liga.glif new file mode 100644 index 00000000..40db818b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_backslash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_equal.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_equal.liga.glif new file mode 100644 index 00000000..266822a7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_equal.start.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_equal.start.glif new file mode 100644 index 00000000..da4d4266 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_greater.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_greater.liga.glif new file mode 100644 index 00000000..91e22814 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash.liga.glif new file mode 100644 index 00000000..2bc4a71a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash_equal.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash_equal.liga.glif new file mode 100644 index 00000000..7fda1529 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash_equal.start.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash_equal.start.glif new file mode 100644 index 00000000..5cc29fb3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash_slash.liga.glif new file mode 100644 index 00000000..3f943989 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/slash_slash_slash.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/space.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/space.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/space.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/space.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/sterling.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/sterling.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/sterling.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/sterling.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/t.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/t.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/t.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/t.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tbar.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..db7213d6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tbar.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tcaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..3c11eb35 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tcedilla.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..67f9a417 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tcedilla.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tcircumflexbelow.glif new file mode 100644 index 00000000..fbf14375 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tcommaaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..46bc1b81 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tdotbelow.glif new file mode 100644 index 00000000..41c0b7e6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/thorn.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..5ab0f54d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/thorn.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/three.den.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/three.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/three.den.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/three.den.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/three.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/three.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/three.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/three.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/three.inf.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/three.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/three.inf.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/three.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/three.num.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/three.num.glif new file mode 100644 index 00000000..2d2d9aa4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/three.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/three.sup.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/three.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/three.sup.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/three.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/threeeighths.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/threeeighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/threeeighths.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/threeeighths.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/threefifths.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/threefifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/threefifths.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/threefifths.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/threequarters.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/threequarters.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/threequarters.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/threequarters.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tilde.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tildecmb.cap.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tildecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tildecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tildecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tildecmb.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tildecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/tildecmb.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tildecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tlinebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tlinebelow.glif new file mode 100644 index 00000000..47a046e3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/tlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/trademark.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/trademark.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/trademark.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/trademark.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/two.den.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/two.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/two.den.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/two.den.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/two.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/two.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/two.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/two.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/two.inf.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/two.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/two.inf.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/two.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/two.num.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/two.num.glif new file mode 100644 index 00000000..eef8aa1d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/two.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/two.sup.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/two.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/two.sup.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/two.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/twodotleader.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/twodotleader.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/twodotleader.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/twodotleader.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/twofifths.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/twofifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/twofifths.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/twofifths.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/twothirds.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/twothirds.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/twothirds.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/twothirds.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/u.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/u.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/u.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/u.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..802fcce8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ubreve.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..24c0cc91 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ubreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ucaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ucaron.glif new file mode 100644 index 00000000..96c8d0e3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ucaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ucircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..38b5ddde --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/udieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..3a74664c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/udieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/udieresisacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/udieresisacute.glif new file mode 100644 index 00000000..bd9bfb34 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/udieresisacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/udieresiscaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/udieresiscaron.glif new file mode 100644 index 00000000..b9d2e556 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/udieresiscaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/udieresisgrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/udieresisgrave.glif new file mode 100644 index 00000000..1347afb1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/udieresisgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/udieresismacron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/udieresismacron.glif new file mode 100644 index 00000000..3c1e7134 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/udieresismacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/udotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/udotbelow.glif new file mode 100644 index 00000000..6c7150ff --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/udotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ugrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..38101cd2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ugrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhookabove.glif new file mode 100644 index 00000000..d184c10a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhorn.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhorn.glif new file mode 100644 index 00000000..fc3de51c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhorn.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhornacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhornacute.glif new file mode 100644 index 00000000..fd4d1dc6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhorndotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhorndotbelow.glif new file mode 100644 index 00000000..04d9712b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhorndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhorngrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhorngrave.glif new file mode 100644 index 00000000..3c72acaa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhorngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhornhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhornhookabove.glif new file mode 100644 index 00000000..9bbda1ed --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhorntilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhorntilde.glif new file mode 100644 index 00000000..4c2ee4a3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhorntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhungarumlaut.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..b054093c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/umacron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..7b79518b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/umacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/underscore.end.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/underscore.end.glif new file mode 100644 index 00000000..7c309de3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/underscore.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/underscore.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/underscore.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/underscore.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/underscore.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/underscore.middle.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/underscore.middle.glif new file mode 100644 index 00000000..0b382183 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/underscore.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/underscore.start.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/underscore.start.glif new file mode 100644 index 00000000..ae2798eb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/underscore.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/underscore_bar_underscore.m.glif new file mode 100644 index 00000000..7aa39315 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/underscore_bar_underscore.m.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uni00A_0.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni00A_0.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uni00A_0.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni00A_0.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uni0326.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni0326.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uni0326.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni0326.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni1E_9E_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni1E_9E_.glif new file mode 100644 index 00000000..bc3cdb99 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni1E_9E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni2011.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni2011.glif new file mode 100644 index 00000000..33e0d4b6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni2011.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uni20B_9.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni20B_9.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uni20B_9.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni20B_9.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uni20B_A_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni20B_A_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uni20B_A_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni20B_A_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uni20B_D_.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni20B_D_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uni20B_D_.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni20B_D_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni2610.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni2610.glif new file mode 100644 index 00000000..a1360184 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni2610.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni2611.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni2611.glif new file mode 100644 index 00000000..0a422e88 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni2611.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni2612.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni2612.glif new file mode 100644 index 00000000..72f50de7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni2612.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni2713.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni2713.glif new file mode 100644 index 00000000..3fb1327c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uni2713.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uniA_788.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniA_788.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/uniA_788.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniA_788.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0A_0.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0A_0.glif new file mode 100644 index 00000000..c2a149b1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0A_0.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0A_1.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0A_1.glif new file mode 100644 index 00000000..ebe9c98c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0A_1.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0A_2.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0A_2.glif new file mode 100644 index 00000000..db0f09e1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0A_2.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_0.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_0.glif new file mode 100644 index 00000000..bbe47e50 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_0.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_1.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_1.glif new file mode 100644 index 00000000..c5c8cd8f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_1.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_2.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_2.glif new file mode 100644 index 00000000..eb5e7830 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_2.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_3.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_3.glif new file mode 100644 index 00000000..62b58a23 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uniE_0B_3.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uogonek.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..83413b53 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uogonek.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/updblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/updblhorzsngbxd.glif new file mode 100644 index 00000000..68628d4b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/updblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/updblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/updblleftsngbxd.glif new file mode 100644 index 00000000..f1d2a693 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/updblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/updblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/updblrightsngbxd.glif new file mode 100644 index 00000000..b21fde20 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/updblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upeighthblock.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upeighthblock.glif new file mode 100644 index 00000000..edbfe3c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upeighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uphalfblock.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uphalfblock.glif new file mode 100644 index 00000000..f6006f81 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uphalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upheavydnhorzlightbxd.glif new file mode 100644 index 00000000..8d2a9887 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upheavydnhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upheavyhorzlightbxd.glif new file mode 100644 index 00000000..5fb772f9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upheavyleftdnlightbxd.glif new file mode 100644 index 00000000..f09c9ece --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upheavyleftlightbxd.glif new file mode 100644 index 00000000..5a7942cc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upheavyrightdnlightbxd.glif new file mode 100644 index 00000000..41eb7f2f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upheavyrightlightbxd.glif new file mode 100644 index 00000000..1afffaf7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upleftdnleftdnrightquadrant.glif new file mode 100644 index 00000000..e0bdb776 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upleftdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upleftdnrightquadrant.glif new file mode 100644 index 00000000..6ca0f95d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upleftdnrightquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upleftquadrant.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upleftquadrant.glif new file mode 100644 index 00000000..9ab84ae1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upleftuprightdnleftquadrant.glif new file mode 100644 index 00000000..68671562 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upleftuprightdnleftquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upleftuprightdnrightquadrant.glif new file mode 100644 index 00000000..a20ceb2d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upleftuprightdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uplightdnhorzheavybxd.glif new file mode 100644 index 00000000..b79b9b0f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uplightdnhorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uplighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uplighthorzheavybxd.glif new file mode 100644 index 00000000..c8e5f912 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uplighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uplightleftdnheavybxd.glif new file mode 100644 index 00000000..1d653ee2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uplightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uplightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uplightleftheavybxd.glif new file mode 100644 index 00000000..3446bbf3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uplightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uplightrightdnheavybxd.glif new file mode 100644 index 00000000..ddee1d83 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uplightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uplightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uplightrightheavybxd.glif new file mode 100644 index 00000000..b106fe73 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uplightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uprightdnleftdnrightquadrant.glif new file mode 100644 index 00000000..4211b39d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uprightdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uprightdnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uprightdnleftquadrant.glif new file mode 100644 index 00000000..aea6004b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uprightdnleftquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uprightquadrant.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uprightquadrant.glif new file mode 100644 index 00000000..245dc1dd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uprightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upsnghorzdblbxd.glif new file mode 100644 index 00000000..7df84b0f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upsngleftdblbxd.glif new file mode 100644 index 00000000..5ea72b78 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upsngrightdblbxd.glif new file mode 100644 index 00000000..caf1fade --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/upsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uring.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uring.glif new file mode 100644 index 00000000..3a43c125 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/uring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/utilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..31cb18d3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/utilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/v.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/v.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/v.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/v.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vdotbelow.glif new file mode 100644 index 00000000..a3c1ff84 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertdblhorzsngbxd.glif new file mode 100644 index 00000000..4a992d8f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertdblhorzsngbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertdblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertdblleftsngbxd.glif new file mode 100644 index 00000000..e6a804ef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertdblleftsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertdblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertdblrightsngbxd.glif new file mode 100644 index 00000000..0980c49f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertdblrightsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertheavyhorzlightbxd.glif new file mode 100644 index 00000000..c477891c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertheavyhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertheavyleftlightbxd.glif new file mode 100644 index 00000000..93b48ba6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertheavyleftlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertheavyrightlightbxd.glif new file mode 100644 index 00000000..5c0a2026 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertheavyrightlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/verticallinelowmod.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/verticallinelowmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/verticallinelowmod.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/verticallinelowmod.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/verticallinemod.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/verticallinemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/verticallinemod.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/verticallinemod.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertlighthorzheavybxd.glif new file mode 100644 index 00000000..431afb11 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertlighthorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertlightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertlightleftheavybxd.glif new file mode 100644 index 00000000..359791de --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertlightleftheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertlightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertlightrightheavybxd.glif new file mode 100644 index 00000000..1d67cec3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertlightrightheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertsnghorzdblbxd.glif new file mode 100644 index 00000000..bde4f787 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertsnghorzdblbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertsngleftdblbxd.glif new file mode 100644 index 00000000..ef15700d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertsngleftdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertsngrightdblbxd.glif new file mode 100644 index 00000000..320ff1ef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/vertsngrightdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/w.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/w.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/w.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/w.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/w_w_w.liga.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/w_w_w.liga.glif new file mode 100644 index 00000000..36c519c1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/w_w_w.liga.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/wacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..4807caf3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/wacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/wcircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..5a263c1f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/wdieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..931542e0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/wdieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/wgrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..c69b29a9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/wgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/won.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/won.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/won.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/won.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/x.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/x.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/x.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/x.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/xdieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/xdieresis.glif new file mode 100644 index 00000000..b649e86b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/xdieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/y.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/y.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/y.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/y.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/yacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..bf0a8972 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/yacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ycircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..c0c59743 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ydieresis.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..7235a028 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ydieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ydotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ydotaccent.glif new file mode 100644 index 00000000..79bb034c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ydotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ydotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ydotbelow.glif new file mode 100644 index 00000000..b000ccec --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ydotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/yen.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/yen.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/yen.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/yen.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ygrave.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ygrave.glif new file mode 100644 index 00000000..4bc747f6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ygrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/yhookabove.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/yhookabove.glif new file mode 100644 index 00000000..1a628990 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/yhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ymacron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ymacron.glif new file mode 100644 index 00000000..be5c7c9c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ymacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ytilde.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ytilde.glif new file mode 100644 index 00000000..f3ea3523 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/ytilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/z.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/z.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/z.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/z.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zacute.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..3c91a31c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zcaron.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..49e1bee1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zcircumflex.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zcircumflex.glif new file mode 100644 index 00000000..d1a15a34 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zdotaccent.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..2a96e621 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zdotbelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zdotbelow.glif new file mode 100644 index 00000000..2a4168d8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zero.den.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zero.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zero.den.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zero.den.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zero.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zero.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zero.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zero.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zero.inf.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zero.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zero.inf.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zero.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zero.num.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zero.num.glif new file mode 100644 index 00000000..e1ec4bd5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zero.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zero.sup.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zero.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zero.sup.glif rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zero.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zlinebelow.glif b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zlinebelow.glif new file mode 100644 index 00000000..ef48efb8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/glyphs/zlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/layercontents.plist b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/layercontents.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/layercontents.plist rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/layercontents.plist diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/lib.plist b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/lib.plist new file mode 100644 index 00000000..8f3f5d29 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/lib.plist @@ -0,0 +1,1647 @@ + + + + + com.typemytype.robofont.compileSettings.autohint + + com.typemytype.robofont.compileSettings.checkOutlines + + com.typemytype.robofont.compileSettings.createDummyDSIG + + com.typemytype.robofont.compileSettings.decompose + + com.typemytype.robofont.compileSettings.generateFormat + 1 + com.typemytype.robofont.compileSettings.releaseMode + 1 + com.typemytype.robofont.italicSlantOffset + 0 + com.typemytype.robofont.segmentType + curve + com.typemytype.robofont.shouldAddPointsInSplineConversion + 1 + public.glyphOrder + + .notdef + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + S + T + U + V + W + X + Y + Z + a + b + c + d + e + f + g + h + i + j + k + l + m + n + o + p + q + r + s + t + u + v + w + x + y + z + period + comma + colon + semicolon + question + exclam + questiondown + exclamdown + ellipsis + twodotleader + quotedblleft + quotedblright + quotedblbase + quoteleft + quoteright + quotesinglbase + guillemetleft + guillemetright + guilsinglleft + guilsinglright + parenleft + parenright + bracketleft + bracketright + braceleft + braceright + slash + backslash + bar + hyphen + endash + emdash + periodcentered + bullet + underscore + ampersand + at + published + copyright + registered + servicemark + trademark + asterisk + dagger + daggerdbl + section + paragraph + zero + one + two + three + four + five + six + seven + eight + nine + colon.fig + plus + divide + minus + equal + notequal + asciitilde + approxequal + multiply + less + greater + lessequal + greaterequal + plusminus + asciicircum + mu + numbersign + percent + quotedbl + quotesingle + ordfeminine + ordmasculine + degree + dollar + sterling + yen + Euro + naira + peso + uni20BA + uni20BD + uni20B9 + bahtthai + won + cent + dong + onehalf + onethird + twothirds + onequarter + threequarters + onefifth + twofifths + threefifths + fourfifths + onesixth + fivesixths + oneeighth + threeeighths + fiveeighths + seveneighths + zero.sup + one.sup + two.sup + three.sup + four.sup + five.sup + six.sup + seven.sup + eight.sup + nine.sup + zero.inf + one.inf + two.inf + three.inf + four.inf + five.inf + six.inf + seven.inf + eight.inf + nine.inf + primemod + dblprimemod + commaturnedmod + apostrophemod + ringhalfleft + ringhalfright + verticallinemod + verticallinelowmod + acute + hungarumlaut + grave + circumflex + caron + breve + tilde + macron + dieresis + dotaccent + ring + uniA788 + macronlowmod + cedilla + ogonek + Aacute + Agrave + Acircumflex + Acircumflexdotbelow + Acircumflexacute + Acircumflexgrave + Acircumflexhookabove + Acircumflextilde + Acaron + Abreve + Abrevedotbelow + Abreveacute + Abrevegrave + Abrevehookabove + Abrevetilde + Atilde + Amacron + Adieresis + Adotaccent + Aring + Ahookabove + Adotbelow + Aogonek + AE + Blinebelow + Cacute + Ccircumflex + Ccaron + Cdotaccent + Ccedilla + Dcaron + Dcircumflexbelow + Dlinebelow + Ddotbelow + Dcroat + Eacute + Egrave + Ecircumflex + Ecircumflexdotbelow + Ecircumflexacute + Ecircumflexgrave + Ecircumflexhookabove + Ecircumflextilde + Ecaron + Ebreve + Etilde + Emacron + Edieresis + Edotaccent + Ehookabove + Edotbelow + Eogonek + Gcircumflex + Gcaron + Gbreve + Gmacron + Gdotaccent + Gcommaaccent + Hcircumflex + Hbrevebelow + Hdotbelow + Hcedilla + Hbar + Iacute + Igrave + Icircumflex + Icaron + Ibreve + Itilde + Imacron + Idieresis + Idotaccent + Ihookabove + Idotbelow + Iogonek + Jcircumflex + Klinebelow + Kcommaaccent + Kdotbelow + Lacute + Lcaron + Lcommaaccent + Lcircumflexbelow + Llinebelow + Lmacrondotbelow + Ldotbelow + L.dot + Lslash + Macute + Mdotaccent + Mdotbelow + Nacute + Ngrave + Ncaron + Ntilde + Ndotaccent + Ncircumflexbelow + Ncommaaccent + Ndotbelow + Nlinebelow + Eng + Oacute + Ohungarumlaut + Ograve + Ocircumflex + Ocircumflexdotbelow + Ocircumflexacute + Ocircumflexgrave + Ocircumflexhookabove + Ocircumflextilde + Ocaron + Obreve + Otilde + Omacron + Odieresis + Odotaccent + Ohookabove + Odotbelow + Oogonek + Oslash + OE + Ohorn + Ohornacute + Ohorngrave + Ohorntilde + Ohornhookabove + Ohorndotbelow + Racute + Rcaron + Rdotaccent + Rmacrondotbelow + Rcommaaccent + Rdotbelow + Rlinebelow + Sacute + Scircumflex + Scaron + Scommaaccent + Sdotbelow + Scedilla + uni1E9E + Tcaron + Tcircumflexbelow + Tcommaaccent + Tdotbelow + Tlinebelow + Tcedilla + Tbar + Uacute + Uhungarumlaut + Ugrave + Ucircumflex + Ucaron + Ubreve + Utilde + Umacron + Udieresis + Udieresisacute + Udieresisgrave + Udieresiscaron + Udieresismacron + Uring + Uhookabove + Udotbelow + Uogonek + Uhorn + Uhornacute + Uhorngrave + Uhorntilde + Uhornhookabove + Uhorndotbelow + Vdotbelow + Wacute + Wgrave + Wcircumflex + Wdieresis + Xdieresis + Yacute + Ygrave + Ycircumflex + Ytilde + Ymacron + Ydieresis + Ydotaccent + Yhookabove + Ydotbelow + Zacute + Zcircumflex + Zcaron + Zdotaccent + Zdotbelow + Zlinebelow + Eth + Thorn + Schwa + aacute + agrave + acircumflex + acircumflexdotbelow + acircumflexacute + acircumflexgrave + acircumflexhookabove + acircumflextilde + acaron + abreve + abrevedotbelow + abreveacute + abrevegrave + abrevehookabove + abrevetilde + atilde + amacron + adieresis + adotaccent + aring + ahookabove + adotbelow + aogonek + ae + blinebelow + cacute + ccircumflex + ccaron + cdotaccent + ccedilla + dcaron + dcircumflexbelow + dlinebelow + ddotbelow + dcroat + eacute + egrave + ecircumflex + ecircumflexdotbelow + ecircumflexacute + ecircumflexgrave + ecircumflexhookabove + ecircumflextilde + ecaron + ebreve + etilde + emacron + edieresis + edotaccent + ehookabove + edotbelow + eogonek + gcircumflex + gcaron + gbreve + gmacron + gdotaccent + gcommaaccent + hcircumflex + hbrevebelow + hlinebelow + hdotbelow + hcedilla + hbar + dotlessi + iacute + igrave + icircumflex + icaron + ibreve + itilde + imacron + idieresis + idotaccent + ihookabove + idotbelow + iogonek + dotlessj + jcircumflex + jcaron + klinebelow + kcommaaccent + kdotbelow + lacute + lcaron + lcommaaccent + lcircumflexbelow + llinebelow + lmacrondotbelow + ldotbelow + l.dot + lslash + macute + mdotaccent + mdotbelow + nacute + ngrave + ncaron + ntilde + ndotaccent + ncircumflexbelow + ncommaaccent + ndotbelow + nlinebelow + eng + oacute + ohungarumlaut + ograve + ocircumflex + ocircumflexdotbelow + ocircumflexacute + ocircumflexgrave + ocircumflexhookabove + ocircumflextilde + ocaron + obreve + otilde + omacron + odieresis + odotaccent + ohookabove + odotbelow + oogonek + oslash + oe + ohorn + ohornacute + ohorngrave + ohorntilde + ohornhookabove + ohorndotbelow + racute + rcaron + rdotaccent + rmacrondotbelow + rcommaaccent + rdotbelow + rlinebelow + sacute + scircumflex + scaron + scommaaccent + sdotbelow + scedilla + germandbls + tcaron + tcircumflexbelow + tcommaaccent + tdotbelow + tlinebelow + tcedilla + tbar + uacute + uhungarumlaut + ugrave + ucircumflex + ucaron + ubreve + utilde + umacron + udieresis + udieresisacute + udieresisgrave + udieresiscaron + udieresismacron + uring + uhookabove + udotbelow + uogonek + uhorn + uhornacute + uhorngrave + uhorntilde + uhornhookabove + uhorndotbelow + vdotbelow + wacute + wgrave + wcircumflex + wdieresis + xdieresis + yacute + ygrave + ycircumflex + ytilde + ymacron + ydieresis + ydotaccent + yhookabove + ydotbelow + zacute + zcircumflex + zcaron + zdotaccent + zdotbelow + zlinebelow + eth + thorn + schwa + space + uni00A0 + zero.num + one.num + two.num + three.num + four.num + five.num + six.num + seven.num + eight.num + nine.num + fraction + fracbar + zero.den + one.den + two.den + three.den + four.den + five.den + six.den + seven.den + eight.den + nine.den + uni2011 + horizontalbar + middotcat + middotcat.cap + acutecmb + hungarumlautcmb + gravecmb + commaaboverightcmb + circumflexcmb + caroncmb + brevecmb + tildecmb + macroncmb + dieresiscmb + dotaccentcmb + ringcmb + commaturnedabovecmb + hookcmb + circumflexbelowcmb + brevebelowcmb + macronbelowcmb + dieresisbelowcmb + dotbelowcmb + uni0326 + cedillacmb + ogonekcmb + dieresisacute + dieresisgrave + dieresiscaron + dieresismacron + breveacute + brevegrave + brevehook + brevetilde + circumflexacute + circumflexgrave + circumflexhook + circumflextilde + acutecmb.cap + hungarumlautcmb.cap + gravecmb.cap + circumflexcmb.cap + caroncmb.cap + brevecmb.cap + tildecmb.cap + macroncmb.cap + dieresiscmb.cap + dotaccentcmb.cap + ringcmb.cap + hookcmb.cap + dieresisacute.cap + dieresisgrave.cap + dieresiscaron.cap + dieresismacron.cap + breveacute.cap + brevegrave.cap + brevehook.cap + brevetilde.cap + circumflexacute.cap + circumflexgrave.cap + circumflexhook.cap + circumflextilde.cap + lighthorzbxd + heavyhorzbxd + lightvertbxd + heavyvertbxd + lighttrpldashhorzbxd + heavytrpldashhorzbxd + lighttrpldashvertbxd + heavytrpldashvertbxd + lightquaddashhorzbxd + heavyquaddashhorzbxd + lightquaddashvertbxd + heavyquaddashvertbxd + lightdnrightbxd + dnlightrightheavybxd + dnheavyrightlightbxd + heavydnrightbxd + lightdnleftbxd + dnlightleftheavybxd + dnheavyleftlightbxd + heavydnleftbxd + lightuprightbxd + uplightrightheavybxd + upheavyrightlightbxd + heavyuprightbxd + lightupleftbxd + uplightleftheavybxd + upheavyleftlightbxd + heavyupleftbxd + lightvertrightbxd + vertlightrightheavybxd + upheavyrightdnlightbxd + dnheavyrightuplightbxd + vertheavyrightlightbxd + dnlightrightupheavybxd + uplightrightdnheavybxd + heavyvertrightbxd + lightvertleftbxd + vertlightleftheavybxd + upheavyleftdnlightbxd + dnheavyleftuplightbxd + vertheavyleftlightbxd + dnlightleftupheavybxd + uplightleftdnheavybxd + heavyvertleftbxd + lightdnhorzbxd + leftheavyrightdnlightbxd + rightheavyleftdnlightbxd + dnlighthorzheavybxd + dnheavyhorzlightbxd + rightlightleftdnheavybxd + leftlightrightdnheavybxd + heavydnhorzbxd + lightuphorzbxd + leftheavyrightuplightbxd + rightheavyleftuplightbxd + uplighthorzheavybxd + upheavyhorzlightbxd + rightlightleftupheavybxd + leftlightrightupheavybxd + heavyuphorzbxd + lightverthorzbxd + leftheavyrightvertlightbxd + rightheavyleftvertlightbxd + vertlighthorzheavybxd + upheavydnhorzlightbxd + dnheavyuphorzlightbxd + vertheavyhorzlightbxd + leftupheavyrightdnlightbxd + rightupheavyleftdnlightbxd + leftdnheavyrightuplightbxd + rightdnheavyleftuplightbxd + dnlightuphorzheavybxd + uplightdnhorzheavybxd + rightlightleftvertheavybxd + leftlightrightvertheavybxd + heavyverthorzbxd + lightdbldashhorzbxd + heavydbldashhorzbxd + lightdbldashvertbxd + heavydbldashvertbxd + dblhorzbxd + dblvertbxd + dnsngrightdblbxd + dndblrightsngbxd + dbldnrightbxd + dnsngleftdblbxd + dndblleftsngbxd + dbldnleftbxd + upsngrightdblbxd + updblrightsngbxd + dbluprightbxd + upsngleftdblbxd + updblleftsngbxd + dblupleftbxd + vertsngrightdblbxd + vertdblrightsngbxd + dblvertrightbxd + vertsngleftdblbxd + vertdblleftsngbxd + dblvertleftbxd + dnsnghorzdblbxd + dndblhorzsngbxd + dbldnhorzbxd + upsnghorzdblbxd + updblhorzsngbxd + dbluphorzbxd + vertsnghorzdblbxd + vertdblhorzsngbxd + dblverthorzbxd + lightarcdnrightbxd + lightarcdnleftbxd + lightarcupleftbxd + lightarcuprightbxd + lightdiaguprightdnleftbxd + lightdiagupleftdnrightbxd + lightdiagcrossbxd + lightleftbxd + lightupbxd + lightrightbxd + lightdnbxd + heavyleftbxd + heavyupbxd + heavyrightbxd + heavydnbxd + lightleftheavyrightbxd + lightupheavydnbxd + heavyleftlightrightbxd + heavyuplightdnbxd + uphalfblock + dneighthblock + dnquarterblock + dnthreeeighthsblock + dnhalfblock + dnfiveeighthsblock + dnthreequartersblock + dnseveneighthsblock + fullblock + leftseveneighthsblock + leftthreequartersblock + leftfiveeighthsblock + lefthalfblock + leftthreeeighthsblock + leftquarterblock + lefteighthblock + righthalfblock + lightshade + mediumshade + darkshade + upeighthblock + righteighthblock + dnleftquadrant + dnrightquadrant + upleftquadrant + upleftdnleftdnrightquadrant + upleftdnrightquadrant + upleftuprightdnleftquadrant + upleftuprightdnrightquadrant + uprightquadrant + uprightdnleftquadrant + uprightdnleftdnrightquadrant + ligspacer + equal.start + equal.middle + equal.end + hyphen.start + hyphen.middle + hyphen.end + underscore.start + underscore.middle + underscore.end + numbersign.start + numbersign.middle + numbersign.end + period_equal.liga + period_period_equal.liga + period_hyphen.liga + colon_equal.liga + equal_equal.liga + exclam_equal.liga + equal_equal_equal.liga + exclam_equal_equal.liga + less_hyphen_less.liga + less_less_hyphen.liga + less_hyphen.liga + less_hyphen_greater.liga + hyphen_greater.liga + hyphen_greater_greater.liga + greater_hyphen_greater.liga + less_equal_less.liga + less_less_equal.liga + less_equal_greater.liga + equal_greater.liga + less_equal.liga + equal_greater_greater.liga + greater_equal_greater.liga + greater_equal.liga + greater_greater_equal.liga + greater_greater_hyphen.liga + greater_hyphen.liga + less_asciitilde_greater.liga + hyphen_less.liga + hyphen_less_less.liga + equal_less.liga + equal_less_less.liga + less_asciitilde_asciitilde.liga + less_asciitilde.liga + asciitilde_asciitilde.liga + asciitilde_greater.liga + asciitilde_asciitilde_greater + less_exclam_hyphen_hyphen.liga + slash_equal.liga + hyphen_bar.liga + bar_hyphen.liga + bar_equal.liga + hyphen_bar_bar.liga + bar_bar_hyphen.liga + equal_bar_bar.liga + bar_bar_equal.liga + equal_bar.liga + slash_slash_equal.liga + equal_slash.liga + equal_slash_slash.liga + equal_colon_equal.middle + equal_exclam_equal.middle + underscore_bar_underscore.m + hyphen_bar_hyphen.middle + equal_bar_equal.middle + hyphen_greater_hyphen.middle + hyphen_greater_greater_hyphen.m + equal_slash_slash_equal.middle + equal_slash_equal.middle + hyphen_bar_bar_hyphen.middle + equal_bar_bar_equal.middle + hyphen_less_hyphen.middle + hyphen_less_less_hyphen.middle + equal_greater_equal.middle + equal_less_equal.middle + equal_greater_greater_equal.m + equal_less_less_equal.middle + less_hyphen.start + greater_hyphen.start + bar_hyphen.start + less_equal.start + greater_equal.start + bar_equal.start + slash_equal.start + slash_slash_equal.start + less_less_hyphen.start + greater_greater_hyphen.start + bar_bar_hyphen.start + less_less_equal.start + greater_greater_equal.start + bar_bar_equal.start + hyphen_less.end + hyphen_greater.end + hyphen_bar.end + equal_less.end + equal_greater.end + equal_bar.end + hyphen_less_less.end + hyphen_greater_greater.end + hyphen_bar_bar.end + equal_less_less.end + equal_greater_greater.end + equal_bar_bar.end + equal_slash.end + equal_slash_slash.end + less_less_less.liga + less_less.liga + less_equal + less_greater.liga + greater_equal + greater_greater.liga + greater_greater_greater.liga + braceleft_bar.liga + bracketleft_bar.liga + less_colon.liga + colon_less.liga + greater_colon.liga + colon_greater.liga + bar_braceright.liga + bar_bracketright.liga + less_bar_bar_bar.liga + less_bar_bar.liga + less_bar.liga + less_bar_greater.liga + bar_greater.liga + bar_bar_greater.liga + bar_bar_bar_greater.liga + less_dollar.liga + less_dollar_greater.liga + dollar_greater.liga + less_plus.liga + less_plus_greater.liga + plus_greater.liga + less_asterisk.liga + less_asterisk_greater.liga + asterisk_greater.liga + slash_asterisk.liga + asterisk_slash.liga + slash_slash_slash.liga + slash_slash.liga + less_slash.liga + less_slash_greater.liga + slash_greater.liga + semicolon_semicolon.liga + colon_colon.liga + colon_colon_colon.liga + period_period.liga + period_period_period.liga + period_period_less.liga + exclam_exclam.liga + question_question.liga + percent_percent.liga + ampersand_ampersand.liga + bar_bar.liga + question_period.liga + question_colon.liga + plus_plus.liga + plus_plus_plus.liga + hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga + asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga + equal_asciitilde.liga + exclam_asciitilde.liga + asciitilde_hyphen.liga + w_w_w.liga + hyphen_asciitilde.liga + asciitilde_at.liga + asciicircum_equal.liga + question_equal.liga + numbersign_exclam.liga + numbersign_equal.liga + numbersign_colon.liga + numbersign_braceleft.liga + numbersign_bracketleft.liga + bracketright_numbersign.liga + numbersign_parenleft.liga + numbersign_question.liga + numbersign_underscore.liga + numbersign_underscore_parenleft + backslash_slash.liga + bar_bar_bar.liga + colon_colon_equal.liga + exclam_exclam_period.liga + period_question.liga + slash_backslash.liga + uniE0A0 + uniE0A1 + uniE0A2 + uniE0B0 + uniE0B1 + uniE0B2 + uniE0B3 + uni2610 + uni2611 + uni2612 + uni2713 + + public.postscriptNames + + Abreveacute + uni1EAE + Abrevedotbelow + uni1EB6 + Abrevegrave + uni1EB0 + Abrevehookabove + uni1EB2 + Abrevetilde + uni1EB4 + Acaron + uni01CD + Acircumflexacute + uni1EA4 + Acircumflexdotbelow + uni1EAC + Acircumflexgrave + uni1EA6 + Acircumflexhookabove + uni1EA8 + Acircumflextilde + uni1EAA + Adotaccent + uni0226 + Adotbelow + uni1EA0 + Ahookabove + uni1EA2 + Blinebelow + uni1E06 + Dcircumflexbelow + uni1E12 + Ddotbelow + uni1E0C + Dlinebelow + uni1E0E + Ecircumflexacute + uni1EBE + Ecircumflexdotbelow + uni1EC6 + Ecircumflexgrave + uni1EC0 + Ecircumflexhookabove + uni1EC2 + Ecircumflextilde + uni1EC4 + Edotbelow + uni1EB8 + Ehookabove + uni1EBA + Etilde + uni1EBC + Gcommaaccent + uni0122 + Gmacron + uni1E20 + Hbrevebelow + uni1E2A + Hcedilla + uni1E28 + Hdotbelow + uni1E24 + Icaron + uni01CF + Idotbelow + uni1ECA + Ihookabove + uni1EC8 + Kcommaaccent + uni0136 + Kdotbelow + uni1E32 + Klinebelow + uni1E34 + L.dot + Ldot + Lcircumflexbelow + uni1E3C + Lcommaaccent + uni013B + Ldotbelow + uni1E36 + Llinebelow + uni1E3A + Lmacrondotbelow + uni1E38 + Macute + uni1E3E + Mdotaccent + uni1E40 + Mdotbelow + uni1E42 + Ncircumflexbelow + uni1E4A + Ncommaaccent + uni0145 + Ndotaccent + uni1E44 + Ndotbelow + uni1E46 + Ngrave + uni01F8 + Nlinebelow + uni1E48 + Ocaron + uni01D1 + Ocircumflexacute + uni1ED0 + Ocircumflexdotbelow + uni1ED8 + Ocircumflexgrave + uni1ED2 + Ocircumflexhookabove + uni1ED4 + Ocircumflextilde + uni1ED6 + Odotaccent + uni022E + Odotbelow + uni1ECC + Ohookabove + uni1ECE + Ohornacute + uni1EDA + Ohorndotbelow + uni1EE2 + Ohorngrave + uni1EDC + Ohornhookabove + uni1EDE + Ohorntilde + uni1EE0 + Oogonek + uni01EA + Rcommaaccent + uni0156 + Rdotaccent + uni1E58 + Rdotbelow + uni1E5A + Rlinebelow + uni1E5E + Rmacrondotbelow + uni1E5C + Scedilla + uni015E + Schwa + uni018F + Scommaaccent + uni0218 + Sdotbelow + uni1E62 + Tcedilla + uni0162 + Tcircumflexbelow + uni1E70 + Tcommaaccent + uni021A + Tdotbelow + uni1E6C + Tlinebelow + uni1E6E + Ucaron + uni01D3 + Udieresisacute + uni01D7 + Udieresiscaron + uni01D9 + Udieresisgrave + uni01DB + Udieresismacron + uni01D5 + Udotbelow + uni1EE4 + Uhookabove + uni1EE6 + Uhornacute + uni1EE8 + Uhorndotbelow + uni1EF0 + Uhorngrave + uni1EEA + Uhornhookabove + uni1EEC + Uhorntilde + uni1EEE + Vdotbelow + uni1E7E + Xdieresis + uni1E8C + Ydotaccent + uni1E8E + Ydotbelow + uni1EF4 + Yhookabove + uni1EF6 + Ymacron + uni0232 + Ytilde + uni1EF8 + Zcircumflex + uni1E90 + Zdotbelow + uni1E92 + Zlinebelow + uni1E94 + abreveacute + uni1EAF + abrevedotbelow + uni1EB7 + abrevegrave + uni1EB1 + abrevehookabove + uni1EB3 + abrevetilde + uni1EB5 + acaron + uni01CE + acircumflexacute + uni1EA5 + acircumflexdotbelow + uni1EAD + acircumflexgrave + uni1EA7 + acircumflexhookabove + uni1EA9 + acircumflextilde + uni1EAB + acutecmb + uni0301 + acutecmb.cap + uni0301.cap + adotaccent + uni0227 + adotbelow + uni1EA1 + ahookabove + uni1EA3 + apostrophemod + uni02BC + bahtthai + uni0E3F + blinebelow + uni1E07 + breveacute + uni02D80301 + breveacute.cap + uni02D80301.cap + brevebelowcmb + uni032E + brevecmb + uni0306 + brevecmb.cap + uni0306.cap + brevegrave + uni02D80300 + brevegrave.cap + uni02D80300.cap + brevehook + uni02D80309 + brevehook.cap + uni02D80309.cap + brevetilde + uni02D80303 + brevetilde.cap + uni02D80303.cap + caroncmb + uni030C + caroncmb.cap + uni030C.cap + cedillacmb + uni0327 + circumflexacute + uni02C60301 + circumflexacute.cap + uni02C60301.cap + circumflexbelowcmb + uni032D + circumflexcmb + uni0302 + circumflexcmb.cap + uni0302.cap + circumflexgrave + uni02C60300 + circumflexgrave.cap + uni02C60300.cap + circumflexhook + uni02C60309 + circumflexhook.cap + uni02C60309.cap + circumflextilde + uni02C60303 + circumflextilde.cap + uni02C60303.cap + commaaboverightcmb + uni0315 + commaturnedabovecmb + uni0312 + commaturnedmod + uni02BB + dblprimemod + uni02BA + dcircumflexbelow + uni1E13 + ddotbelow + uni1E0D + dieresisacute + uni00A80301 + dieresisacute.cap + uni00A80301.cap + dieresisbelowcmb + uni0324 + dieresiscaron + uni00A8030C + dieresiscaron.cap + uni00A8030C.cap + dieresiscmb + uni0308 + dieresiscmb.cap + uni0308.cap + dieresisgrave + uni00A80300 + dieresisgrave.cap + uni00A80300.cap + dieresismacron + uni00A80304 + dieresismacron.cap + uni00A80304.cap + dlinebelow + uni1E0F + dotaccentcmb + uni0307 + dotaccentcmb.cap + uni0307.cap + dotbelowcmb + uni0323 + dotlessj + uni0237 + ecircumflexacute + uni1EBF + ecircumflexdotbelow + uni1EC7 + ecircumflexgrave + uni1EC1 + ecircumflexhookabove + uni1EC3 + ecircumflextilde + uni1EC5 + edotbelow + uni1EB9 + ehookabove + uni1EBB + etilde + uni1EBD + gcommaaccent + uni0123 + gmacron + uni1E21 + gravecmb + uni0300 + gravecmb.cap + uni0300.cap + guillemetleft + uni00AB + guillemetright + uni00BB + hbrevebelow + uni1E2B + hcedilla + uni1E29 + hdotbelow + uni1E25 + hlinebelow + uni1E96 + hookcmb + uni0309 + hookcmb.cap + uni0309.cap + horizontalbar + uni2015 + hungarumlautcmb + uni030B + hungarumlautcmb.cap + uni030B.cap + icaron + uni01D0 + idotaccent + i.dot + idotbelow + uni1ECB + ihookabove + uni1EC9 + jcaron + uni01F0 + kcommaaccent + uni0137 + kdotbelow + uni1E33 + klinebelow + uni1E35 + l.dot + ldot + lcircumflexbelow + uni1E3D + lcommaaccent + uni013C + ldotbelow + uni1E37 + llinebelow + uni1E3B + lmacrondotbelow + uni1E39 + macronbelowcmb + uni0331 + macroncmb + uni0304 + macroncmb.cap + uni0304.cap + macronlowmod + uni02CD + macute + uni1E3F + mdotaccent + uni1E41 + mdotbelow + uni1E43 + naira + uni20A6 + ncircumflexbelow + uni1E4B + ncommaaccent + uni0146 + ndotaccent + uni1E45 + ndotbelow + uni1E47 + ngrave + uni01F9 + nlinebelow + uni1E49 + ocaron + uni01D2 + ocircumflexacute + uni1ED1 + ocircumflexdotbelow + uni1ED9 + ocircumflexgrave + uni1ED3 + ocircumflexhookabove + uni1ED5 + ocircumflextilde + uni1ED7 + odotaccent + uni022F + odotbelow + uni1ECD + ogonekcmb + uni0328 + ohookabove + uni1ECF + ohornacute + uni1EDB + ohorndotbelow + uni1EE3 + ohorngrave + uni1EDD + ohornhookabove + uni1EDF + ohorntilde + uni1EE1 + oogonek + uni01EB + peso + uni20B1 + primemod + uni02B9 + published + uni2117 + rcommaaccent + uni0157 + rdotaccent + uni1E59 + rdotbelow + uni1E5B + ringcmb + uni030A + ringcmb.cap + uni030A.cap + ringhalfleft + uni02BF + ringhalfright + uni02BE + rlinebelow + uni1E5F + rmacrondotbelow + uni1E5D + scedilla + uni015F + schwa + uni0259 + scommaaccent + uni0219 + sdotbelow + uni1E63 + servicemark + uni2120 + tcedilla + uni0163 + tcircumflexbelow + uni1E71 + tcommaaccent + uni021B + tdotbelow + uni1E6D + tildecmb + uni0303 + tildecmb.cap + uni0303.cap + tlinebelow + uni1E6F + twodotleader + uni2025 + ucaron + uni01D4 + udieresisacute + uni01D8 + udieresiscaron + uni01DA + udieresisgrave + uni01DC + udieresismacron + uni01D6 + udotbelow + uni1EE5 + uhookabove + uni1EE7 + uhornacute + uni1EE9 + uhorndotbelow + uni1EF1 + uhorngrave + uni1EEB + uhornhookabove + uni1EED + uhorntilde + uni1EEF + uni1E9E + uni1E9E + vdotbelow + uni1E7F + verticallinelowmod + uni02CC + verticallinemod + uni02C8 + won + uni20A9 + xdieresis + uni1E8D + ydotaccent + uni1E8F + ydotbelow + uni1EF5 + yhookabove + uni1EF7 + ymacron + uni0233 + ytilde + uni1EF9 + zcircumflex + uni1E91 + zdotbelow + uni1E93 + zlinebelow + uni1E95 + + + diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/metainfo.plist b/sources/instances/truetype/IntelOneMono-BoldItalic.ufo/metainfo.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/metainfo.plist rename to sources/instances/truetype/IntelOneMono-BoldItalic.ufo/metainfo.plist diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/features.fea b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/features.fea deleted file mode 100644 index 25e2754f..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/features.fea +++ /dev/null @@ -1,368 +0,0 @@ -# ---------------------------- -# INTEL ONE MONO OPENTYPE CODE -# ---------------------------- - -# ---------------- -# Language Systems -# ---------------- - -languagesystem DFLT dflt; -languagesystem latn dflt; -languagesystem latn TRK; -languagesystem latn AZE; -languagesystem latn CRT; -languagesystem latn CAT; - - -# ------- -# Classes -# ------- - -# Base Letters -@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; -@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; - -# Figures -@fig = [zero one two three four five six seven eight nine]; -@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; -@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; -@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; -@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; - -# Marks Above -@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; -@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; - -# Marks Below -@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; - - -# --------------- -# Localized Forms -# --------------- - -feature locl { - script latn; - language TRK; - lookup iTurkish { - sub i by idotaccent; - } iTurkish; - language AZE; - lookup iTurkish; - language CRT; - lookup iTurkish; - language CAT; - sub l periodcentered' l by middotcat; - sub L periodcentered' L by middotcat.cap; - # try fusing them - sub L middotcat.cap by L.dot; - sub L middotcat by L.dot; - sub l middotcat by l.dot; -} locl; - - -# --------------------------------- -# Glyph Composition / Decomposition -# --------------------------------- - -feature ccmp { - - # Decompose unicode lowercase characters whose uppercase counterparts have no unicode. - lookup Decomp { - sub hlinebelow by h macronlowmod; - sub jcaron by j caron; - } Decomp; - - # Replace double above accents by combined drawings. - lookup DblMarks { - sub dieresiscmb acutecmb by dieresisacute; - sub dieresiscmb gravecmb by dieresisgrave; - sub dieresiscmb caroncmb by dieresiscaron; - sub dieresiscmb macroncmb by dieresismacron; - sub brevecmb acutecmb by breveacute; - sub brevecmb gravecmb by brevegrave; - sub brevecmb hookcmb by brevehook; - sub brevecmb tildecmb by brevetilde; - sub circumflexcmb acutecmb by circumflexacute; - sub circumflexcmb gravecmb by circumflexgrave; - sub circumflexcmb hookcmb by circumflexhook; - sub circumflexcmb tildecmb by circumflextilde; - # capital forms - sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; - sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; - sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; - sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; - sub brevecmb.cap acutecmb.cap by breveacute.cap; - sub brevecmb.cap gravecmb.cap by brevegrave.cap; - sub brevecmb.cap hookcmb.cap by brevehook.cap; - sub brevecmb.cap tildecmb.cap by brevetilde.cap; - sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; - sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; - sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; - sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; - } DblMarks; - - # Replace combining marks that follow a uppercase letter by their uppercase form - lookup CapitalMarks { - sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; - sub [@ltrUC] [@lcMarks]' by [@ucMarks]; - } CapitalMarks; - - # Replace letters with dotless counterparts when followed by a combining mark - lookup Dotless { - sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; - sub [i j]' [@lcMarks] by [dotlessi dotlessj]; - } Dotless; - - # Replace e ogonek with pre-drawn eogonek - lookup eogonek { - sub e ogonekcmb by eogonek; - } eogonek; - -} ccmp; - - -# ---------- -# Numerators -# ---------- - -feature numr { - sub @fig by @figNum; -} numr; - -# ------------ -# Denominators -# ------------ - -feature dnom { - sub @fig by @figDen; -} dnom; - -# ----------- -# Superscript -# ----------- - -feature sups { - sub @fig by @figSup; -} sups; - -# --------------------- -# Subscript & Inferiors -# --------------------- - -feature subs { - sub @fig by @figInf; -} subs; - -feature sinf { - sub @fig by @figInf; -} sinf; - - -# --------------------- -# Contextual Alternates -# --------------------- - -feature calt { - # shifts colon to align with math symbols when used together - - sub colon' [plus equal greater less hyphen] by colon.fig; - sub [plus equal less greater hyphen] colon' by colon.fig; - - sub colon' [colon colon.fig] by colon.fig; - sub colon.fig colon' by colon.fig; - -} calt; - - -# -------------- -# Stylistic Sets -# -------------- - -feature ss11 { - featureNames { - name "Raised Colon (Figures Only)"; # Windows English - name 1 0 0 "Raised Colon (Figures Only)"; # Mac English - }; - lookup FigureColonContextual { - sub @fig colon' @fig by colon.fig; - } FigureColonContextual; -} ss11; - -feature ss12 { - featureNames { - name "Raised Colon (Global)"; # Windows English - name 1 0 0 "Raised Colon (Global)"; # Mac English - }; - lookup FigureColon { - sub colon by colon.fig; - } FigureColon; -} ss12; - - -# -------------------- -# Stylistic Alternates -# -------------------- - -feature salt { - lookup FigureColon; # SS12 -} salt; - - -# --------------------------------------------------------------------- -# MARK | Generated: November 23, 2022 - 02:37:51 PM by 'markFeature.py' -# --------------------------------------------------------------------- - -markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; -markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; -markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; -markClass [cedillacmb] @mark_belowcedilla; -markClass [ogonekcmb] @mark_belowogonek; - -feature mark { - - lookup aboveLC{ - pos base [a] mark @mark_aboveLC; - pos base [c] mark @mark_aboveLC; - pos base [dotlessi] mark @mark_aboveLC; - pos base [dotlessj] mark @mark_aboveLC; - pos base [e] mark @mark_aboveLC; - pos base [eogonek] mark @mark_aboveLC; - pos base [g] mark @mark_aboveLC; - pos base [m] mark @mark_aboveLC; - pos base [n] mark @mark_aboveLC; - pos base [o] mark @mark_aboveLC; - pos base [p] mark @mark_aboveLC; - pos base [s] mark @mark_aboveLC; - pos base [u] mark @mark_aboveLC; - pos base [z] mark @mark_aboveLC; - } aboveLC; - - lookup aboveUC{ - pos base [A] mark @mark_aboveUC; - pos base [C] mark @mark_aboveUC; - pos base [E] mark @mark_aboveUC; - pos base [Eogonek] mark @mark_aboveUC; - pos base [G] mark @mark_aboveUC; - pos base [I] mark @mark_aboveUC; - pos base [J] mark @mark_aboveUC; - pos base [M] mark @mark_aboveUC; - pos base [N] mark @mark_aboveUC; - pos base [O] mark @mark_aboveUC; - pos base [P] mark @mark_aboveUC; - pos base [S] mark @mark_aboveUC; - pos base [U] mark @mark_aboveUC; - pos base [Z] mark @mark_aboveUC; - } aboveUC; - - lookup below{ - pos base [C] mark @mark_below; - pos base [Dcroat] mark @mark_below; - pos base [E] mark @mark_below; - pos base [H] mark @mark_below; - pos base [I] mark @mark_below; - pos base [O] mark @mark_below; - pos base [S] mark @mark_below; - pos base [U] mark @mark_below; - pos base [X] mark @mark_below; - pos base [Z] mark @mark_below; - pos base [c] mark @mark_below; - pos base [dcroat] mark @mark_below; - pos base [dotlessi] mark @mark_below; - pos base [e] mark @mark_below; - pos base [h] mark @mark_below; - pos base [o] mark @mark_below; - pos base [s] mark @mark_below; - pos base [u] mark @mark_below; - pos base [x] mark @mark_below; - pos base [z] mark @mark_below; - } below; - - lookup belowcedilla{ - pos base [Z] mark @mark_belowcedilla; - pos base [z] mark @mark_belowcedilla; - } belowcedilla; - - lookup belowogonek{ - pos base [A] mark @mark_belowogonek; - pos base [E] mark @mark_belowogonek; - pos base [I] mark @mark_belowogonek; - pos base [O] mark @mark_belowogonek; - pos base [U] mark @mark_belowogonek; - pos base [a] mark @mark_belowogonek; - pos base [dotlessi] mark @mark_belowogonek; - pos base [e] mark @mark_belowogonek; - pos base [o] mark @mark_belowogonek; - pos base [u] mark @mark_belowogonek; - } belowogonek; - -} mark; - -@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; -@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; - -table GDEF { - GlyphClassDef @BASES,,@MARKS,; -} GDEF; - - -# -------------- -# All Alternates -# -------------- - -feature aalt { - sub germandbls from [germandbls uni1E9E]; - sub uni1E9E from [uni1E9E germandbls]; - sub colon from [colon colon.fig]; - sub colon.fig from [colon.fig colon]; - sub eight from [eight eight.den eight.sup eight.num eight.inf]; - sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; - sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; - sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; - sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; - sub five from [five five.inf five.num five.den five.sup]; - sub five.sup from [five.sup five five.inf five.num five.den]; - sub five.den from [five.den five.sup five five.inf five.num]; - sub five.num from [five.num five.den five.sup five five.inf]; - sub five.inf from [five.inf five.num five.den five.sup five]; - sub four from [four four.sup four.num four.den four.inf]; - sub four.inf from [four.inf four four.sup four.num four.den]; - sub four.den from [four.den four.inf four four.sup four.num]; - sub four.num from [four.num four.den four.inf four four.sup]; - sub four.sup from [four.sup four.num four.den four.inf four]; - sub nine from [nine nine.den nine.inf nine.num nine.sup]; - sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; - sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; - sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; - sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; - sub one from [one one.den one.num one.inf one.sup]; - sub one.sup from [one.sup one one.den one.num one.inf]; - sub one.inf from [one.inf one.sup one one.den one.num]; - sub one.num from [one.num one.inf one.sup one one.den]; - sub one.den from [one.den one.num one.inf one.sup one]; - sub seven from [seven seven.inf seven.num seven.sup seven.den]; - sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; - sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; - sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; - sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; - sub six from [six six.num six.sup six.den six.inf]; - sub six.inf from [six.inf six six.num six.sup six.den]; - sub six.den from [six.den six.inf six six.num six.sup]; - sub six.sup from [six.sup six.den six.inf six six.num]; - sub six.num from [six.num six.sup six.den six.inf six]; - sub three from [three three.inf three.den three.num three.sup]; - sub three.sup from [three.sup three three.inf three.den three.num]; - sub three.num from [three.num three.sup three three.inf three.den]; - sub three.den from [three.den three.num three.sup three three.inf]; - sub three.inf from [three.inf three.den three.num three.sup three]; - sub two from [two two.inf two.sup two.num two.den]; - sub two.den from [two.den two two.inf two.sup two.num]; - sub two.num from [two.num two.den two two.inf two.sup]; - sub two.sup from [two.sup two.num two.den two two.inf]; - sub two.inf from [two.inf two.sup two.num two.den two]; - sub zero from [zero zero.sup zero.num zero.den zero.inf]; - sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; - sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; - sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; - sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; -} aalt; diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/fontinfo.plist b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/fontinfo.plist deleted file mode 100644 index 89e042da..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/fontinfo.plist +++ /dev/null @@ -1,379 +0,0 @@ - - - - - ascender - 740 - capHeight - 655 - copyright - Copyright 2023 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) - descender - -260 - familyName - Intel One Mono - guidelines - - italicAngle - -16.0 - openTypeHeadFlags - - 0 - 1 - - openTypeHheaAscender - 1090 - openTypeHheaDescender - -290 - openTypeHheaLineGap - 0 - openTypeNameDesigner - Fred Shallcrass - openTypeNameDesignerURL - http://frerejones.com - openTypeNameLicense - This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL - openTypeNameLicenseURL - https://github.com/intel/intel-one-mono/blob/main/license - openTypeNameManufacturer - Frere-Jones Type LLC - openTypeNameManufacturerURL - http://frerejones.com - openTypeNameRecords - - - encodingID - 0 - languageID - 0 - nameID - 0 - platformID - 1 - string - (C) 2023 Intel Corporation - - - encodingID - 1 - languageID - 1033 - nameID - 0 - platformID - 3 - string - (C) 2023 Intel Corporation - - - encodingID - 0 - languageID - 0 - nameID - 1 - platformID - 1 - string - Intel One Mono - - - encodingID - 1 - languageID - 1033 - nameID - 1 - platformID - 3 - string - Intel One Mono - - - encodingID - 0 - languageID - 0 - nameID - 2 - platformID - 1 - string - Italic - - - encodingID - 1 - languageID - 1033 - nameID - 2 - platformID - 3 - string - Italic - - - encodingID - 0 - languageID - 0 - nameID - 4 - platformID - 1 - string - Intel One Mono Italic - - - encodingID - 1 - languageID - 1033 - nameID - 4 - platformID - 3 - string - Intel One Mono Italic - - - encodingID - 0 - languageID - 0 - nameID - 6 - platformID - 1 - string - IntelOneMono-Italic - - - encodingID - 1 - languageID - 1033 - nameID - 6 - platformID - 3 - string - IntelOneMono-Italic - - - encodingID - 0 - languageID - 0 - nameID - 8 - platformID - 1 - string - Frere-Jones Type LLC - - - encodingID - 1 - languageID - 1033 - nameID - 8 - platformID - 3 - string - Frere-Jones Type LLC - - - encodingID - 0 - languageID - 0 - nameID - 9 - platformID - 1 - string - Fred Shallcrass - - - encodingID - 1 - languageID - 1033 - nameID - 9 - platformID - 3 - string - Fred Shallcrass - - - encodingID - 0 - languageID - 0 - nameID - 11 - platformID - 1 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 11 - platformID - 3 - string - http://frerejones.com - - - encodingID - 0 - languageID - 0 - nameID - 12 - platformID - 1 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 12 - platformID - 3 - string - http://frerejones.com - - - openTypeOS2CodePageRanges - - 0 - 1 - 4 - 7 - 8 - 29 - - openTypeOS2Panose - - 2 - 11 - 5 - 9 - 2 - 2 - 3 - 9 - 2 - 4 - - openTypeOS2Selection - - 7 - 8 - - openTypeOS2StrikeoutPosition - 286 - openTypeOS2StrikeoutSize - 50 - openTypeOS2Type - - openTypeOS2TypoAscender - 1090 - openTypeOS2TypoDescender - -290 - openTypeOS2TypoLineGap - 0 - openTypeOS2UnicodeRanges - - 0 - 1 - 2 - 29 - 32 - - openTypeOS2VendorID - FRJN - openTypeOS2WeightClass - 400 - openTypeOS2WidthClass - 5 - openTypeOS2WinAscent - 1090 - openTypeOS2WinDescent - 290 - postscriptBlueFuzz - 0 - postscriptBlueScale - 0.05 - postscriptBlueValues - - -15 - 0 - 465 - 480 - 655 - 670 - 710 - 725 - - postscriptDefaultWidthX - 614 - postscriptFamilyBlues - - postscriptFamilyOtherBlues - - postscriptFontName - IntelOneMono-Italic - postscriptForceBold - - postscriptFullName - Intel One Mono Italic - postscriptIsFixedPitch - - postscriptOtherBlues - - -245 - -230 - - postscriptStemSnapH - - 72 - - postscriptStemSnapV - - 82 - - postscriptUnderlinePosition - -75 - postscriptUnderlineThickness - 50 - styleMapFamilyName - Intel One Mono - styleMapStyleName - italic - styleName - Italic - unitsPerEm - 1000 - versionMajor - 1 - versionMinor - 3 - xHeight - 465 - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_.dot.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_.dot.glif deleted file mode 100644 index 15766a9e..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_.dot.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_E_.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_E_.glif deleted file mode 100644 index 0d237ceb..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_E_.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_breve.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_breve.glif deleted file mode 100644 index cad1e753..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_breve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_caron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_caron.glif deleted file mode 100644 index ebcc3d0a..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_circumflex.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_circumflex.glif deleted file mode 100644 index 5b3ff050..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_circumflexacute.glif deleted file mode 100644 index 5bffe755..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_circumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_circumflexdotbelow.glif deleted file mode 100644 index c31111e0..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_circumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_circumflexgrave.glif deleted file mode 100644 index eaa941a5..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_circumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_circumflexhookabove.glif deleted file mode 100644 index 4925cacd..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_circumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_circumflextilde.glif deleted file mode 100644 index 510f00fc..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_circumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_dieresis.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_dieresis.glif deleted file mode 100644 index 78132290..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_dotaccent.glif deleted file mode 100644 index d4aa73ba..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_dotbelow.glif deleted file mode 100644 index 2f788db1..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_hookabove.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_hookabove.glif deleted file mode 100644 index 2042bc44..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_horn.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_horn.glif deleted file mode 100644 index f7c9048d..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_horn.glif +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_hornacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_hornacute.glif deleted file mode 100644 index 80e90953..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_hornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_horndotbelow.glif deleted file mode 100644 index 770b0c68..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_horndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_horngrave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_horngrave.glif deleted file mode 100644 index 9be9f8c4..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_horngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_hornhookabove.glif deleted file mode 100644 index aafc52b6..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_hornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_horntilde.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_horntilde.glif deleted file mode 100644 index c06fab35..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_horntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_macron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_macron.glif deleted file mode 100644 index abc5f6b3..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_ogonek.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_ogonek.glif deleted file mode 100644 index 3be4dcf5..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_ogonek.glif +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_slash.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_slash.glif deleted file mode 100644 index 30d8e122..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_slash.glif +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_tilde.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_tilde.glif deleted file mode 100644 index ec5aaeae..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_acute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_acute.glif deleted file mode 100644 index de1c5d67..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_caron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_caron.glif deleted file mode 100644 index 313daf2c..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_commaaccent.glif deleted file mode 100644 index da835900..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_dotaccent.glif deleted file mode 100644 index 0c4882f7..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_dotbelow.glif deleted file mode 100644 index 38d4d9d1..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_linebelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_linebelow.glif deleted file mode 100644 index cae0a0a7..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_macrondotbelow.glif deleted file mode 100644 index 3a48ebd9..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_macrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_acute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_acute.glif deleted file mode 100644 index f5f13e61..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_caron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_caron.glif deleted file mode 100644 index 3e88388b..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_cedilla.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_cedilla.glif deleted file mode 100644 index 64a87fc2..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_cedilla.glif +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_chwa.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_chwa.glif deleted file mode 100644 index dd974f15..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_chwa.glif +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_circumflex.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_circumflex.glif deleted file mode 100644 index a7f9649f..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_commaaccent.glif deleted file mode 100644 index a1f3be3e..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_dotbelow.glif deleted file mode 100644 index c3649807..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_caron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_caron.glif deleted file mode 100644 index 5993802f..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_cedilla.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_cedilla.glif deleted file mode 100644 index f6f411e0..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_cedilla.glif +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_circumflexbelow.glif deleted file mode 100644 index e61163f7..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_circumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_commaaccent.glif deleted file mode 100644 index 0208bcc5..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_dotbelow.glif deleted file mode 100644 index e93b1dc3..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_horn.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_horn.glif deleted file mode 100644 index b50c2ee3..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_horn.glif +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_linebelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_linebelow.glif deleted file mode 100644 index 034c54ec..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_circumflex.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_circumflex.glif deleted file mode 100644 index a790e335..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_dieresis.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_dieresis.glif deleted file mode 100644 index a6d22fd5..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_dieresisacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_dieresisacute.glif deleted file mode 100644 index ce10b66d..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_dieresisacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_dieresiscaron.glif deleted file mode 100644 index da612539..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_dieresiscaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_dieresisgrave.glif deleted file mode 100644 index 877c3631..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_dieresisgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_dieresismacron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_dieresismacron.glif deleted file mode 100644 index 7ad542b1..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_dieresismacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_dotbelow.glif deleted file mode 100644 index 00dcf823..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_hookabove.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_hookabove.glif deleted file mode 100644 index 65ced7a0..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_horn.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_horn.glif deleted file mode 100644 index 021b0c7d..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_horn.glif +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_hornacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_hornacute.glif deleted file mode 100644 index 14489b76..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_hornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_horndotbelow.glif deleted file mode 100644 index 7a4adb1d..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_horndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_horngrave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_horngrave.glif deleted file mode 100644 index dad2d04c..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_horngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_hornhookabove.glif deleted file mode 100644 index fe5624cc..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_hornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_horntilde.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_horntilde.glif deleted file mode 100644 index 1822b4fa..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_horntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_hungarumlaut.glif deleted file mode 100644 index 2fb78f3e..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_hungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_macron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_macron.glif deleted file mode 100644 index f0eb5564..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_ogonek.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_ogonek.glif deleted file mode 100644 index 5889ac7f..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_ogonek.glif +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_tilde.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_tilde.glif deleted file mode 100644 index 52835fdf..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/W_acute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/W_acute.glif deleted file mode 100644 index 06753034..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/W_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/W_circumflex.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/W_circumflex.glif deleted file mode 100644 index d51dcbeb..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/W_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/W_dieresis.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/W_dieresis.glif deleted file mode 100644 index a1dbedd3..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/W_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/W_grave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/W_grave.glif deleted file mode 100644 index 2809da4b..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/W_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/X_dieresis.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/X_dieresis.glif deleted file mode 100644 index b0987408..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/X_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_acute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_acute.glif deleted file mode 100644 index 7d65af08..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_circumflex.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_circumflex.glif deleted file mode 100644 index b6d24861..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_dieresis.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_dieresis.glif deleted file mode 100644 index 2d30a338..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_dotaccent.glif deleted file mode 100644 index bce7b605..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_grave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_grave.glif deleted file mode 100644 index 3cf27fc4..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_hookabove.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_hookabove.glif deleted file mode 100644 index ecd373d8..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_macron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_macron.glif deleted file mode 100644 index 9ad437d3..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_tilde.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_tilde.glif deleted file mode 100644 index 98069a19..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Z_acute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Z_acute.glif deleted file mode 100644 index 67cd6124..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Z_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Z_caron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Z_caron.glif deleted file mode 100644 index 2f1ee2c5..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Z_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Z_circumflex.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Z_circumflex.glif deleted file mode 100644 index bc67ce77..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Z_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Z_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Z_dotaccent.glif deleted file mode 100644 index 3422125b..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Z_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Z_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Z_dotbelow.glif deleted file mode 100644 index bc7a685b..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Z_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Z_linebelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Z_linebelow.glif deleted file mode 100644 index 9ac24ed3..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Z_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/aacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/aacute.glif deleted file mode 100644 index 5b5b24ef..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/aacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/abreve.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/abreve.glif deleted file mode 100644 index 61ef8fe1..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/abreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/abreveacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/abreveacute.glif deleted file mode 100644 index 1c0ccf06..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/abreveacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/abrevedotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/abrevedotbelow.glif deleted file mode 100644 index 8cdf8c9f..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/abrevedotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/abrevegrave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/abrevegrave.glif deleted file mode 100644 index 9645c9ad..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/abrevegrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/abrevehookabove.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/abrevehookabove.glif deleted file mode 100644 index f414b6a9..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/abrevehookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/abrevetilde.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/abrevetilde.glif deleted file mode 100644 index 303ae56b..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/abrevetilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acaron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acaron.glif deleted file mode 100644 index 3645e842..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acircumflex.glif deleted file mode 100644 index ee2b0496..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acircumflexacute.glif deleted file mode 100644 index efd33988..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acircumflexdotbelow.glif deleted file mode 100644 index bd59793d..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acircumflexgrave.glif deleted file mode 100644 index 2895a0fb..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acircumflexhookabove.glif deleted file mode 100644 index 73d1dec5..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acircumflextilde.glif deleted file mode 100644 index f51899ae..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/adieresis.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/adieresis.glif deleted file mode 100644 index 1ea0d0e8..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/adieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/adotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/adotaccent.glif deleted file mode 100644 index da391dce..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/adotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/adotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/adotbelow.glif deleted file mode 100644 index 7b0172ad..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/adotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ae.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ae.glif deleted file mode 100644 index 2a33b6bc..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ae.glif +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/agrave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/agrave.glif deleted file mode 100644 index 31bdd6e4..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/agrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ahookabove.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ahookabove.glif deleted file mode 100644 index 64666244..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ahookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/amacron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/amacron.glif deleted file mode 100644 index b3c7f183..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/amacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/aogonek.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/aogonek.glif deleted file mode 100644 index 98c73adc..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/aogonek.glif +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/aring.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/aring.glif deleted file mode 100644 index f0110246..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/aring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/atilde.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/atilde.glif deleted file mode 100644 index f0249312..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/atilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/blinebelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/blinebelow.glif deleted file mode 100644 index 35d6c9f0..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/blinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/breveacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/breveacute.glif deleted file mode 100644 index 43a76b1e..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/breveacute.glif +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevegrave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevegrave.glif deleted file mode 100644 index 8a50f4a8..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevegrave.glif +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevehook.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevehook.glif deleted file mode 100644 index 2b9f0f79..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevehook.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevetilde.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevetilde.glif deleted file mode 100644 index b37ea9fc..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevetilde.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/cacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/cacute.glif deleted file mode 100644 index 6ae28b6a..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/cacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ccaron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ccaron.glif deleted file mode 100644 index 6c3520a6..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ccaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ccedilla.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ccedilla.glif deleted file mode 100644 index 5a68c04e..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ccedilla.glif +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ccircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ccircumflex.glif deleted file mode 100644 index c6ea1926..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ccircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/cdotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/cdotaccent.glif deleted file mode 100644 index 19425f6e..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/cdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflexhook.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflexhook.glif deleted file mode 100644 index 41a22104..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflexhook.glif +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflextilde.glif deleted file mode 100644 index 067c4f94..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflextilde.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/commaturnedabovecmb.glif deleted file mode 100644 index c8e7f66b..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/commaturnedabovecmb.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/contents.plist b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/contents.plist deleted file mode 100644 index 9b3fa25c..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/contents.plist +++ /dev/null @@ -1,1374 +0,0 @@ - - - - - .notdef - _notdef.glif - A - A_.glif - AE - A_E_.glif - Aacute - A_acute.glif - Abreve - A_breve.glif - Abreveacute - A_breveacute.glif - Abrevedotbelow - A_brevedotbelow.glif - Abrevegrave - A_brevegrave.glif - Abrevehookabove - A_brevehookabove.glif - Abrevetilde - A_brevetilde.glif - Acaron - A_caron.glif - Acircumflex - A_circumflex.glif - Acircumflexacute - A_circumflexacute.glif - Acircumflexdotbelow - A_circumflexdotbelow.glif - Acircumflexgrave - A_circumflexgrave.glif - Acircumflexhookabove - A_circumflexhookabove.glif - Acircumflextilde - A_circumflextilde.glif - Adieresis - A_dieresis.glif - Adotaccent - A_dotaccent.glif - Adotbelow - A_dotbelow.glif - Agrave - A_grave.glif - Ahookabove - A_hookabove.glif - Amacron - A_macron.glif - Aogonek - A_ogonek.glif - Aring - A_ring.glif - Atilde - A_tilde.glif - B - B_.glif - Blinebelow - B_linebelow.glif - C - C_.glif - Cacute - C_acute.glif - Ccaron - C_caron.glif - Ccedilla - C_cedilla.glif - Ccircumflex - C_circumflex.glif - Cdotaccent - C_dotaccent.glif - D - D_.glif - Dcaron - D_caron.glif - Dcircumflexbelow - D_circumflexbelow.glif - Dcroat - D_croat.glif - Ddotbelow - D_dotbelow.glif - Dlinebelow - D_linebelow.glif - E - E_.glif - Eacute - E_acute.glif - Ebreve - E_breve.glif - Ecaron - E_caron.glif - Ecircumflex - E_circumflex.glif - Ecircumflexacute - E_circumflexacute.glif - Ecircumflexdotbelow - E_circumflexdotbelow.glif - Ecircumflexgrave - E_circumflexgrave.glif - Ecircumflexhookabove - E_circumflexhookabove.glif - Ecircumflextilde - E_circumflextilde.glif - Edieresis - E_dieresis.glif - Edotaccent - E_dotaccent.glif - Edotbelow - E_dotbelow.glif - Egrave - E_grave.glif - Ehookabove - E_hookabove.glif - Emacron - E_macron.glif - Eng - E_ng.glif - Eogonek - E_ogonek.glif - Eth - E_th.glif - Etilde - E_tilde.glif - Euro - E_uro.glif - F - F_.glif - G - G_.glif - Gbreve - G_breve.glif - Gcaron - G_caron.glif - Gcircumflex - G_circumflex.glif - Gcommaaccent - G_commaaccent.glif - Gdotaccent - G_dotaccent.glif - Gmacron - G_macron.glif - H - H_.glif - Hbar - H_bar.glif - Hbrevebelow - H_brevebelow.glif - Hcedilla - H_cedilla.glif - Hcircumflex - H_circumflex.glif - Hdotbelow - H_dotbelow.glif - I - I_.glif - Iacute - I_acute.glif - Ibreve - I_breve.glif - Icaron - I_caron.glif - Icircumflex - I_circumflex.glif - Idieresis - I_dieresis.glif - Idotaccent - I_dotaccent.glif - Idotbelow - I_dotbelow.glif - Igrave - I_grave.glif - Ihookabove - I_hookabove.glif - Imacron - I_macron.glif - Iogonek - I_ogonek.glif - Itilde - I_tilde.glif - J - J_.glif - Jcircumflex - J_circumflex.glif - K - K_.glif - Kcommaaccent - K_commaaccent.glif - Kdotbelow - K_dotbelow.glif - Klinebelow - K_linebelow.glif - L - L_.glif - L.dot - L_.dot.glif - Lacute - L_acute.glif - Lcaron - L_caron.glif - Lcircumflexbelow - L_circumflexbelow.glif - Lcommaaccent - L_commaaccent.glif - Ldotbelow - L_dotbelow.glif - Llinebelow - L_linebelow.glif - Lmacrondotbelow - L_macrondotbelow.glif - Lslash - L_slash.glif - M - M_.glif - Macute - M_acute.glif - Mdotaccent - M_dotaccent.glif - Mdotbelow - M_dotbelow.glif - N - N_.glif - Nacute - N_acute.glif - Ncaron - N_caron.glif - Ncircumflexbelow - N_circumflexbelow.glif - Ncommaaccent - N_commaaccent.glif - Ndotaccent - N_dotaccent.glif - Ndotbelow - N_dotbelow.glif - Ngrave - N_grave.glif - Nlinebelow - N_linebelow.glif - Ntilde - N_tilde.glif - O - O_.glif - OE - O_E_.glif - Oacute - O_acute.glif - Obreve - O_breve.glif - Ocaron - O_caron.glif - Ocircumflex - O_circumflex.glif - Ocircumflexacute - O_circumflexacute.glif - Ocircumflexdotbelow - O_circumflexdotbelow.glif - Ocircumflexgrave - O_circumflexgrave.glif - Ocircumflexhookabove - O_circumflexhookabove.glif - Ocircumflextilde - O_circumflextilde.glif - Odieresis - O_dieresis.glif - Odotaccent - O_dotaccent.glif - Odotbelow - O_dotbelow.glif - Ograve - O_grave.glif - Ohookabove - O_hookabove.glif - Ohorn - O_horn.glif - Ohornacute - O_hornacute.glif - Ohorndotbelow - O_horndotbelow.glif - Ohorngrave - O_horngrave.glif - Ohornhookabove - O_hornhookabove.glif - Ohorntilde - O_horntilde.glif - Ohungarumlaut - O_hungarumlaut.glif - Omacron - O_macron.glif - Oogonek - O_ogonek.glif - Oslash - O_slash.glif - Otilde - O_tilde.glif - P - P_.glif - Q - Q_.glif - R - R_.glif - Racute - R_acute.glif - Rcaron - R_caron.glif - Rcommaaccent - R_commaaccent.glif - Rdotaccent - R_dotaccent.glif - Rdotbelow - R_dotbelow.glif - Rlinebelow - R_linebelow.glif - Rmacrondotbelow - R_macrondotbelow.glif - S - S_.glif - Sacute - S_acute.glif - Scaron - S_caron.glif - Scedilla - S_cedilla.glif - Schwa - S_chwa.glif - Scircumflex - S_circumflex.glif - Scommaaccent - S_commaaccent.glif - Sdotbelow - S_dotbelow.glif - T - T_.glif - Tbar - T_bar.glif - Tcaron - T_caron.glif - Tcedilla - T_cedilla.glif - Tcircumflexbelow - T_circumflexbelow.glif - Tcommaaccent - T_commaaccent.glif - Tdotbelow - T_dotbelow.glif - Thorn - T_horn.glif - Tlinebelow - T_linebelow.glif - U - U_.glif - Uacute - U_acute.glif - Ubreve - U_breve.glif - Ucaron - U_caron.glif - Ucircumflex - U_circumflex.glif - Udieresis - U_dieresis.glif - Udieresisacute - U_dieresisacute.glif - Udieresiscaron - U_dieresiscaron.glif - Udieresisgrave - U_dieresisgrave.glif - Udieresismacron - U_dieresismacron.glif - Udotbelow - U_dotbelow.glif - Ugrave - U_grave.glif - Uhookabove - U_hookabove.glif - Uhorn - U_horn.glif - Uhornacute - U_hornacute.glif - Uhorndotbelow - U_horndotbelow.glif - Uhorngrave - U_horngrave.glif - Uhornhookabove - U_hornhookabove.glif - Uhorntilde - U_horntilde.glif - Uhungarumlaut - U_hungarumlaut.glif - Umacron - U_macron.glif - Uogonek - U_ogonek.glif - Uring - U_ring.glif - Utilde - U_tilde.glif - V - V_.glif - Vdotbelow - V_dotbelow.glif - W - W_.glif - Wacute - W_acute.glif - Wcircumflex - W_circumflex.glif - Wdieresis - W_dieresis.glif - Wgrave - W_grave.glif - X - X_.glif - Xdieresis - X_dieresis.glif - Y - Y_.glif - Yacute - Y_acute.glif - Ycircumflex - Y_circumflex.glif - Ydieresis - Y_dieresis.glif - Ydotaccent - Y_dotaccent.glif - Ydotbelow - Y_dotbelow.glif - Ygrave - Y_grave.glif - Yhookabove - Y_hookabove.glif - Ymacron - Y_macron.glif - Ytilde - Y_tilde.glif - Z - Z_.glif - Zacute - Z_acute.glif - Zcaron - Z_caron.glif - Zcircumflex - Z_circumflex.glif - Zdotaccent - Z_dotaccent.glif - Zdotbelow - Z_dotbelow.glif - Zlinebelow - Z_linebelow.glif - a - a.glif - aacute - aacute.glif - abreve - abreve.glif - abreveacute - abreveacute.glif - abrevedotbelow - abrevedotbelow.glif - abrevegrave - abrevegrave.glif - abrevehookabove - abrevehookabove.glif - abrevetilde - abrevetilde.glif - acaron - acaron.glif - acircumflex - acircumflex.glif - acircumflexacute - acircumflexacute.glif - acircumflexdotbelow - acircumflexdotbelow.glif - acircumflexgrave - acircumflexgrave.glif - acircumflexhookabove - acircumflexhookabove.glif - acircumflextilde - acircumflextilde.glif - acute - acute.glif - acutecmb - acutecmb.glif - acutecmb.cap - acutecmb.cap.glif - adieresis - adieresis.glif - adotaccent - adotaccent.glif - adotbelow - adotbelow.glif - ae - ae.glif - agrave - agrave.glif - ahookabove - ahookabove.glif - amacron - amacron.glif - ampersand - ampersand.glif - aogonek - aogonek.glif - apostrophemod - apostrophemod.glif - approxequal - approxequal.glif - aring - aring.glif - asciicircum - asciicircum.glif - asciitilde - asciitilde.glif - asterisk - asterisk.glif - at - at.glif - atilde - atilde.glif - b - b.glif - backslash - backslash.glif - bahtthai - bahtthai.glif - bar - bar.glif - blinebelow - blinebelow.glif - braceleft - braceleft.glif - braceright - braceright.glif - bracketleft - bracketleft.glif - bracketright - bracketright.glif - breve - breve.glif - breveacute - breveacute.glif - breveacute.cap - breveacute.cap.glif - brevebelowcmb - brevebelowcmb.glif - brevecmb - brevecmb.glif - brevecmb.cap - brevecmb.cap.glif - brevegrave - brevegrave.glif - brevegrave.cap - brevegrave.cap.glif - brevehook - brevehook.glif - brevehook.cap - brevehook.cap.glif - brevetilde - brevetilde.glif - brevetilde.cap - brevetilde.cap.glif - bullet - bullet.glif - c - c.glif - cacute - cacute.glif - caron - caron.glif - caroncmb - caroncmb.glif - caroncmb.cap - caroncmb.cap.glif - ccaron - ccaron.glif - ccedilla - ccedilla.glif - ccircumflex - ccircumflex.glif - cdotaccent - cdotaccent.glif - cedilla - cedilla.glif - cedillacmb - cedillacmb.glif - cent - cent.glif - circumflex - circumflex.glif - circumflexacute - circumflexacute.glif - circumflexacute.cap - circumflexacute.cap.glif - circumflexbelowcmb - circumflexbelowcmb.glif - circumflexcmb - circumflexcmb.glif - circumflexcmb.cap - circumflexcmb.cap.glif - circumflexgrave - circumflexgrave.glif - circumflexgrave.cap - circumflexgrave.cap.glif - circumflexhook - circumflexhook.glif - circumflexhook.cap - circumflexhook.cap.glif - circumflextilde - circumflextilde.glif - circumflextilde.cap - circumflextilde.cap.glif - colon - colon.glif - colon.fig - colon.fig.glif - comma - comma.glif - commaaboverightcmb - commaaboverightcmb.glif - commaturnedabovecmb - commaturnedabovecmb.glif - commaturnedmod - commaturnedmod.glif - copyright - copyright.glif - d - d.glif - dagger - dagger.glif - daggerdbl - daggerdbl.glif - dblprimemod - dblprimemod.glif - dcaron - dcaron.glif - dcircumflexbelow - dcircumflexbelow.glif - dcroat - dcroat.glif - ddotbelow - ddotbelow.glif - degree - degree.glif - dieresis - dieresis.glif - dieresisacute - dieresisacute.glif - dieresisacute.cap - dieresisacute.cap.glif - dieresisbelowcmb - dieresisbelowcmb.glif - dieresiscaron - dieresiscaron.glif - dieresiscaron.cap - dieresiscaron.cap.glif - dieresiscmb - dieresiscmb.glif - dieresiscmb.cap - dieresiscmb.cap.glif - dieresisgrave - dieresisgrave.glif - dieresisgrave.cap - dieresisgrave.cap.glif - dieresismacron - dieresismacron.glif - dieresismacron.cap - dieresismacron.cap.glif - divide - divide.glif - dlinebelow - dlinebelow.glif - dollar - dollar.glif - dong - dong.glif - dotaccent - dotaccent.glif - dotaccentcmb - dotaccentcmb.glif - dotaccentcmb.cap - dotaccentcmb.cap.glif - dotbelowcmb - dotbelowcmb.glif - dotlessi - dotlessi.glif - dotlessj - dotlessj.glif - e - e.glif - eacute - eacute.glif - ebreve - ebreve.glif - ecaron - ecaron.glif - ecircumflex - ecircumflex.glif - ecircumflexacute - ecircumflexacute.glif - ecircumflexdotbelow - ecircumflexdotbelow.glif - ecircumflexgrave - ecircumflexgrave.glif - ecircumflexhookabove - ecircumflexhookabove.glif - ecircumflextilde - ecircumflextilde.glif - edieresis - edieresis.glif - edotaccent - edotaccent.glif - edotbelow - edotbelow.glif - egrave - egrave.glif - ehookabove - ehookabove.glif - eight - eight.glif - eight.den - eight.den.glif - eight.inf - eight.inf.glif - eight.num - eight.num.glif - eight.sup - eight.sup.glif - ellipsis - ellipsis.glif - emacron - emacron.glif - emdash - emdash.glif - endash - endash.glif - eng - eng.glif - eogonek - eogonek.glif - equal - equal.glif - eth - eth.glif - etilde - etilde.glif - exclam - exclam.glif - exclamdown - exclamdown.glif - f - f.glif - five - five.glif - five.den - five.den.glif - five.inf - five.inf.glif - five.num - five.num.glif - five.sup - five.sup.glif - fiveeighths - fiveeighths.glif - fivesixths - fivesixths.glif - four - four.glif - four.den - four.den.glif - four.inf - four.inf.glif - four.num - four.num.glif - four.sup - four.sup.glif - fourfifths - fourfifths.glif - fracbar - fracbar.glif - fraction - fraction.glif - g - g.glif - gbreve - gbreve.glif - gcaron - gcaron.glif - gcircumflex - gcircumflex.glif - gcommaaccent - gcommaaccent.glif - gdotaccent - gdotaccent.glif - germandbls - germandbls.glif - gmacron - gmacron.glif - grave - grave.glif - gravecmb - gravecmb.glif - gravecmb.cap - gravecmb.cap.glif - greater - greater.glif - greaterequal - greaterequal.glif - guillemetleft - guillemetleft.glif - guillemetright - guillemetright.glif - guilsinglleft - guilsinglleft.glif - guilsinglright - guilsinglright.glif - h - h.glif - hbar - hbar.glif - hbrevebelow - hbrevebelow.glif - hcedilla - hcedilla.glif - hcircumflex - hcircumflex.glif - hdotbelow - hdotbelow.glif - hlinebelow - hlinebelow.glif - hookcmb - hookcmb.glif - hookcmb.cap - hookcmb.cap.glif - horizontalbar - horizontalbar.glif - hungarumlaut - hungarumlaut.glif - hungarumlautcmb - hungarumlautcmb.glif - hungarumlautcmb.cap - hungarumlautcmb.cap.glif - hyphen - hyphen.glif - i - i.glif - iacute - iacute.glif - ibreve - ibreve.glif - icaron - icaron.glif - icircumflex - icircumflex.glif - idieresis - idieresis.glif - idotaccent - idotaccent.glif - idotbelow - idotbelow.glif - igrave - igrave.glif - ihookabove - ihookabove.glif - imacron - imacron.glif - iogonek - iogonek.glif - itilde - itilde.glif - j - j.glif - jcaron - jcaron.glif - jcircumflex - jcircumflex.glif - k - k.glif - kcommaaccent - kcommaaccent.glif - kdotbelow - kdotbelow.glif - klinebelow - klinebelow.glif - l - l.glif - l.dot - l.dot.glif - lacute - lacute.glif - lcaron - lcaron.glif - lcircumflexbelow - lcircumflexbelow.glif - lcommaaccent - lcommaaccent.glif - ldotbelow - ldotbelow.glif - less - less.glif - lessequal - lessequal.glif - llinebelow - llinebelow.glif - lmacrondotbelow - lmacrondotbelow.glif - lslash - lslash.glif - m - m.glif - macron - macron.glif - macronbelowcmb - macronbelowcmb.glif - macroncmb - macroncmb.glif - macroncmb.cap - macroncmb.cap.glif - macronlowmod - macronlowmod.glif - macute - macute.glif - mdotaccent - mdotaccent.glif - mdotbelow - mdotbelow.glif - middotcat - middotcat.glif - middotcat.cap - middotcat.cap.glif - minus - minus.glif - mu - mu.glif - multiply - multiply.glif - n - n.glif - nacute - nacute.glif - naira - naira.glif - ncaron - ncaron.glif - ncircumflexbelow - ncircumflexbelow.glif - ncommaaccent - ncommaaccent.glif - ndotaccent - ndotaccent.glif - ndotbelow - ndotbelow.glif - ngrave - ngrave.glif - nine - nine.glif - nine.den - nine.den.glif - nine.inf - nine.inf.glif - nine.num - nine.num.glif - nine.sup - nine.sup.glif - nlinebelow - nlinebelow.glif - notequal - notequal.glif - ntilde - ntilde.glif - numbersign - numbersign.glif - o - o.glif - oacute - oacute.glif - obreve - obreve.glif - ocaron - ocaron.glif - ocircumflex - ocircumflex.glif - ocircumflexacute - ocircumflexacute.glif - ocircumflexdotbelow - ocircumflexdotbelow.glif - ocircumflexgrave - ocircumflexgrave.glif - ocircumflexhookabove - ocircumflexhookabove.glif - ocircumflextilde - ocircumflextilde.glif - odieresis - odieresis.glif - odotaccent - odotaccent.glif - odotbelow - odotbelow.glif - oe - oe.glif - ogonek - ogonek.glif - ogonekcmb - ogonekcmb.glif - ograve - ograve.glif - ohookabove - ohookabove.glif - ohorn - ohorn.glif - ohornacute - ohornacute.glif - ohorndotbelow - ohorndotbelow.glif - ohorngrave - ohorngrave.glif - ohornhookabove - ohornhookabove.glif - ohorntilde - ohorntilde.glif - ohungarumlaut - ohungarumlaut.glif - omacron - omacron.glif - one - one.glif - one.den - one.den.glif - one.inf - one.inf.glif - one.num - one.num.glif - one.sup - one.sup.glif - oneeighth - oneeighth.glif - onefifth - onefifth.glif - onehalf - onehalf.glif - onequarter - onequarter.glif - onesixth - onesixth.glif - onethird - onethird.glif - oogonek - oogonek.glif - ordfeminine - ordfeminine.glif - ordmasculine - ordmasculine.glif - oslash - oslash.glif - otilde - otilde.glif - p - p.glif - paragraph - paragraph.glif - parenleft - parenleft.glif - parenright - parenright.glif - percent - percent.glif - period - period.glif - periodcentered - periodcentered.glif - peso - peso.glif - plus - plus.glif - plusminus - plusminus.glif - primemod - primemod.glif - published - published.glif - q - q.glif - question - question.glif - questiondown - questiondown.glif - quotedbl - quotedbl.glif - quotedblbase - quotedblbase.glif - quotedblleft - quotedblleft.glif - quotedblright - quotedblright.glif - quoteleft - quoteleft.glif - quoteright - quoteright.glif - quotesinglbase - quotesinglbase.glif - quotesingle - quotesingle.glif - r - r.glif - racute - racute.glif - rcaron - rcaron.glif - rcommaaccent - rcommaaccent.glif - rdotaccent - rdotaccent.glif - rdotbelow - rdotbelow.glif - registered - registered.glif - ring - ring.glif - ringcmb - ringcmb.glif - ringcmb.cap - ringcmb.cap.glif - ringhalfleft - ringhalfleft.glif - ringhalfright - ringhalfright.glif - rlinebelow - rlinebelow.glif - rmacrondotbelow - rmacrondotbelow.glif - s - s.glif - sacute - sacute.glif - scaron - scaron.glif - scedilla - scedilla.glif - schwa - schwa.glif - scircumflex - scircumflex.glif - scommaaccent - scommaaccent.glif - sdotbelow - sdotbelow.glif - section - section.glif - semicolon - semicolon.glif - servicemark - servicemark.glif - seven - seven.glif - seven.den - seven.den.glif - seven.inf - seven.inf.glif - seven.num - seven.num.glif - seven.sup - seven.sup.glif - seveneighths - seveneighths.glif - six - six.glif - six.den - six.den.glif - six.inf - six.inf.glif - six.num - six.num.glif - six.sup - six.sup.glif - slash - slash.glif - space - space.glif - sterling - sterling.glif - t - t.glif - tbar - tbar.glif - tcaron - tcaron.glif - tcedilla - tcedilla.glif - tcircumflexbelow - tcircumflexbelow.glif - tcommaaccent - tcommaaccent.glif - tdotbelow - tdotbelow.glif - thorn - thorn.glif - three - three.glif - three.den - three.den.glif - three.inf - three.inf.glif - three.num - three.num.glif - three.sup - three.sup.glif - threeeighths - threeeighths.glif - threefifths - threefifths.glif - threequarters - threequarters.glif - tilde - tilde.glif - tildecmb - tildecmb.glif - tildecmb.cap - tildecmb.cap.glif - tlinebelow - tlinebelow.glif - trademark - trademark.glif - two - two.glif - two.den - two.den.glif - two.inf - two.inf.glif - two.num - two.num.glif - two.sup - two.sup.glif - twodotleader - twodotleader.glif - twofifths - twofifths.glif - twothirds - twothirds.glif - u - u.glif - uacute - uacute.glif - ubreve - ubreve.glif - ucaron - ucaron.glif - ucircumflex - ucircumflex.glif - udieresis - udieresis.glif - udieresisacute - udieresisacute.glif - udieresiscaron - udieresiscaron.glif - udieresisgrave - udieresisgrave.glif - udieresismacron - udieresismacron.glif - udotbelow - udotbelow.glif - ugrave - ugrave.glif - uhookabove - uhookabove.glif - uhorn - uhorn.glif - uhornacute - uhornacute.glif - uhorndotbelow - uhorndotbelow.glif - uhorngrave - uhorngrave.glif - uhornhookabove - uhornhookabove.glif - uhorntilde - uhorntilde.glif - uhungarumlaut - uhungarumlaut.glif - umacron - umacron.glif - underscore - underscore.glif - uni00A0 - uni00A_0.glif - uni0326 - uni0326.glif - uni1E9E - uni1E_9E_.glif - uni2011 - uni2011.glif - uni20B9 - uni20B_9.glif - uni20BA - uni20B_A_.glif - uni20BD - uni20B_D_.glif - uniA788 - uniA_788.glif - uogonek - uogonek.glif - uring - uring.glif - utilde - utilde.glif - v - v.glif - vdotbelow - vdotbelow.glif - verticallinelowmod - verticallinelowmod.glif - verticallinemod - verticallinemod.glif - w - w.glif - wacute - wacute.glif - wcircumflex - wcircumflex.glif - wdieresis - wdieresis.glif - wgrave - wgrave.glif - won - won.glif - x - x.glif - xdieresis - xdieresis.glif - y - y.glif - yacute - yacute.glif - ycircumflex - ycircumflex.glif - ydieresis - ydieresis.glif - ydotaccent - ydotaccent.glif - ydotbelow - ydotbelow.glif - yen - yen.glif - ygrave - ygrave.glif - yhookabove - yhookabove.glif - ymacron - ymacron.glif - ytilde - ytilde.glif - z - z.glif - zacute - zacute.glif - zcaron - zcaron.glif - zcircumflex - zcircumflex.glif - zdotaccent - zdotaccent.glif - zdotbelow - zdotbelow.glif - zero - zero.glif - zero.den - zero.den.glif - zero.inf - zero.inf.glif - zero.num - zero.num.glif - zero.sup - zero.sup.glif - zlinebelow - zlinebelow.glif - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dcaron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dcaron.glif deleted file mode 100644 index c0b81d30..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dcircumflexbelow.glif deleted file mode 100644 index 8a45fed4..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dcroat.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dcroat.glif deleted file mode 100644 index 98cdeffa..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dcroat.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ddotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ddotbelow.glif deleted file mode 100644 index c9587793..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ddotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresisacute.cap.glif deleted file mode 100644 index 6f7c2a35..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresisacute.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresisacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresisacute.glif deleted file mode 100644 index 6825cd67..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresisacute.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresisbelowcmb.glif deleted file mode 100644 index d8d66db3..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresisbelowcmb.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresiscaron.cap.glif deleted file mode 100644 index 428f8647..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresiscaron.cap.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresiscaron.glif deleted file mode 100644 index 620a5d97..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresiscaron.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresisgrave.cap.glif deleted file mode 100644 index b651b293..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresisgrave.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresisgrave.glif deleted file mode 100644 index 8bc6839e..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresisgrave.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresismacron.cap.glif deleted file mode 100644 index 57d4af17..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresismacron.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresismacron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresismacron.glif deleted file mode 100644 index d6b78007..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresismacron.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dlinebelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dlinebelow.glif deleted file mode 100644 index 513f32d8..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dotlessj.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dotlessj.glif deleted file mode 100644 index f8acf303..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dotlessj.glif +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eacute.glif deleted file mode 100644 index 40b65bd8..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ebreve.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ebreve.glif deleted file mode 100644 index 61efc8a9..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ebreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ecaron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ecaron.glif deleted file mode 100644 index d90792c5..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ecaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ecircumflexdotbelow.glif deleted file mode 100644 index 512bed94..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ecircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/edieresis.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/edieresis.glif deleted file mode 100644 index 8796b5a9..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/edieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/edotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/edotaccent.glif deleted file mode 100644 index 58d527e1..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/edotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/edotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/edotbelow.glif deleted file mode 100644 index c62f8343..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/edotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/egrave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/egrave.glif deleted file mode 100644 index 5e24108b..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/egrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ehookabove.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ehookabove.glif deleted file mode 100644 index 3f9d22b4..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ehookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eight.num.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eight.num.glif deleted file mode 100644 index 81f07dcc..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eight.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/emacron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/emacron.glif deleted file mode 100644 index d44b0a78..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/emacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eng.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eng.glif deleted file mode 100644 index 2b92cf27..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eng.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eogonek.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eogonek.glif deleted file mode 100644 index ebb345c4..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eogonek.glif +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eth.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eth.glif deleted file mode 100644 index 884e2dee..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eth.glif +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/etilde.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/etilde.glif deleted file mode 100644 index 296cb825..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/etilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/five.num.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/five.num.glif deleted file mode 100644 index 72178220..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/five.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/four.num.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/four.num.glif deleted file mode 100644 index 5e556b65..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/four.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gbreve.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gbreve.glif deleted file mode 100644 index 486111ad..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gbreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gcaron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gcaron.glif deleted file mode 100644 index f9beba62..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gcircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gcircumflex.glif deleted file mode 100644 index 3cf1288b..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gcommaaccent.glif deleted file mode 100644 index 332fc212..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gdotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gdotaccent.glif deleted file mode 100644 index 74db6b5c..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/germandbls.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/germandbls.glif deleted file mode 100644 index 70979a68..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/germandbls.glif +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gmacron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gmacron.glif deleted file mode 100644 index a75697d7..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gmacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hbar.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hbar.glif deleted file mode 100644 index 75688cc5..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hbar.glif +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hbrevebelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hbrevebelow.glif deleted file mode 100644 index be996e2a..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hbrevebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hcedilla.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hcedilla.glif deleted file mode 100644 index cee91401..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hcedilla.glif +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hcircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hcircumflex.glif deleted file mode 100644 index e4611218..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hdotbelow.glif deleted file mode 100644 index 6f4926d4..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hlinebelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hlinebelow.glif deleted file mode 100644 index 8ebc2529..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hookcmb.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hookcmb.glif deleted file mode 100644 index 5e3ddb84..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hookcmb.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/horizontalbar.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/horizontalbar.glif deleted file mode 100644 index 19ce9f0d..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/horizontalbar.glif +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/iacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/iacute.glif deleted file mode 100644 index f83b465c..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/iacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ibreve.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ibreve.glif deleted file mode 100644 index b641d65a..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ibreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/icaron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/icaron.glif deleted file mode 100644 index e53c76aa..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/icaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/icircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/icircumflex.glif deleted file mode 100644 index cf4d3803..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/icircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/idieresis.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/idieresis.glif deleted file mode 100644 index 0f14bb82..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/idieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/idotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/idotaccent.glif deleted file mode 100644 index fd64c16e..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/idotaccent.glif +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/idotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/idotbelow.glif deleted file mode 100644 index a771154b..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/idotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/igrave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/igrave.glif deleted file mode 100644 index ea0adc2f..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/igrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ihookabove.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ihookabove.glif deleted file mode 100644 index 63635064..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ihookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/imacron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/imacron.glif deleted file mode 100644 index 12d52ca2..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/imacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/iogonek.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/iogonek.glif deleted file mode 100644 index 235199a9..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/iogonek.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/itilde.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/itilde.glif deleted file mode 100644 index ab9befc3..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/itilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/jcaron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/jcaron.glif deleted file mode 100644 index c7216447..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/jcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/jcircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/jcircumflex.glif deleted file mode 100644 index 72d2a8e7..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/jcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/kcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/kcommaaccent.glif deleted file mode 100644 index 481e75ed..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/kcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/kdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/kdotbelow.glif deleted file mode 100644 index 9ef521c5..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/kdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/klinebelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/klinebelow.glif deleted file mode 100644 index 5138f0ce..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/klinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/l.dot.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/l.dot.glif deleted file mode 100644 index e067eb7d..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/l.dot.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/lacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/lacute.glif deleted file mode 100644 index c098a7e9..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/lacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/lcaron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/lcaron.glif deleted file mode 100644 index 08e24427..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/lcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/lcircumflexbelow.glif deleted file mode 100644 index 4380cef7..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/lcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/lcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/lcommaaccent.glif deleted file mode 100644 index 45c6721f..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/lcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ldotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ldotbelow.glif deleted file mode 100644 index fe0ffa3c..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ldotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/llinebelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/llinebelow.glif deleted file mode 100644 index 123de63c..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/llinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/lmacrondotbelow.glif deleted file mode 100644 index d9c468f2..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/lmacrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/lslash.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/lslash.glif deleted file mode 100644 index 96526f85..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/lslash.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/macute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/macute.glif deleted file mode 100644 index 4e350eab..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/macute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/mdotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/mdotaccent.glif deleted file mode 100644 index 535319a3..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/mdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/mdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/mdotbelow.glif deleted file mode 100644 index cb17b3c8..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/mdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/middotcat.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/middotcat.glif deleted file mode 100644 index 3df79ce6..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/middotcat.glif +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/nacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/nacute.glif deleted file mode 100644 index c2bf6897..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/nacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ncaron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ncaron.glif deleted file mode 100644 index c428f59d..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ncaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ncircumflexbelow.glif deleted file mode 100644 index c8cb63f2..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ncircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ncommaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ncommaaccent.glif deleted file mode 100644 index 06392b2a..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ncommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ndotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ndotaccent.glif deleted file mode 100644 index d31b1f76..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ndotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ndotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ndotbelow.glif deleted file mode 100644 index bcd9f2db..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ngrave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ngrave.glif deleted file mode 100644 index 06d65e87..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/nine.num.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/nine.num.glif deleted file mode 100644 index 878f7458..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/nine.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/nlinebelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/nlinebelow.glif deleted file mode 100644 index 53bc6965..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/nlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ntilde.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ntilde.glif deleted file mode 100644 index d51aaf65..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/oacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/oacute.glif deleted file mode 100644 index e86e0172..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/oacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/obreve.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/obreve.glif deleted file mode 100644 index ed8ed6e8..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/obreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocaron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocaron.glif deleted file mode 100644 index 36fcfc4a..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocircumflex.glif deleted file mode 100644 index 365aceda..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocircumflexacute.glif deleted file mode 100644 index f61c76f2..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocircumflexdotbelow.glif deleted file mode 100644 index 7c2f674b..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocircumflexgrave.glif deleted file mode 100644 index 146745e2..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocircumflexhookabove.glif deleted file mode 100644 index dbe7d173..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocircumflextilde.glif deleted file mode 100644 index 497a1ef8..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ocircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/odieresis.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/odieresis.glif deleted file mode 100644 index 725e8b2d..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/odieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/odotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/odotaccent.glif deleted file mode 100644 index efad4759..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/odotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/odotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/odotbelow.glif deleted file mode 100644 index 7330fd8d..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/odotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/oe.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/oe.glif deleted file mode 100644 index c6333bde..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/oe.glif +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ograve.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ograve.glif deleted file mode 100644 index 031158fd..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ograve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohookabove.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohookabove.glif deleted file mode 100644 index a6258fb3..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohorn.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohorn.glif deleted file mode 100644 index aff858c3..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohorn.glif +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohornacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohornacute.glif deleted file mode 100644 index 50e32f39..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohorndotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohorndotbelow.glif deleted file mode 100644 index 394b3e50..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohorndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohorngrave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohorngrave.glif deleted file mode 100644 index b550c793..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohorngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohornhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohornhookabove.glif deleted file mode 100644 index a32b6c81..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohorntilde.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohorntilde.glif deleted file mode 100644 index e679d037..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohorntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohungarumlaut.glif deleted file mode 100644 index 603f02d3..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ohungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/omacron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/omacron.glif deleted file mode 100644 index 4b30fd12..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/omacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/one.num.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/one.num.glif deleted file mode 100644 index 367c2baa..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/one.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/oogonek.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/oogonek.glif deleted file mode 100644 index 7c2d872d..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/oogonek.glif +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/oslash.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/oslash.glif deleted file mode 100644 index 9bc7e4dd..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/oslash.glif +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/otilde.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/otilde.glif deleted file mode 100644 index 2d43f739..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/otilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/racute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/racute.glif deleted file mode 100644 index 29154926..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/racute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/rcaron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/rcaron.glif deleted file mode 100644 index 152978f1..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/rcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/rcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/rcommaaccent.glif deleted file mode 100644 index 411d651d..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/rcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/rdotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/rdotaccent.glif deleted file mode 100644 index 439394bb..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/rdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/rdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/rdotbelow.glif deleted file mode 100644 index 6af653c1..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/rdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ringcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ringcmb.cap.glif deleted file mode 100644 index 7e668491..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ringcmb.cap.glif +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/rlinebelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/rlinebelow.glif deleted file mode 100644 index f8f99aa5..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/rlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/rmacrondotbelow.glif deleted file mode 100644 index df7ed07b..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/rmacrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/sacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/sacute.glif deleted file mode 100644 index d4f49870..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/sacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/scaron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/scaron.glif deleted file mode 100644 index 708355d3..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/scaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/scedilla.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/scedilla.glif deleted file mode 100644 index d9a5ddd2..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/scedilla.glif +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/schwa.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/schwa.glif deleted file mode 100644 index da0d93ee..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/schwa.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/scircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/scircumflex.glif deleted file mode 100644 index fa137a6c..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/scircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/scommaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/scommaaccent.glif deleted file mode 100644 index 07c41936..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/scommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/sdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/sdotbelow.glif deleted file mode 100644 index 28eaccd6..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/sdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/seven.num.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/seven.num.glif deleted file mode 100644 index 4376d42c..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/seven.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/six.num.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/six.num.glif deleted file mode 100644 index 119c6dd1..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/six.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tbar.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tbar.glif deleted file mode 100644 index 44c59d64..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tbar.glif +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tcaron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tcaron.glif deleted file mode 100644 index 013e5e7b..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tcedilla.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tcedilla.glif deleted file mode 100644 index d0528282..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tcedilla.glif +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tcircumflexbelow.glif deleted file mode 100644 index c3272fa5..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tcommaaccent.glif deleted file mode 100644 index ed4979bd..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tdotbelow.glif deleted file mode 100644 index bd911bec..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/thorn.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/thorn.glif deleted file mode 100644 index 682bac32..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/thorn.glif +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/three.num.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/three.num.glif deleted file mode 100644 index 3898d04c..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/three.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tlinebelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tlinebelow.glif deleted file mode 100644 index 857fddc7..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/two.num.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/two.num.glif deleted file mode 100644 index 113ff06e..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/two.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uacute.glif deleted file mode 100644 index afb852e4..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ubreve.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ubreve.glif deleted file mode 100644 index bfcdc469..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ubreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ucaron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ucaron.glif deleted file mode 100644 index 499cbf88..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ucaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ucircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ucircumflex.glif deleted file mode 100644 index c203ca95..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ucircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/udieresis.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/udieresis.glif deleted file mode 100644 index 93421aa3..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/udieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/udieresisacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/udieresisacute.glif deleted file mode 100644 index 7d3d9b67..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/udieresisacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/udieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/udieresiscaron.glif deleted file mode 100644 index c23eae98..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/udieresiscaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/udieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/udieresisgrave.glif deleted file mode 100644 index 039bf674..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/udieresisgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/udieresismacron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/udieresismacron.glif deleted file mode 100644 index e743a4aa..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/udieresismacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/udotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/udotbelow.glif deleted file mode 100644 index e4f195cb..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/udotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ugrave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ugrave.glif deleted file mode 100644 index b7a51359..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ugrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhookabove.glif deleted file mode 100644 index 4dbb3601..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhorn.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhorn.glif deleted file mode 100644 index 68e6abff..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhorn.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhornacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhornacute.glif deleted file mode 100644 index 8fbdf368..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhorndotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhorndotbelow.glif deleted file mode 100644 index 3be6673a..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhorndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhorngrave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhorngrave.glif deleted file mode 100644 index a30a3647..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhorngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhornhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhornhookabove.glif deleted file mode 100644 index decd454d..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhorntilde.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhorntilde.glif deleted file mode 100644 index 0e6352c4..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhorntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhungarumlaut.glif deleted file mode 100644 index 08fae415..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uhungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/umacron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/umacron.glif deleted file mode 100644 index 321fa8f9..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/umacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uni1E_9E_.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uni1E_9E_.glif deleted file mode 100644 index db149214..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uni1E_9E_.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uni2011.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uni2011.glif deleted file mode 100644 index cb2d7998..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uni2011.glif +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uogonek.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uogonek.glif deleted file mode 100644 index 44b45c9d..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uogonek.glif +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uring.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uring.glif deleted file mode 100644 index 85a25f4f..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/utilde.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/utilde.glif deleted file mode 100644 index 3fe6c385..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/utilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/wacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/wacute.glif deleted file mode 100644 index 25d7a830..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/wacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/wcircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/wcircumflex.glif deleted file mode 100644 index afb37d0e..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/wcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/wdieresis.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/wdieresis.glif deleted file mode 100644 index fc820f3e..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/wdieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/wgrave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/wgrave.glif deleted file mode 100644 index 3a15545a..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/wgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/yacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/yacute.glif deleted file mode 100644 index fd7df85a..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/yacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ycircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ycircumflex.glif deleted file mode 100644 index 94320a5e..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ycircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ydieresis.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ydieresis.glif deleted file mode 100644 index b83cc4cd..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ydieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ydotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ydotaccent.glif deleted file mode 100644 index ec0294e5..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ydotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ydotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ydotbelow.glif deleted file mode 100644 index 994369ba..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ydotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ygrave.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ygrave.glif deleted file mode 100644 index 2a0c13c8..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ygrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/yhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/yhookabove.glif deleted file mode 100644 index f95658ce..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/yhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ymacron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ymacron.glif deleted file mode 100644 index f43c36bb..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ymacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ytilde.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ytilde.glif deleted file mode 100644 index e9afe4ad..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ytilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zacute.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zacute.glif deleted file mode 100644 index 0543a222..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zcaron.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zcaron.glif deleted file mode 100644 index c435a857..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zcircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zcircumflex.glif deleted file mode 100644 index 5f6470a9..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zdotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zdotaccent.glif deleted file mode 100644 index d96ec09c..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zdotbelow.glif deleted file mode 100644 index 28c0c5c5..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zero.num.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zero.num.glif deleted file mode 100644 index 67c30058..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zero.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zlinebelow.glif b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zlinebelow.glif deleted file mode 100644 index 17bd9cb2..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/lib.plist b/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/lib.plist deleted file mode 100644 index 6cee22db..00000000 --- a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/lib.plist +++ /dev/null @@ -1,1288 +0,0 @@ - - - - - com.typemytype.robofont.compileSettings.autohint - - com.typemytype.robofont.compileSettings.checkOutlines - - com.typemytype.robofont.compileSettings.createDummyDSIG - - com.typemytype.robofont.compileSettings.decompose - - com.typemytype.robofont.compileSettings.generateFormat - 1 - com.typemytype.robofont.compileSettings.releaseMode - 1 - com.typemytype.robofont.italicSlantOffset - 0 - com.typemytype.robofont.segmentType - curve - com.typemytype.robofont.shouldAddPointsInSplineConversion - 1 - public.glyphOrder - - .notdef - A - B - C - D - E - F - G - H - I - J - K - L - M - N - O - P - Q - R - S - T - U - V - W - X - Y - Z - a - b - c - d - e - f - g - h - i - j - k - l - m - n - o - p - q - r - s - t - u - v - w - x - y - z - period - comma - colon - semicolon - question - exclam - questiondown - exclamdown - ellipsis - twodotleader - quotedblleft - quotedblright - quotedblbase - quoteleft - quoteright - quotesinglbase - guillemetleft - guillemetright - guilsinglleft - guilsinglright - parenleft - parenright - bracketleft - bracketright - braceleft - braceright - slash - backslash - bar - hyphen - endash - emdash - periodcentered - bullet - underscore - ampersand - at - published - copyright - registered - servicemark - trademark - asterisk - dagger - daggerdbl - section - paragraph - zero - one - two - three - four - five - six - seven - eight - nine - colon.fig - plus - divide - minus - equal - notequal - asciitilde - approxequal - multiply - less - greater - lessequal - greaterequal - plusminus - asciicircum - mu - numbersign - percent - quotedbl - quotesingle - ordfeminine - ordmasculine - degree - dollar - sterling - yen - Euro - naira - peso - uni20BA - uni20BD - uni20B9 - bahtthai - won - cent - dong - onehalf - onethird - twothirds - onequarter - threequarters - onefifth - twofifths - threefifths - fourfifths - onesixth - fivesixths - oneeighth - threeeighths - fiveeighths - seveneighths - zero.sup - one.sup - two.sup - three.sup - four.sup - five.sup - six.sup - seven.sup - eight.sup - nine.sup - zero.inf - one.inf - two.inf - three.inf - four.inf - five.inf - six.inf - seven.inf - eight.inf - nine.inf - primemod - dblprimemod - commaturnedmod - apostrophemod - ringhalfleft - ringhalfright - verticallinemod - verticallinelowmod - acute - hungarumlaut - grave - circumflex - caron - breve - tilde - macron - dieresis - dotaccent - ring - uniA788 - macronlowmod - cedilla - ogonek - Aacute - Agrave - Acircumflex - Acircumflexdotbelow - Acircumflexacute - Acircumflexgrave - Acircumflexhookabove - Acircumflextilde - Acaron - Abreve - Abrevedotbelow - Abreveacute - Abrevegrave - Abrevehookabove - Abrevetilde - Atilde - Amacron - Adieresis - Adotaccent - Aring - Ahookabove - Adotbelow - Aogonek - AE - Blinebelow - Cacute - Ccircumflex - Ccaron - Cdotaccent - Ccedilla - Dcaron - Dcircumflexbelow - Dlinebelow - Ddotbelow - Dcroat - Eacute - Egrave - Ecircumflex - Ecircumflexdotbelow - Ecircumflexacute - Ecircumflexgrave - Ecircumflexhookabove - Ecircumflextilde - Ecaron - Ebreve - Etilde - Emacron - Edieresis - Edotaccent - Ehookabove - Edotbelow - Eogonek - Gcircumflex - Gcaron - Gbreve - Gmacron - Gdotaccent - Gcommaaccent - Hcircumflex - Hbrevebelow - Hdotbelow - Hcedilla - Hbar - Iacute - Igrave - Icircumflex - Icaron - Ibreve - Itilde - Imacron - Idieresis - Idotaccent - Ihookabove - Idotbelow - Iogonek - Jcircumflex - Klinebelow - Kcommaaccent - Kdotbelow - Lacute - Lcaron - Lcommaaccent - Lcircumflexbelow - Llinebelow - Lmacrondotbelow - Ldotbelow - L.dot - Lslash - Macute - Mdotaccent - Mdotbelow - Nacute - Ngrave - Ncaron - Ntilde - Ndotaccent - Ncircumflexbelow - Ncommaaccent - Ndotbelow - Nlinebelow - Eng - Oacute - Ohungarumlaut - Ograve - Ocircumflex - Ocircumflexdotbelow - Ocircumflexacute - Ocircumflexgrave - Ocircumflexhookabove - Ocircumflextilde - Ocaron - Obreve - Otilde - Omacron - Odieresis - Odotaccent - Ohookabove - Odotbelow - Oogonek - Oslash - OE - Ohorn - Ohornacute - Ohorngrave - Ohorntilde - Ohornhookabove - Ohorndotbelow - Racute - Rcaron - Rdotaccent - Rmacrondotbelow - Rcommaaccent - Rdotbelow - Rlinebelow - Sacute - Scircumflex - Scaron - Scommaaccent - Sdotbelow - Scedilla - uni1E9E - Tcaron - Tcircumflexbelow - Tcommaaccent - Tdotbelow - Tlinebelow - Tcedilla - Tbar - Uacute - Uhungarumlaut - Ugrave - Ucircumflex - Ucaron - Ubreve - Utilde - Umacron - Udieresis - Udieresisacute - Udieresisgrave - Udieresiscaron - Udieresismacron - Uring - Uhookabove - Udotbelow - Uogonek - Uhorn - Uhornacute - Uhorngrave - Uhorntilde - Uhornhookabove - Uhorndotbelow - Vdotbelow - Wacute - Wgrave - Wcircumflex - Wdieresis - Xdieresis - Yacute - Ygrave - Ycircumflex - Ytilde - Ymacron - Ydieresis - Ydotaccent - Yhookabove - Ydotbelow - Zacute - Zcircumflex - Zcaron - Zdotaccent - Zdotbelow - Zlinebelow - Eth - Thorn - Schwa - aacute - agrave - acircumflex - acircumflexdotbelow - acircumflexacute - acircumflexgrave - acircumflexhookabove - acircumflextilde - acaron - abreve - abrevedotbelow - abreveacute - abrevegrave - abrevehookabove - abrevetilde - atilde - amacron - adieresis - adotaccent - aring - ahookabove - adotbelow - aogonek - ae - blinebelow - cacute - ccircumflex - ccaron - cdotaccent - ccedilla - dcaron - dcircumflexbelow - dlinebelow - ddotbelow - dcroat - eacute - egrave - ecircumflex - ecircumflexdotbelow - ecircumflexacute - ecircumflexgrave - ecircumflexhookabove - ecircumflextilde - ecaron - ebreve - etilde - emacron - edieresis - edotaccent - ehookabove - edotbelow - eogonek - gcircumflex - gcaron - gbreve - gmacron - gdotaccent - gcommaaccent - hcircumflex - hbrevebelow - hlinebelow - hdotbelow - hcedilla - hbar - dotlessi - iacute - igrave - icircumflex - icaron - ibreve - itilde - imacron - idieresis - idotaccent - ihookabove - idotbelow - iogonek - dotlessj - jcircumflex - jcaron - klinebelow - kcommaaccent - kdotbelow - lacute - lcaron - lcommaaccent - lcircumflexbelow - llinebelow - lmacrondotbelow - ldotbelow - l.dot - lslash - macute - mdotaccent - mdotbelow - nacute - ngrave - ncaron - ntilde - ndotaccent - ncircumflexbelow - ncommaaccent - ndotbelow - nlinebelow - eng - oacute - ohungarumlaut - ograve - ocircumflex - ocircumflexdotbelow - ocircumflexacute - ocircumflexgrave - ocircumflexhookabove - ocircumflextilde - ocaron - obreve - otilde - omacron - odieresis - odotaccent - ohookabove - odotbelow - oogonek - oslash - oe - ohorn - ohornacute - ohorngrave - ohorntilde - ohornhookabove - ohorndotbelow - racute - rcaron - rdotaccent - rmacrondotbelow - rcommaaccent - rdotbelow - rlinebelow - sacute - scircumflex - scaron - scommaaccent - sdotbelow - scedilla - germandbls - tcaron - tcircumflexbelow - tcommaaccent - tdotbelow - tlinebelow - tcedilla - tbar - uacute - uhungarumlaut - ugrave - ucircumflex - ucaron - ubreve - utilde - umacron - udieresis - udieresisacute - udieresisgrave - udieresiscaron - udieresismacron - uring - uhookabove - udotbelow - uogonek - uhorn - uhornacute - uhorngrave - uhorntilde - uhornhookabove - uhorndotbelow - vdotbelow - wacute - wgrave - wcircumflex - wdieresis - xdieresis - yacute - ygrave - ycircumflex - ytilde - ymacron - ydieresis - ydotaccent - yhookabove - ydotbelow - zacute - zcircumflex - zcaron - zdotaccent - zdotbelow - zlinebelow - eth - thorn - schwa - space - uni00A0 - zero.num - one.num - two.num - three.num - four.num - five.num - six.num - seven.num - eight.num - nine.num - fraction - fracbar - zero.den - one.den - two.den - three.den - four.den - five.den - six.den - seven.den - eight.den - nine.den - uni2011 - horizontalbar - middotcat - middotcat.cap - acutecmb - hungarumlautcmb - gravecmb - commaaboverightcmb - circumflexcmb - caroncmb - brevecmb - tildecmb - macroncmb - dieresiscmb - dotaccentcmb - ringcmb - commaturnedabovecmb - hookcmb - circumflexbelowcmb - brevebelowcmb - macronbelowcmb - dieresisbelowcmb - dotbelowcmb - uni0326 - cedillacmb - ogonekcmb - dieresisacute - dieresisgrave - dieresiscaron - dieresismacron - breveacute - brevegrave - brevehook - brevetilde - circumflexacute - circumflexgrave - circumflexhook - circumflextilde - acutecmb.cap - hungarumlautcmb.cap - gravecmb.cap - circumflexcmb.cap - caroncmb.cap - brevecmb.cap - tildecmb.cap - macroncmb.cap - dieresiscmb.cap - dotaccentcmb.cap - ringcmb.cap - hookcmb.cap - dieresisacute.cap - dieresisgrave.cap - dieresiscaron.cap - dieresismacron.cap - breveacute.cap - brevegrave.cap - brevehook.cap - brevetilde.cap - circumflexacute.cap - circumflexgrave.cap - circumflexhook.cap - circumflextilde.cap - - public.postscriptNames - - Abreveacute - uni1EAE - Abrevedotbelow - uni1EB6 - Abrevegrave - uni1EB0 - Abrevehookabove - uni1EB2 - Abrevetilde - uni1EB4 - Acaron - uni01CD - Acircumflexacute - uni1EA4 - Acircumflexdotbelow - uni1EAC - Acircumflexgrave - uni1EA6 - Acircumflexhookabove - uni1EA8 - Acircumflextilde - uni1EAA - Adotaccent - uni0226 - Adotbelow - uni1EA0 - Ahookabove - uni1EA2 - Blinebelow - uni1E06 - Dcircumflexbelow - uni1E12 - Ddotbelow - uni1E0C - Dlinebelow - uni1E0E - Ecircumflexacute - uni1EBE - Ecircumflexdotbelow - uni1EC6 - Ecircumflexgrave - uni1EC0 - Ecircumflexhookabove - uni1EC2 - Ecircumflextilde - uni1EC4 - Edotbelow - uni1EB8 - Ehookabove - uni1EBA - Etilde - uni1EBC - Gcommaaccent - uni0122 - Gmacron - uni1E20 - Hbrevebelow - uni1E2A - Hcedilla - uni1E28 - Hdotbelow - uni1E24 - Icaron - uni01CF - Idotbelow - uni1ECA - Ihookabove - uni1EC8 - Kcommaaccent - uni0136 - Kdotbelow - uni1E32 - Klinebelow - uni1E34 - L.dot - Ldot - Lcircumflexbelow - uni1E3C - Lcommaaccent - uni013B - Ldotbelow - uni1E36 - Llinebelow - uni1E3A - Lmacrondotbelow - uni1E38 - Macute - uni1E3E - Mdotaccent - uni1E40 - Mdotbelow - uni1E42 - Ncircumflexbelow - uni1E4A - Ncommaaccent - uni0145 - Ndotaccent - uni1E44 - Ndotbelow - uni1E46 - Ngrave - uni01F8 - Nlinebelow - uni1E48 - Ocaron - uni01D1 - Ocircumflexacute - uni1ED0 - Ocircumflexdotbelow - uni1ED8 - Ocircumflexgrave - uni1ED2 - Ocircumflexhookabove - uni1ED4 - Ocircumflextilde - uni1ED6 - Odotaccent - uni022E - Odotbelow - uni1ECC - Ohookabove - uni1ECE - Ohornacute - uni1EDA - Ohorndotbelow - uni1EE2 - Ohorngrave - uni1EDC - Ohornhookabove - uni1EDE - Ohorntilde - uni1EE0 - Oogonek - uni01EA - Rcommaaccent - uni0156 - Rdotaccent - uni1E58 - Rdotbelow - uni1E5A - Rlinebelow - uni1E5E - Rmacrondotbelow - uni1E5C - Scedilla - uni015E - Schwa - uni018F - Scommaaccent - uni0218 - Sdotbelow - uni1E62 - Tcedilla - uni0162 - Tcircumflexbelow - uni1E70 - Tcommaaccent - uni021A - Tdotbelow - uni1E6C - Tlinebelow - uni1E6E - Ucaron - uni01D3 - Udieresisacute - uni01D7 - Udieresiscaron - uni01D9 - Udieresisgrave - uni01DB - Udieresismacron - uni01D5 - Udotbelow - uni1EE4 - Uhookabove - uni1EE6 - Uhornacute - uni1EE8 - Uhorndotbelow - uni1EF0 - Uhorngrave - uni1EEA - Uhornhookabove - uni1EEC - Uhorntilde - uni1EEE - Vdotbelow - uni1E7E - Xdieresis - uni1E8C - Ydotaccent - uni1E8E - Ydotbelow - uni1EF4 - Yhookabove - uni1EF6 - Ymacron - uni0232 - Ytilde - uni1EF8 - Zcircumflex - uni1E90 - Zdotbelow - uni1E92 - Zlinebelow - uni1E94 - abreveacute - uni1EAF - abrevedotbelow - uni1EB7 - abrevegrave - uni1EB1 - abrevehookabove - uni1EB3 - abrevetilde - uni1EB5 - acaron - uni01CE - acircumflexacute - uni1EA5 - acircumflexdotbelow - uni1EAD - acircumflexgrave - uni1EA7 - acircumflexhookabove - uni1EA9 - acircumflextilde - uni1EAB - acutecmb - uni0301 - acutecmb.cap - uni0301.cap - adotaccent - uni0227 - adotbelow - uni1EA1 - ahookabove - uni1EA3 - apostrophemod - uni02BC - bahtthai - uni0E3F - blinebelow - uni1E07 - breveacute - uni02D80301 - breveacute.cap - uni02D80301.cap - brevebelowcmb - uni032E - brevecmb - uni0306 - brevecmb.cap - uni0306.cap - brevegrave - uni02D80300 - brevegrave.cap - uni02D80300.cap - brevehook - uni02D80309 - brevehook.cap - uni02D80309.cap - brevetilde - uni02D80303 - brevetilde.cap - uni02D80303.cap - caroncmb - uni030C - caroncmb.cap - uni030C.cap - cedillacmb - uni0327 - circumflexacute - uni02C60301 - circumflexacute.cap - uni02C60301.cap - circumflexbelowcmb - uni032D - circumflexcmb - uni0302 - circumflexcmb.cap - uni0302.cap - circumflexgrave - uni02C60300 - circumflexgrave.cap - uni02C60300.cap - circumflexhook - uni02C60309 - circumflexhook.cap - uni02C60309.cap - circumflextilde - uni02C60303 - circumflextilde.cap - uni02C60303.cap - commaaboverightcmb - uni0315 - commaturnedabovecmb - uni0312 - commaturnedmod - uni02BB - dblprimemod - uni02BA - dcircumflexbelow - uni1E13 - ddotbelow - uni1E0D - dieresisacute - uni00A80301 - dieresisacute.cap - uni00A80301.cap - dieresisbelowcmb - uni0324 - dieresiscaron - uni00A8030C - dieresiscaron.cap - uni00A8030C.cap - dieresiscmb - uni0308 - dieresiscmb.cap - uni0308.cap - dieresisgrave - uni00A80300 - dieresisgrave.cap - uni00A80300.cap - dieresismacron - uni00A80304 - dieresismacron.cap - uni00A80304.cap - dlinebelow - uni1E0F - dotaccentcmb - uni0307 - dotaccentcmb.cap - uni0307.cap - dotbelowcmb - uni0323 - dotlessj - uni0237 - ecircumflexacute - uni1EBF - ecircumflexdotbelow - uni1EC7 - ecircumflexgrave - uni1EC1 - ecircumflexhookabove - uni1EC3 - ecircumflextilde - uni1EC5 - edotbelow - uni1EB9 - ehookabove - uni1EBB - etilde - uni1EBD - gcommaaccent - uni0123 - gmacron - uni1E21 - gravecmb - uni0300 - gravecmb.cap - uni0300.cap - guillemetleft - uni00AB - guillemetright - uni00BB - hbrevebelow - uni1E2B - hcedilla - uni1E29 - hdotbelow - uni1E25 - hlinebelow - uni1E96 - hookcmb - uni0309 - hookcmb.cap - uni0309.cap - horizontalbar - uni2015 - hungarumlautcmb - uni030B - hungarumlautcmb.cap - uni030B.cap - icaron - uni01D0 - idotaccent - i.dot - idotbelow - uni1ECB - ihookabove - uni1EC9 - jcaron - uni01F0 - kcommaaccent - uni0137 - kdotbelow - uni1E33 - klinebelow - uni1E35 - l.dot - ldot - lcircumflexbelow - uni1E3D - lcommaaccent - uni013C - ldotbelow - uni1E37 - llinebelow - uni1E3B - lmacrondotbelow - uni1E39 - macronbelowcmb - uni0331 - macroncmb - uni0304 - macroncmb.cap - uni0304.cap - macronlowmod - uni02CD - macute - uni1E3F - mdotaccent - uni1E41 - mdotbelow - uni1E43 - naira - uni20A6 - ncircumflexbelow - uni1E4B - ncommaaccent - uni0146 - ndotaccent - uni1E45 - ndotbelow - uni1E47 - ngrave - uni01F9 - nlinebelow - uni1E49 - ocaron - uni01D2 - ocircumflexacute - uni1ED1 - ocircumflexdotbelow - uni1ED9 - ocircumflexgrave - uni1ED3 - ocircumflexhookabove - uni1ED5 - ocircumflextilde - uni1ED7 - odotaccent - uni022F - odotbelow - uni1ECD - ogonekcmb - uni0328 - ohookabove - uni1ECF - ohornacute - uni1EDB - ohorndotbelow - uni1EE3 - ohorngrave - uni1EDD - ohornhookabove - uni1EDF - ohorntilde - uni1EE1 - oogonek - uni01EB - peso - uni20B1 - primemod - uni02B9 - published - uni2117 - rcommaaccent - uni0157 - rdotaccent - uni1E59 - rdotbelow - uni1E5B - ringcmb - uni030A - ringcmb.cap - uni030A.cap - ringhalfleft - uni02BF - ringhalfright - uni02BE - rlinebelow - uni1E5F - rmacrondotbelow - uni1E5D - scedilla - uni015F - schwa - uni0259 - scommaaccent - uni0219 - sdotbelow - uni1E63 - servicemark - uni2120 - tcedilla - uni0163 - tcircumflexbelow - uni1E71 - tcommaaccent - uni021B - tdotbelow - uni1E6D - tildecmb - uni0303 - tildecmb.cap - uni0303.cap - tlinebelow - uni1E6F - twodotleader - uni2025 - ucaron - uni01D4 - udieresisacute - uni01D8 - udieresiscaron - uni01DA - udieresisgrave - uni01DC - udieresismacron - uni01D6 - udotbelow - uni1EE5 - uhookabove - uni1EE7 - uhornacute - uni1EE9 - uhorndotbelow - uni1EF1 - uhorngrave - uni1EEB - uhornhookabove - uni1EED - uhorntilde - uni1EEF - uni1E9E - uni1E9E - vdotbelow - uni1E7F - verticallinelowmod - uni02CC - verticallinemod - uni02C8 - won - uni20A9 - xdieresis - uni1E8D - ydotaccent - uni1E8F - ydotbelow - uni1EF5 - yhookabove - uni1EF7 - ymacron - uni0233 - ytilde - uni1EF9 - zcircumflex - uni1E91 - zdotbelow - uni1E93 - zlinebelow - uni1E95 - - - diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/features.fea b/sources/instances/truetype/IntelOneMono-Italic.ufo/features.fea new file mode 100644 index 00000000..6c520a9c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/features.fea @@ -0,0 +1,6 @@ + +include(../../features/shared.fea); + +include(../../features/mark/IntelOneMono-Italic mark.fea); + +include(../../features/aalt.fea); diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/fontinfo.plist b/sources/instances/truetype/IntelOneMono-Italic.ufo/fontinfo.plist new file mode 100644 index 00000000..a9113509 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/fontinfo.plist @@ -0,0 +1,379 @@ + + + + + ascender + 740 + capHeight + 655 + copyright + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + descender + -260 + familyName + Intel One Mono + guidelines + + italicAngle + -16.0 + openTypeHeadFlags + + 0 + 1 + + openTypeHheaAscender + 1090 + openTypeHheaDescender + -290 + openTypeHheaLineGap + 0 + openTypeNameDesigner + Fred Shallcrass + openTypeNameDesignerURL + http://frerejones.com + openTypeNameLicense + This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL + openTypeNameLicenseURL + https://github.com/intel/intel-one-mono/blob/main/license + openTypeNameManufacturer + Frere-Jones Type LLC + openTypeNameManufacturerURL + http://frerejones.com + openTypeNameRecords + + + encodingID + 0 + languageID + 0 + nameID + 0 + platformID + 1 + string + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + + + encodingID + 1 + languageID + 1033 + nameID + 0 + platformID + 3 + string + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + + + encodingID + 0 + languageID + 0 + nameID + 1 + platformID + 1 + string + Intel One Mono + + + encodingID + 1 + languageID + 1033 + nameID + 1 + platformID + 3 + string + Intel One Mono + + + encodingID + 0 + languageID + 0 + nameID + 2 + platformID + 1 + string + Italic + + + encodingID + 1 + languageID + 1033 + nameID + 2 + platformID + 3 + string + Italic + + + encodingID + 0 + languageID + 0 + nameID + 4 + platformID + 1 + string + Intel One Mono Italic + + + encodingID + 1 + languageID + 1033 + nameID + 4 + platformID + 3 + string + Intel One Mono Italic + + + encodingID + 0 + languageID + 0 + nameID + 6 + platformID + 1 + string + IntelOneMono-Italic + + + encodingID + 1 + languageID + 1033 + nameID + 6 + platformID + 3 + string + IntelOneMono-Italic + + + encodingID + 0 + languageID + 0 + nameID + 8 + platformID + 1 + string + Frere-Jones Type LLC + + + encodingID + 1 + languageID + 1033 + nameID + 8 + platformID + 3 + string + Frere-Jones Type LLC + + + encodingID + 0 + languageID + 0 + nameID + 9 + platformID + 1 + string + Fred Shallcrass + + + encodingID + 1 + languageID + 1033 + nameID + 9 + platformID + 3 + string + Fred Shallcrass + + + encodingID + 0 + languageID + 0 + nameID + 11 + platformID + 1 + string + http://frerejones.com + + + encodingID + 1 + languageID + 1033 + nameID + 11 + platformID + 3 + string + http://frerejones.com + + + encodingID + 0 + languageID + 0 + nameID + 12 + platformID + 1 + string + http://frerejones.com + + + encodingID + 1 + languageID + 1033 + nameID + 12 + platformID + 3 + string + http://frerejones.com + + + openTypeOS2CodePageRanges + + 0 + 1 + 4 + 7 + 8 + 29 + + openTypeOS2Panose + + 2 + 11 + 5 + 9 + 2 + 2 + 3 + 9 + 2 + 4 + + openTypeOS2Selection + + 7 + 8 + + openTypeOS2StrikeoutPosition + 286 + openTypeOS2StrikeoutSize + 50 + openTypeOS2Type + + openTypeOS2TypoAscender + 1090 + openTypeOS2TypoDescender + -290 + openTypeOS2TypoLineGap + 0 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 29 + 32 + + openTypeOS2VendorID + FRJN + openTypeOS2WeightClass + 400 + openTypeOS2WidthClass + 5 + openTypeOS2WinAscent + 1090 + openTypeOS2WinDescent + 290 + postscriptBlueFuzz + 0 + postscriptBlueScale + 0.05 + postscriptBlueValues + + -15 + 0 + 465 + 480 + 655 + 670 + 710 + 725 + + postscriptDefaultWidthX + 614 + postscriptFamilyBlues + + postscriptFamilyOtherBlues + + postscriptFontName + IntelOneMono-Italic + postscriptForceBold + + postscriptFullName + Intel One Mono Italic + postscriptIsFixedPitch + + postscriptOtherBlues + + -245 + -230 + + postscriptStemSnapH + + 72 + + postscriptStemSnapV + + 82 + + postscriptUnderlinePosition + -75 + postscriptUnderlineThickness + 50 + styleMapFamilyName + Intel One Mono + styleMapStyleName + italic + styleName + Italic + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 4 + xHeight + 465 + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_E_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_E_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_E_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_E_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_acute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_acute.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_breve.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_breve.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_breveacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_breveacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_breveacute.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_breveacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_brevedotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_brevedotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_brevedotbelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_brevedotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_brevegrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_brevegrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_brevegrave.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_brevegrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_brevehookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_brevehookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_brevehookabove.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_brevehookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_brevetilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_brevetilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_brevetilde.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_brevetilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_caron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_caron.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_circumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_circumflexdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_circumflexdotbelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_circumflexdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_circumflexhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_circumflexhookabove.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_circumflexhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_circumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_circumflextilde.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_circumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_dieresis.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_dieresis.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_grave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_grave.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_hookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_hookabove.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_macron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_macron.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_ogonek.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_ogonek.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_ring.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_ring.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_ring.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_ring.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_tilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/A_tilde.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/A_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/B_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/B_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/B_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/B_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/B_linebelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/B_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/B_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/B_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/C_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/C_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/C_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/C_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/C_acute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/C_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/C_acute.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/C_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/C_caron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/C_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/C_caron.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/C_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/C_cedilla.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/C_cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/C_cedilla.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/C_cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/C_circumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/C_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/C_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/C_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/C_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/C_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/C_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/C_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/D_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/D_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/D_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/D_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/D_caron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/D_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/D_caron.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/D_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/D_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/D_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/D_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/D_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/D_croat.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/D_croat.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/D_croat.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/D_croat.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/D_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/D_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/D_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/D_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/D_linebelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/D_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/D_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/D_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_acute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_acute.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_breve.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_breve.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_caron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_caron.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_circumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_circumflexdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_circumflexdotbelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_circumflexdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_circumflexhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_circumflexhookabove.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_circumflexhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_circumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_circumflextilde.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_circumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_dieresis.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_dieresis.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_grave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_grave.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_hookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_hookabove.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_macron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_macron.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_ng.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_ng.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_ng.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_ng.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_ogonek.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_ogonek.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_th.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_th.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_th.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_th.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_tilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_tilde.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_uro.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_uro.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/E_uro.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/E_uro.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/F_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/F_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/F_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/F_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/G_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/G_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/G_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/G_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/G_breve.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/G_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/G_breve.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/G_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/G_caron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/G_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/G_caron.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/G_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/G_circumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/G_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/G_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/G_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/G_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/G_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/G_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/G_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/G_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/G_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/G_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/G_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/G_macron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/G_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/G_macron.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/G_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/H_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/H_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/H_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/H_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/H_bar.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/H_bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/H_bar.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/H_bar.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/H_brevebelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/H_brevebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/H_brevebelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/H_brevebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/H_cedilla.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/H_cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/H_cedilla.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/H_cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/H_circumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/H_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/H_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/H_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/H_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/H_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/H_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/H_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_acute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_acute.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_breve.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_breve.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_caron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_caron.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_circumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_dieresis.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_dieresis.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_grave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_grave.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_hookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_hookabove.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_macron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_macron.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_ogonek.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_ogonek.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_tilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/I_tilde.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/I_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/J_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/J_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/J_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/J_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/J_circumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/J_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/J_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/J_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/K_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/K_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/K_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/K_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/K_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/K_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/K_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/K_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/K_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/K_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/K_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/K_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/K_linebelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/K_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/K_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/K_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_.dot.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_.dot.glif new file mode 100644 index 00000000..06a8542a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_.dot.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + public.objectLibs + + component0 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + component1 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + component2 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + + public.truetype.overlap + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_acute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_acute.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_caron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_caron.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_linebelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_macrondotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_macrondotbelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_macrondotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_slash.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_slash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/L_slash.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/L_slash.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/M_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/M_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/M_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/M_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/M_acute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/M_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/M_acute.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/M_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/M_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/M_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/M_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/M_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/M_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/M_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/M_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/M_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/N_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/N_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/N_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/N_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/N_acute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/N_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/N_acute.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/N_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/N_caron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/N_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/N_caron.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/N_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/N_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/N_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/N_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/N_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/N_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/N_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/N_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/N_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/N_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/N_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/N_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/N_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/N_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/N_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/N_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/N_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/N_grave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/N_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/N_grave.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/N_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/N_linebelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/N_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/N_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/N_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/N_tilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/N_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/N_tilde.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/N_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_E_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..f128fcf0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_E_.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_acute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_acute.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_breve.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..23e694fc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_breve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_caron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_caron.glif new file mode 100644 index 00000000..a31169d3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_circumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..03d9030b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_circumflexacute.glif new file mode 100644 index 00000000..20886fd2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_circumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_circumflexdotbelow.glif new file mode 100644 index 00000000..f0c11ecc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_circumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_circumflexgrave.glif new file mode 100644 index 00000000..7bbe62c6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_circumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_circumflexhookabove.glif new file mode 100644 index 00000000..a116e4a1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_circumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_circumflextilde.glif new file mode 100644 index 00000000..5d75340d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_circumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_dieresis.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..1d22d67e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_dotaccent.glif new file mode 100644 index 00000000..9e03abda --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_dotbelow.glif new file mode 100644 index 00000000..9b582193 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_grave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_grave.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_hookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_hookabove.glif new file mode 100644 index 00000000..d1a966c1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_horn.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_horn.glif new file mode 100644 index 00000000..61e7caf7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_horn.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_hornacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_hornacute.glif new file mode 100644 index 00000000..f9940859 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_hornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_horndotbelow.glif new file mode 100644 index 00000000..81d8f4b8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_horndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_horngrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_horngrave.glif new file mode 100644 index 00000000..4b9e0874 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_horngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_hornhookabove.glif new file mode 100644 index 00000000..70128b7e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_hornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_horntilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_horntilde.glif new file mode 100644 index 00000000..90d437ce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_horntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_hungarumlaut.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/O_hungarumlaut.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_hungarumlaut.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_macron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..cd59d8e5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_ogonek.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_ogonek.glif new file mode 100644 index 00000000..49431430 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_ogonek.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_slash.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..0462fa09 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_slash.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_tilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..3a018edd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/O_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/P_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/P_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/P_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/P_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Q_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Q_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Q_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Q_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/R_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_acute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..ca441967 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_caron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..6afcdae4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..60bbae27 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_dotaccent.glif new file mode 100644 index 00000000..1f001240 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_dotbelow.glif new file mode 100644 index 00000000..93636b85 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_linebelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_linebelow.glif new file mode 100644 index 00000000..94ecf9e8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_macrondotbelow.glif new file mode 100644 index 00000000..22562864 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/R_macrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/S_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_acute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..0fe35fcb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_caron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..b3dcb37d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_cedilla.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..d8717063 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_chwa.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..ae9b4e89 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_chwa.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_circumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..dd14b560 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..805d4b65 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_dotbelow.glif new file mode 100644 index 00000000..556c2cd3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/S_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_bar.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/T_bar.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_bar.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_caron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..71007e3b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_cedilla.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..cd55bb3e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_circumflexbelow.glif new file mode 100644 index 00000000..2d1216cd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_circumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..9267d88a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_dotbelow.glif new file mode 100644 index 00000000..6a58e51c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_horn.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..cf1d0ddc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_horn.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_linebelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_linebelow.glif new file mode 100644 index 00000000..3d2667c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/T_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_acute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..559c98f1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_breve.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..1fca1b9a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_breve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_caron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_caron.glif new file mode 100644 index 00000000..7a0b3cd6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_circumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..56808f64 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_dieresis.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..c558bf10 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_dieresisacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_dieresisacute.glif new file mode 100644 index 00000000..e5cbbe3c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_dieresisacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_dieresiscaron.glif new file mode 100644 index 00000000..dc2ff1ac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_dieresiscaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_dieresisgrave.glif new file mode 100644 index 00000000..b227a449 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_dieresisgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_dieresismacron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_dieresismacron.glif new file mode 100644 index 00000000..3d8c49b3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_dieresismacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_dotbelow.glif new file mode 100644 index 00000000..e5734611 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_grave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..b70eee33 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_hookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_hookabove.glif new file mode 100644 index 00000000..57be8c61 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_horn.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_horn.glif new file mode 100644 index 00000000..7ffce337 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_horn.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_hornacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_hornacute.glif new file mode 100644 index 00000000..c92a5573 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_hornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_horndotbelow.glif new file mode 100644 index 00000000..261148a5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_horndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_horngrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_horngrave.glif new file mode 100644 index 00000000..f8844811 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_horngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_hornhookabove.glif new file mode 100644 index 00000000..e91c29d4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_hornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_horntilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_horntilde.glif new file mode 100644 index 00000000..a348994a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_horntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..f97071b4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_macron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..f40fd627 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_ogonek.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..d6b5debb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_ring.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..acecf09a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_ring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_tilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..7a348d5c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/U_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/V_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/V_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/V_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/V_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/V_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/V_dotbelow.glif new file mode 100644 index 00000000..4c72e054 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/V_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/W_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/W_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/W_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/W_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/W_acute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..72c69526 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/W_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/W_circumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..0593fed6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/W_dieresis.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..a513fa2d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/W_grave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..d25a854b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/W_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/X_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/X_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/X_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/X_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/X_dieresis.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/X_dieresis.glif new file mode 100644 index 00000000..812f5e70 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/X_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_acute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..db378680 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_circumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..b5715383 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_dieresis.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..b3dc42c2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_dotaccent.glif new file mode 100644 index 00000000..6ae88e47 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_dotbelow.glif new file mode 100644 index 00000000..e4ce370f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_grave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_grave.glif new file mode 100644 index 00000000..9d870af4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_hookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_hookabove.glif new file mode 100644 index 00000000..c6ac111f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_macron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_macron.glif new file mode 100644 index 00000000..364f3398 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_tilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_tilde.glif new file mode 100644 index 00000000..4299aa98 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Y_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Z_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Z_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Z_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Z_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Z_acute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..9c9b1b25 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Z_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Z_caron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..fd1e61a7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Z_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Z_circumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Z_circumflex.glif new file mode 100644 index 00000000..6b9c50e4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Z_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Z_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..4e042a71 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Z_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Z_dotbelow.glif new file mode 100644 index 00000000..dc8798c0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Z_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Z_linebelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Z_linebelow.glif new file mode 100644 index 00000000..e0fd8ac0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/Z_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/_notdef.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/_notdef.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/_notdef.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/_notdef.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/a.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/a.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/a.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/a.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/aacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..34ed1bcf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/aacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/abreve.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..1fc9ee10 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/abreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/abreveacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/abreveacute.glif new file mode 100644 index 00000000..008a0f9f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/abreveacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/abrevedotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/abrevedotbelow.glif new file mode 100644 index 00000000..77c2c5d7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/abrevedotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/abrevegrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/abrevegrave.glif new file mode 100644 index 00000000..5044fb7c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/abrevegrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/abrevehookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/abrevehookabove.glif new file mode 100644 index 00000000..a2aea961 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/abrevehookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/abrevetilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/abrevetilde.glif new file mode 100644 index 00000000..1ca0f155 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/abrevetilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acaron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..b06c6ab4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..69a4d2c9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acircumflexacute.glif new file mode 100644 index 00000000..1dee5ac6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acircumflexdotbelow.glif new file mode 100644 index 00000000..dff11efc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acircumflexgrave.glif new file mode 100644 index 00000000..6b885c61 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acircumflexhookabove.glif new file mode 100644 index 00000000..08c3e650 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acircumflextilde.glif new file mode 100644 index 00000000..ee03c4b2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acute.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acutecmb.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acutecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acutecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acutecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acutecmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acutecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/acutecmb.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/acutecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/adieresis.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..e78d4076 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/adieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/adotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/adotaccent.glif new file mode 100644 index 00000000..b81a160d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/adotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/adotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/adotbelow.glif new file mode 100644 index 00000000..c93627c6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/adotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ae.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ae.glif new file mode 100644 index 00000000..d17f9127 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ae.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/agrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..7362f3ca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/agrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ahookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ahookabove.glif new file mode 100644 index 00000000..de9e971a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ahookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/amacron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..11ad93ff --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/amacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ampersand.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ampersand.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ampersand.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ampersand.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ampersand_ampersand.liga.glif new file mode 100644 index 00000000..1399a4c7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ampersand_ampersand.liga.glif @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/aogonek.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..3dc6a6d5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/aogonek.glif @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/apostrophemod.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/apostrophemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/apostrophemod.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/apostrophemod.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/approxequal.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/approxequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/approxequal.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/approxequal.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/aring.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/aring.glif new file mode 100644 index 00000000..0b4f320f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/aring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/asciicircum.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciicircum.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/asciicircum.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciicircum.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciicircum_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciicircum_equal.liga.glif new file mode 100644 index 00000000..14d9cc4a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciicircum_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/asciitilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciitilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/asciitilde.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciitilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..3096b731 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciitilde_asciitilde.liga.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciitilde_asciitilde_greater.glif new file mode 100644 index 00000000..9b0b7f6c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciitilde_asciitilde_greater.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciitilde_at.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciitilde_at.liga.glif new file mode 100644 index 00000000..5781f83c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciitilde_at.liga.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciitilde_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciitilde_greater.liga.glif new file mode 100644 index 00000000..a6b6f5b9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciitilde_greater.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciitilde_hyphen.liga.glif new file mode 100644 index 00000000..0b848d92 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asciitilde_hyphen.liga.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/asterisk.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asterisk.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/asterisk.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asterisk.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asterisk_asterisk.liga.glif new file mode 100644 index 00000000..af9890f6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asterisk_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif new file mode 100644 index 00000000..9f23a013 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asterisk_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asterisk_greater.liga.glif new file mode 100644 index 00000000..79183785 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asterisk_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asterisk_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asterisk_slash.liga.glif new file mode 100644 index 00000000..cca5f4f2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/asterisk_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/at.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/at.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/at.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/at.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/atilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..da2bc4ec --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/atilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/b.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/b.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/b.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/b.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/backslash.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/backslash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/backslash.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/backslash.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/backslash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/backslash_slash.liga.glif new file mode 100644 index 00000000..68d1b938 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/backslash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/bahtthai.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bahtthai.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/bahtthai.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bahtthai.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/bar.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/bar.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar.liga.glif new file mode 100644 index 00000000..6e09a289 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_bar.liga.glif new file mode 100644 index 00000000..dc1b5564 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_bar.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_bar_greater.liga.glif new file mode 100644 index 00000000..a4de4ffc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_bar_greater.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_equal.liga.glif new file mode 100644 index 00000000..ace7aaf2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_equal.start.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_equal.start.glif new file mode 100644 index 00000000..c9a89a6f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_greater.liga.glif new file mode 100644 index 00000000..885a0f36 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_greater.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_hyphen.liga.glif new file mode 100644 index 00000000..6e5e5720 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_hyphen.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_hyphen.start.glif new file mode 100644 index 00000000..909b54a4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bar_hyphen.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_braceright.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_braceright.liga.glif new file mode 100644 index 00000000..11a76246 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_braceright.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bracketright.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bracketright.liga.glif new file mode 100644 index 00000000..0ea13a4a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_bracketright.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_equal.liga.glif new file mode 100644 index 00000000..eda39188 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_equal.start.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_equal.start.glif new file mode 100644 index 00000000..50088837 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_greater.liga.glif new file mode 100644 index 00000000..e256a2d8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_hyphen.liga.glif new file mode 100644 index 00000000..f054776c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_hyphen.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_hyphen.start.glif new file mode 100644 index 00000000..12d2b55b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bar_hyphen.start.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/blinebelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/blinebelow.glif new file mode 100644 index 00000000..d7bb4b8c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/blinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/braceleft.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/braceleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/braceleft.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/braceleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/braceleft_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/braceleft_bar.liga.glif new file mode 100644 index 00000000..e9ccfdd5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/braceleft_bar.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/braceright.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/braceright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/braceright.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/braceright.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/bracketleft.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bracketleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/bracketleft.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bracketleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bracketleft_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bracketleft_bar.liga.glif new file mode 100644 index 00000000..46f82a69 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bracketleft_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/bracketright.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bracketright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/bracketright.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bracketright.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bracketright_numbersign.liga.glif new file mode 100644 index 00000000..61159ebd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bracketright_numbersign.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/breve.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/breve.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/breveacute.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/breveacute.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/breveacute.cap.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/breveacute.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/breveacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/breveacute.glif new file mode 100644 index 00000000..1e80018d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/breveacute.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevebelowcmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevebelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevebelowcmb.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevebelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevecmb.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevecmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevecmb.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevegrave.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevegrave.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevegrave.cap.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevegrave.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevegrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevegrave.glif new file mode 100644 index 00000000..c1fa2beb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevegrave.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevehook.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevehook.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevehook.cap.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevehook.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevehook.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevehook.glif new file mode 100644 index 00000000..2e74e146 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevehook.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevetilde.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevetilde.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/brevetilde.cap.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevetilde.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevetilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevetilde.glif new file mode 100644 index 00000000..d72fb5bf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/brevetilde.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/bullet.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bullet.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/bullet.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/bullet.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/c.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/c.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/c.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/c.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/cacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..ed7b192c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/cacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/caron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/caron.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/caroncmb.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/caroncmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/caroncmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/caroncmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/caroncmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/caroncmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/caroncmb.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/caroncmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ccaron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..9625c398 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ccaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ccedilla.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..277f2cf5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ccedilla.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ccircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..ec126aae --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/cdotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..fe12910d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/cedilla.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/cedilla.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/cedillacmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/cedillacmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/cedillacmb.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/cedillacmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/cent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/cent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/cent.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/cent.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflex.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflexacute.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflexacute.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflexacute.cap.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflexacute.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflexbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflexbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflexbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflexbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflexcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflexcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflexcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflexcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflexcmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflexcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflexcmb.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflexcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflexgrave.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflexgrave.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflexgrave.cap.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflexgrave.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflexhook.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflexhook.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflexhook.cap.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflexhook.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflexhook.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflexhook.glif new file mode 100644 index 00000000..80c89b3b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflexhook.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflextilde.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflextilde.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/circumflextilde.cap.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflextilde.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflextilde.glif new file mode 100644 index 00000000..cf7d3860 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/circumflextilde.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/colon.fig.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon.fig.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/colon.fig.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon.fig.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/colon.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/colon.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon_colon.liga.glif new file mode 100644 index 00000000..6c2c4d7d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon_colon_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon_colon_colon.liga.glif new file mode 100644 index 00000000..d6a3666b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon_colon_colon.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon_colon_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon_colon_equal.liga.glif new file mode 100644 index 00000000..7d8b1e9b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon_colon_equal.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon_equal.liga.glif new file mode 100644 index 00000000..3b80e4a9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon_greater.liga.glif new file mode 100644 index 00000000..dc8bf75c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon_greater.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon_less.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon_less.liga.glif new file mode 100644 index 00000000..4a95100d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/colon_less.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/comma.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/comma.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/comma.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/comma.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/commaaboverightcmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/commaaboverightcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/commaaboverightcmb.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/commaaboverightcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/commaturnedabovecmb.glif new file mode 100644 index 00000000..83f0be7e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/commaturnedabovecmb.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/commaturnedmod.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/commaturnedmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/commaturnedmod.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/commaturnedmod.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/contents.plist b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/contents.plist new file mode 100644 index 00000000..10a2ded8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/contents.plist @@ -0,0 +1,2092 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + AE + A_E_.glif + Aacute + A_acute.glif + Abreve + A_breve.glif + Abreveacute + A_breveacute.glif + Abrevedotbelow + A_brevedotbelow.glif + Abrevegrave + A_brevegrave.glif + Abrevehookabove + A_brevehookabove.glif + Abrevetilde + A_brevetilde.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflexacute + A_circumflexacute.glif + Acircumflexdotbelow + A_circumflexdotbelow.glif + Acircumflexgrave + A_circumflexgrave.glif + Acircumflexhookabove + A_circumflexhookabove.glif + Acircumflextilde + A_circumflextilde.glif + Adieresis + A_dieresis.glif + Adotaccent + A_dotaccent.glif + Adotbelow + A_dotbelow.glif + Agrave + A_grave.glif + Ahookabove + A_hookabove.glif + Amacron + A_macron.glif + Aogonek + A_ogonek.glif + Aring + A_ring.glif + Atilde + A_tilde.glif + B + B_.glif + Blinebelow + B_linebelow.glif + C + C_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + D + D_.glif + Dcaron + D_caron.glif + Dcircumflexbelow + D_circumflexbelow.glif + Dcroat + D_croat.glif + Ddotbelow + D_dotbelow.glif + Dlinebelow + D_linebelow.glif + E + E_.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Ecircumflexacute + E_circumflexacute.glif + Ecircumflexdotbelow + E_circumflexdotbelow.glif + Ecircumflexgrave + E_circumflexgrave.glif + Ecircumflexhookabove + E_circumflexhookabove.glif + Ecircumflextilde + E_circumflextilde.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Edotbelow + E_dotbelow.glif + Egrave + E_grave.glif + Ehookabove + E_hookabove.glif + Emacron + E_macron.glif + Eng + E_ng.glif + Eogonek + E_ogonek.glif + Eth + E_th.glif + Etilde + E_tilde.glif + Euro + E_uro.glif + F + F_.glif + G + G_.glif + Gbreve + G_breve.glif + Gcaron + G_caron.glif + Gcircumflex + G_circumflex.glif + Gcommaaccent + G_commaaccent.glif + Gdotaccent + G_dotaccent.glif + Gmacron + G_macron.glif + H + H_.glif + Hbar + H_bar.glif + Hbrevebelow + H_brevebelow.glif + Hcedilla + H_cedilla.glif + Hcircumflex + H_circumflex.glif + Hdotbelow + H_dotbelow.glif + I + I_.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icaron + I_caron.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idotaccent + I_dotaccent.glif + Idotbelow + I_dotbelow.glif + Igrave + I_grave.glif + Ihookabove + I_hookabove.glif + Imacron + I_macron.glif + Iogonek + I_ogonek.glif + Itilde + I_tilde.glif + J + J_.glif + Jcircumflex + J_circumflex.glif + K + K_.glif + Kcommaaccent + K_commaaccent.glif + Kdotbelow + K_dotbelow.glif + Klinebelow + K_linebelow.glif + L + L_.glif + L.dot + L_.dot.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcircumflexbelow + L_circumflexbelow.glif + Lcommaaccent + L_commaaccent.glif + Ldotbelow + L_dotbelow.glif + Llinebelow + L_linebelow.glif + Lmacrondotbelow + L_macrondotbelow.glif + Lslash + L_slash.glif + M + M_.glif + Macute + M_acute.glif + Mdotaccent + M_dotaccent.glif + Mdotbelow + M_dotbelow.glif + N + N_.glif + Nacute + N_acute.glif + Ncaron + N_caron.glif + Ncircumflexbelow + N_circumflexbelow.glif + Ncommaaccent + N_commaaccent.glif + Ndotaccent + N_dotaccent.glif + Ndotbelow + N_dotbelow.glif + Ngrave + N_grave.glif + Nlinebelow + N_linebelow.glif + Ntilde + N_tilde.glif + O + O_.glif + OE + O_E_.glif + Oacute + O_acute.glif + Obreve + O_breve.glif + Ocaron + O_caron.glif + Ocircumflex + O_circumflex.glif + Ocircumflexacute + O_circumflexacute.glif + Ocircumflexdotbelow + O_circumflexdotbelow.glif + Ocircumflexgrave + O_circumflexgrave.glif + Ocircumflexhookabove + O_circumflexhookabove.glif + Ocircumflextilde + O_circumflextilde.glif + Odieresis + O_dieresis.glif + Odotaccent + O_dotaccent.glif + Odotbelow + O_dotbelow.glif + Ograve + O_grave.glif + Ohookabove + O_hookabove.glif + Ohorn + O_horn.glif + Ohornacute + O_hornacute.glif + Ohorndotbelow + O_horndotbelow.glif + Ohorngrave + O_horngrave.glif + Ohornhookabove + O_hornhookabove.glif + Ohorntilde + O_horntilde.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Oogonek + O_ogonek.glif + Oslash + O_slash.glif + Otilde + O_tilde.glif + P + P_.glif + Q + Q_.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Rdotaccent + R_dotaccent.glif + Rdotbelow + R_dotbelow.glif + Rlinebelow + R_linebelow.glif + Rmacrondotbelow + R_macrondotbelow.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Sdotbelow + S_dotbelow.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tcircumflexbelow + T_circumflexbelow.glif + Tcommaaccent + T_commaaccent.glif + Tdotbelow + T_dotbelow.glif + Thorn + T_horn.glif + Tlinebelow + T_linebelow.glif + U + U_.glif + Uacute + U_acute.glif + Ubreve + U_breve.glif + Ucaron + U_caron.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresisacute + U_dieresisacute.glif + Udieresiscaron + U_dieresiscaron.glif + Udieresisgrave + U_dieresisgrave.glif + Udieresismacron + U_dieresismacron.glif + Udotbelow + U_dotbelow.glif + Ugrave + U_grave.glif + Uhookabove + U_hookabove.glif + Uhorn + U_horn.glif + Uhornacute + U_hornacute.glif + Uhorndotbelow + U_horndotbelow.glif + Uhorngrave + U_horngrave.glif + Uhornhookabove + U_hornhookabove.glif + Uhorntilde + U_horntilde.glif + Uhungarumlaut + U_hungarumlaut.glif + Umacron + U_macron.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Utilde + U_tilde.glif + V + V_.glif + Vdotbelow + V_dotbelow.glif + W + W_.glif + Wacute + W_acute.glif + Wcircumflex + W_circumflex.glif + Wdieresis + W_dieresis.glif + Wgrave + W_grave.glif + X + X_.glif + Xdieresis + X_dieresis.glif + Y + Y_.glif + Yacute + Y_acute.glif + Ycircumflex + Y_circumflex.glif + Ydieresis + Y_dieresis.glif + Ydotaccent + Y_dotaccent.glif + Ydotbelow + Y_dotbelow.glif + Ygrave + Y_grave.glif + Yhookabove + Y_hookabove.glif + Ymacron + Y_macron.glif + Ytilde + Y_tilde.glif + Z + Z_.glif + Zacute + Z_acute.glif + Zcaron + Z_caron.glif + Zcircumflex + Z_circumflex.glif + Zdotaccent + Z_dotaccent.glif + Zdotbelow + Z_dotbelow.glif + Zlinebelow + Z_linebelow.glif + a + a.glif + aacute + aacute.glif + abreve + abreve.glif + abreveacute + abreveacute.glif + abrevedotbelow + abrevedotbelow.glif + abrevegrave + abrevegrave.glif + abrevehookabove + abrevehookabove.glif + abrevetilde + abrevetilde.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflexacute + acircumflexacute.glif + acircumflexdotbelow + acircumflexdotbelow.glif + acircumflexgrave + acircumflexgrave.glif + acircumflexhookabove + acircumflexhookabove.glif + acircumflextilde + acircumflextilde.glif + acute + acute.glif + acutecmb + acutecmb.glif + acutecmb.cap + acutecmb.cap.glif + adieresis + adieresis.glif + adotaccent + adotaccent.glif + adotbelow + adotbelow.glif + ae + ae.glif + agrave + agrave.glif + ahookabove + ahookabove.glif + amacron + amacron.glif + ampersand + ampersand.glif + ampersand_ampersand.liga + ampersand_ampersand.liga.glif + aogonek + aogonek.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + asciicircum + asciicircum.glif + asciicircum_equal.liga + asciicircum_equal.liga.glif + asciitilde + asciitilde.glif + asciitilde_asciitilde.liga + asciitilde_asciitilde.liga.glif + asciitilde_asciitilde_greater + asciitilde_asciitilde_greater.glif + asciitilde_at.liga + asciitilde_at.liga.glif + asciitilde_greater.liga + asciitilde_greater.liga.glif + asciitilde_hyphen.liga + asciitilde_hyphen.liga.glif + asterisk + asterisk.glif + asterisk_asterisk.liga + asterisk_asterisk.liga.glif + asterisk_asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga.glif + asterisk_greater.liga + asterisk_greater.liga.glif + asterisk_slash.liga + asterisk_slash.liga.glif + at + at.glif + atilde + atilde.glif + b + b.glif + backslash + backslash.glif + backslash_slash.liga + backslash_slash.liga.glif + bahtthai + bahtthai.glif + bar + bar.glif + bar_bar.liga + bar_bar.liga.glif + bar_bar_bar.liga + bar_bar_bar.liga.glif + bar_bar_bar_greater.liga + bar_bar_bar_greater.liga.glif + bar_bar_equal.liga + bar_bar_equal.liga.glif + bar_bar_equal.start + bar_bar_equal.start.glif + bar_bar_greater.liga + bar_bar_greater.liga.glif + bar_bar_hyphen.liga + bar_bar_hyphen.liga.glif + bar_bar_hyphen.start + bar_bar_hyphen.start.glif + bar_braceright.liga + bar_braceright.liga.glif + bar_bracketright.liga + bar_bracketright.liga.glif + bar_equal.liga + bar_equal.liga.glif + bar_equal.start + bar_equal.start.glif + bar_greater.liga + bar_greater.liga.glif + bar_hyphen.liga + bar_hyphen.liga.glif + bar_hyphen.start + bar_hyphen.start.glif + blinebelow + blinebelow.glif + braceleft + braceleft.glif + braceleft_bar.liga + braceleft_bar.liga.glif + braceright + braceright.glif + bracketleft + bracketleft.glif + bracketleft_bar.liga + bracketleft_bar.liga.glif + bracketright + bracketright.glif + bracketright_numbersign.liga + bracketright_numbersign.liga.glif + breve + breve.glif + breveacute + breveacute.glif + breveacute.cap + breveacute.cap.glif + brevebelowcmb + brevebelowcmb.glif + brevecmb + brevecmb.glif + brevecmb.cap + brevecmb.cap.glif + brevegrave + brevegrave.glif + brevegrave.cap + brevegrave.cap.glif + brevehook + brevehook.glif + brevehook.cap + brevehook.cap.glif + brevetilde + brevetilde.glif + brevetilde.cap + brevetilde.cap.glif + bullet + bullet.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caroncmb + caroncmb.glif + caroncmb.cap + caroncmb.cap.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cedillacmb + cedillacmb.glif + cent + cent.glif + circumflex + circumflex.glif + circumflexacute + circumflexacute.glif + circumflexacute.cap + circumflexacute.cap.glif + circumflexbelowcmb + circumflexbelowcmb.glif + circumflexcmb + circumflexcmb.glif + circumflexcmb.cap + circumflexcmb.cap.glif + circumflexgrave + circumflexgrave.glif + circumflexgrave.cap + circumflexgrave.cap.glif + circumflexhook + circumflexhook.glif + circumflexhook.cap + circumflexhook.cap.glif + circumflextilde + circumflextilde.glif + circumflextilde.cap + circumflextilde.cap.glif + colon + colon.glif + colon.fig + colon.fig.glif + colon_colon.liga + colon_colon.liga.glif + colon_colon_colon.liga + colon_colon_colon.liga.glif + colon_colon_equal.liga + colon_colon_equal.liga.glif + colon_equal.liga + colon_equal.liga.glif + colon_greater.liga + colon_greater.liga.glif + colon_less.liga + colon_less.liga.glif + comma + comma.glif + commaaboverightcmb + commaaboverightcmb.glif + commaturnedabovecmb + commaturnedabovecmb.glif + commaturnedmod + commaturnedmod.glif + copyright + copyright.glif + d + d.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + darkshade + darkshade.glif + dbldnhorzbxd + dbldnhorzbxd.glif + dbldnleftbxd + dbldnleftbxd.glif + dbldnrightbxd + dbldnrightbxd.glif + dblhorzbxd + dblhorzbxd.glif + dblprimemod + dblprimemod.glif + dbluphorzbxd + dbluphorzbxd.glif + dblupleftbxd + dblupleftbxd.glif + dbluprightbxd + dbluprightbxd.glif + dblvertbxd + dblvertbxd.glif + dblverthorzbxd + dblverthorzbxd.glif + dblvertleftbxd + dblvertleftbxd.glif + dblvertrightbxd + dblvertrightbxd.glif + dcaron + dcaron.glif + dcircumflexbelow + dcircumflexbelow.glif + dcroat + dcroat.glif + ddotbelow + ddotbelow.glif + degree + degree.glif + dieresis + dieresis.glif + dieresisacute + dieresisacute.glif + dieresisacute.cap + dieresisacute.cap.glif + dieresisbelowcmb + dieresisbelowcmb.glif + dieresiscaron + dieresiscaron.glif + dieresiscaron.cap + dieresiscaron.cap.glif + dieresiscmb + dieresiscmb.glif + dieresiscmb.cap + dieresiscmb.cap.glif + dieresisgrave + dieresisgrave.glif + dieresisgrave.cap + dieresisgrave.cap.glif + dieresismacron + dieresismacron.glif + dieresismacron.cap + dieresismacron.cap.glif + divide + divide.glif + dlinebelow + dlinebelow.glif + dndblhorzsngbxd + dndblhorzsngbxd.glif + dndblleftsngbxd + dndblleftsngbxd.glif + dndblrightsngbxd + dndblrightsngbxd.glif + dneighthblock + dneighthblock.glif + dnfiveeighthsblock + dnfiveeighthsblock.glif + dnhalfblock + dnhalfblock.glif + dnheavyhorzlightbxd + dnheavyhorzlightbxd.glif + dnheavyleftlightbxd + dnheavyleftlightbxd.glif + dnheavyleftuplightbxd + dnheavyleftuplightbxd.glif + dnheavyrightlightbxd + dnheavyrightlightbxd.glif + dnheavyrightuplightbxd + dnheavyrightuplightbxd.glif + dnheavyuphorzlightbxd + dnheavyuphorzlightbxd.glif + dnleftquadrant + dnleftquadrant.glif + dnlighthorzheavybxd + dnlighthorzheavybxd.glif + dnlightleftheavybxd + dnlightleftheavybxd.glif + dnlightleftupheavybxd + dnlightleftupheavybxd.glif + dnlightrightheavybxd + dnlightrightheavybxd.glif + dnlightrightupheavybxd + dnlightrightupheavybxd.glif + dnlightuphorzheavybxd + dnlightuphorzheavybxd.glif + dnquarterblock + dnquarterblock.glif + dnrightquadrant + dnrightquadrant.glif + dnseveneighthsblock + dnseveneighthsblock.glif + dnsnghorzdblbxd + dnsnghorzdblbxd.glif + dnsngleftdblbxd + dnsngleftdblbxd.glif + dnsngrightdblbxd + dnsngrightdblbxd.glif + dnthreeeighthsblock + dnthreeeighthsblock.glif + dnthreequartersblock + dnthreequartersblock.glif + dollar + dollar.glif + dollar_greater.liga + dollar_greater.liga.glif + dong + dong.glif + dotaccent + dotaccent.glif + dotaccentcmb + dotaccentcmb.glif + dotaccentcmb.cap + dotaccentcmb.cap.glif + dotbelowcmb + dotbelowcmb.glif + dotlessi + dotlessi.glif + dotlessj + dotlessj.glif + e + e.glif + eacute + eacute.glif + ebreve + ebreve.glif + ecaron + ecaron.glif + ecircumflex + ecircumflex.glif + ecircumflexacute + ecircumflexacute.glif + ecircumflexdotbelow + ecircumflexdotbelow.glif + ecircumflexgrave + ecircumflexgrave.glif + ecircumflexhookabove + ecircumflexhookabove.glif + ecircumflextilde + ecircumflextilde.glif + edieresis + edieresis.glif + edotaccent + edotaccent.glif + edotbelow + edotbelow.glif + egrave + egrave.glif + ehookabove + ehookabove.glif + eight + eight.glif + eight.den + eight.den.glif + eight.inf + eight.inf.glif + eight.num + eight.num.glif + eight.sup + eight.sup.glif + ellipsis + ellipsis.glif + emacron + emacron.glif + emdash + emdash.glif + endash + endash.glif + eng + eng.glif + eogonek + eogonek.glif + equal + equal.glif + equal.end + equal.end.glif + equal.middle + equal.middle.glif + equal.start + equal.start.glif + equal_asciitilde.liga + equal_asciitilde.liga.glif + equal_bar.end + equal_bar.end.glif + equal_bar.liga + equal_bar.liga.glif + equal_bar_bar.end + equal_bar_bar.end.glif + equal_bar_bar.liga + equal_bar_bar.liga.glif + equal_bar_bar_equal.middle + equal_bar_bar_equal.middle.glif + equal_bar_equal.middle + equal_bar_equal.middle.glif + equal_colon_equal.middle + equal_colon_equal.middle.glif + equal_equal.liga + equal_equal.liga.glif + equal_equal_equal.liga + equal_equal_equal.liga.glif + equal_exclam_equal.middle + equal_exclam_equal.middle.glif + equal_greater.end + equal_greater.end.glif + equal_greater.liga + equal_greater.liga.glif + equal_greater_equal.middle + equal_greater_equal.middle.glif + equal_greater_greater.end + equal_greater_greater.end.glif + equal_greater_greater.liga + equal_greater_greater.liga.glif + equal_greater_greater_equal.m + equal_greater_greater_equal.m.glif + equal_less.end + equal_less.end.glif + equal_less.liga + equal_less.liga.glif + equal_less_equal.middle + equal_less_equal.middle.glif + equal_less_less.end + equal_less_less.end.glif + equal_less_less.liga + equal_less_less.liga.glif + equal_less_less_equal.middle + equal_less_less_equal.middle.glif + equal_slash.end + equal_slash.end.glif + equal_slash.liga + equal_slash.liga.glif + equal_slash_equal.middle + equal_slash_equal.middle.glif + equal_slash_slash.end + equal_slash_slash.end.glif + equal_slash_slash.liga + equal_slash_slash.liga.glif + equal_slash_slash_equal.middle + equal_slash_slash_equal.middle.glif + eth + eth.glif + etilde + etilde.glif + exclam + exclam.glif + exclam_asciitilde.liga + exclam_asciitilde.liga.glif + exclam_equal.liga + exclam_equal.liga.glif + exclam_equal_equal.liga + exclam_equal_equal.liga.glif + exclam_exclam.liga + exclam_exclam.liga.glif + exclam_exclam_period.liga + exclam_exclam_period.liga.glif + exclamdown + exclamdown.glif + f + f.glif + five + five.glif + five.den + five.den.glif + five.inf + five.inf.glif + five.num + five.num.glif + five.sup + five.sup.glif + fiveeighths + fiveeighths.glif + fivesixths + fivesixths.glif + four + four.glif + four.den + four.den.glif + four.inf + four.inf.glif + four.num + four.num.glif + four.sup + four.sup.glif + fourfifths + fourfifths.glif + fracbar + fracbar.glif + fraction + fraction.glif + fullblock + fullblock.glif + g + g.glif + gbreve + gbreve.glif + gcaron + gcaron.glif + gcircumflex + gcircumflex.glif + gcommaaccent + gcommaaccent.glif + gdotaccent + gdotaccent.glif + germandbls + germandbls.glif + gmacron + gmacron.glif + grave + grave.glif + gravecmb + gravecmb.glif + gravecmb.cap + gravecmb.cap.glif + greater + greater.glif + greater_colon.liga + greater_colon.liga.glif + greater_equal + greater_equal.glif + greater_equal.liga + greater_equal.liga.glif + greater_equal.start + greater_equal.start.glif + greater_equal_greater.liga + greater_equal_greater.liga.glif + greater_greater.liga + greater_greater.liga.glif + greater_greater_equal.liga + greater_greater_equal.liga.glif + greater_greater_equal.start + greater_greater_equal.start.glif + greater_greater_greater.liga + greater_greater_greater.liga.glif + greater_greater_hyphen.liga + greater_greater_hyphen.liga.glif + greater_greater_hyphen.start + greater_greater_hyphen.start.glif + greater_hyphen.liga + greater_hyphen.liga.glif + greater_hyphen.start + greater_hyphen.start.glif + greater_hyphen_greater.liga + greater_hyphen_greater.liga.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetright + guillemetright.glif + guilsinglleft + guilsinglleft.glif + guilsinglright + guilsinglright.glif + h + h.glif + hbar + hbar.glif + hbrevebelow + hbrevebelow.glif + hcedilla + hcedilla.glif + hcircumflex + hcircumflex.glif + hdotbelow + hdotbelow.glif + heavydbldashhorzbxd + heavydbldashhorzbxd.glif + heavydbldashvertbxd + heavydbldashvertbxd.glif + heavydnbxd + heavydnbxd.glif + heavydnhorzbxd + heavydnhorzbxd.glif + heavydnleftbxd + heavydnleftbxd.glif + heavydnrightbxd + heavydnrightbxd.glif + heavyhorzbxd + heavyhorzbxd.glif + heavyleftbxd + heavyleftbxd.glif + heavyleftlightrightbxd + heavyleftlightrightbxd.glif + heavyquaddashhorzbxd + heavyquaddashhorzbxd.glif + heavyquaddashvertbxd + heavyquaddashvertbxd.glif + heavyrightbxd + heavyrightbxd.glif + heavytrpldashhorzbxd + heavytrpldashhorzbxd.glif + heavytrpldashvertbxd + heavytrpldashvertbxd.glif + heavyupbxd + heavyupbxd.glif + heavyuphorzbxd + heavyuphorzbxd.glif + heavyupleftbxd + heavyupleftbxd.glif + heavyuplightdnbxd + heavyuplightdnbxd.glif + heavyuprightbxd + heavyuprightbxd.glif + heavyvertbxd + heavyvertbxd.glif + heavyverthorzbxd + heavyverthorzbxd.glif + heavyvertleftbxd + heavyvertleftbxd.glif + heavyvertrightbxd + heavyvertrightbxd.glif + hlinebelow + hlinebelow.glif + hookcmb + hookcmb.glif + hookcmb.cap + hookcmb.cap.glif + horizontalbar + horizontalbar.glif + hungarumlaut + hungarumlaut.glif + hungarumlautcmb + hungarumlautcmb.glif + hungarumlautcmb.cap + hungarumlautcmb.cap.glif + hyphen + hyphen.glif + hyphen.end + hyphen.end.glif + hyphen.middle + hyphen.middle.glif + hyphen.start + hyphen.start.glif + hyphen_asciitilde.liga + hyphen_asciitilde.liga.glif + hyphen_bar.end + hyphen_bar.end.glif + hyphen_bar.liga + hyphen_bar.liga.glif + hyphen_bar_bar.end + hyphen_bar_bar.end.glif + hyphen_bar_bar.liga + hyphen_bar_bar.liga.glif + hyphen_bar_bar_hyphen.middle + hyphen_bar_bar_hyphen.middle.glif + hyphen_bar_hyphen.middle + hyphen_bar_hyphen.middle.glif + hyphen_greater.end + hyphen_greater.end.glif + hyphen_greater.liga + hyphen_greater.liga.glif + hyphen_greater_greater.end + hyphen_greater_greater.end.glif + hyphen_greater_greater.liga + hyphen_greater_greater.liga.glif + hyphen_greater_greater_hyphen.m + hyphen_greater_greater_hyphen.m.glif + hyphen_greater_hyphen.middle + hyphen_greater_hyphen.middle.glif + hyphen_hyphen.liga + hyphen_hyphen.liga.glif + hyphen_hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga.glif + hyphen_less.end + hyphen_less.end.glif + hyphen_less.liga + hyphen_less.liga.glif + hyphen_less_hyphen.middle + hyphen_less_hyphen.middle.glif + hyphen_less_less.end + hyphen_less_less.end.glif + hyphen_less_less.liga + hyphen_less_less.liga.glif + hyphen_less_less_hyphen.middle + hyphen_less_less_hyphen.middle.glif + i + i.glif + iacute + iacute.glif + ibreve + ibreve.glif + icaron + icaron.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idotaccent + idotaccent.glif + idotbelow + idotbelow.glif + igrave + igrave.glif + ihookabove + ihookabove.glif + imacron + imacron.glif + iogonek + iogonek.glif + itilde + itilde.glif + j + j.glif + jcaron + jcaron.glif + jcircumflex + jcircumflex.glif + k + k.glif + kcommaaccent + kcommaaccent.glif + kdotbelow + kdotbelow.glif + klinebelow + klinebelow.glif + l + l.glif + l.dot + l.dot.glif + lacute + lacute.glif + lcaron + lcaron.glif + lcircumflexbelow + lcircumflexbelow.glif + lcommaaccent + lcommaaccent.glif + ldotbelow + ldotbelow.glif + leftdnheavyrightuplightbxd + leftdnheavyrightuplightbxd.glif + lefteighthblock + lefteighthblock.glif + leftfiveeighthsblock + leftfiveeighthsblock.glif + lefthalfblock + lefthalfblock.glif + leftheavyrightdnlightbxd + leftheavyrightdnlightbxd.glif + leftheavyrightuplightbxd + leftheavyrightuplightbxd.glif + leftheavyrightvertlightbxd + leftheavyrightvertlightbxd.glif + leftlightrightdnheavybxd + leftlightrightdnheavybxd.glif + leftlightrightupheavybxd + leftlightrightupheavybxd.glif + leftlightrightvertheavybxd + leftlightrightvertheavybxd.glif + leftquarterblock + leftquarterblock.glif + leftseveneighthsblock + leftseveneighthsblock.glif + leftthreeeighthsblock + leftthreeeighthsblock.glif + leftthreequartersblock + leftthreequartersblock.glif + leftupheavyrightdnlightbxd + leftupheavyrightdnlightbxd.glif + less + less.glif + less_asciitilde.liga + less_asciitilde.liga.glif + less_asciitilde_asciitilde.liga + less_asciitilde_asciitilde.liga.glif + less_asciitilde_greater.liga + less_asciitilde_greater.liga.glif + less_asterisk.liga + less_asterisk.liga.glif + less_asterisk_greater.liga + less_asterisk_greater.liga.glif + less_bar.liga + less_bar.liga.glif + less_bar_bar.liga + less_bar_bar.liga.glif + less_bar_bar_bar.liga + less_bar_bar_bar.liga.glif + less_bar_greater.liga + less_bar_greater.liga.glif + less_colon.liga + less_colon.liga.glif + less_dollar.liga + less_dollar.liga.glif + less_dollar_greater.liga + less_dollar_greater.liga.glif + less_equal + less_equal.glif + less_equal.liga + less_equal.liga.glif + less_equal.start + less_equal.start.glif + less_equal_greater.liga + less_equal_greater.liga.glif + less_equal_less.liga + less_equal_less.liga.glif + less_exclam_hyphen_hyphen.liga + less_exclam_hyphen_hyphen.liga.glif + less_greater.liga + less_greater.liga.glif + less_hyphen.liga + less_hyphen.liga.glif + less_hyphen.start + less_hyphen.start.glif + less_hyphen_greater.liga + less_hyphen_greater.liga.glif + less_hyphen_less.liga + less_hyphen_less.liga.glif + less_less.liga + less_less.liga.glif + less_less_equal.liga + less_less_equal.liga.glif + less_less_equal.start + less_less_equal.start.glif + less_less_hyphen.liga + less_less_hyphen.liga.glif + less_less_hyphen.start + less_less_hyphen.start.glif + less_less_less.liga + less_less_less.liga.glif + less_plus.liga + less_plus.liga.glif + less_plus_greater.liga + less_plus_greater.liga.glif + less_slash.liga + less_slash.liga.glif + less_slash_greater.liga + less_slash_greater.liga.glif + lessequal + lessequal.glif + lightarcdnleftbxd + lightarcdnleftbxd.glif + lightarcdnrightbxd + lightarcdnrightbxd.glif + lightarcupleftbxd + lightarcupleftbxd.glif + lightarcuprightbxd + lightarcuprightbxd.glif + lightdbldashhorzbxd + lightdbldashhorzbxd.glif + lightdbldashvertbxd + lightdbldashvertbxd.glif + lightdiagcrossbxd + lightdiagcrossbxd.glif + lightdiagupleftdnrightbxd + lightdiagupleftdnrightbxd.glif + lightdiaguprightdnleftbxd + lightdiaguprightdnleftbxd.glif + lightdnbxd + lightdnbxd.glif + lightdnhorzbxd + lightdnhorzbxd.glif + lightdnleftbxd + lightdnleftbxd.glif + lightdnrightbxd + lightdnrightbxd.glif + lighthorzbxd + lighthorzbxd.glif + lightleftbxd + lightleftbxd.glif + lightleftheavyrightbxd + lightleftheavyrightbxd.glif + lightquaddashhorzbxd + lightquaddashhorzbxd.glif + lightquaddashvertbxd + lightquaddashvertbxd.glif + lightrightbxd + lightrightbxd.glif + lightshade + lightshade.glif + lighttrpldashhorzbxd + lighttrpldashhorzbxd.glif + lighttrpldashvertbxd + lighttrpldashvertbxd.glif + lightupbxd + lightupbxd.glif + lightupheavydnbxd + lightupheavydnbxd.glif + lightuphorzbxd + lightuphorzbxd.glif + lightupleftbxd + lightupleftbxd.glif + lightuprightbxd + lightuprightbxd.glif + lightvertbxd + lightvertbxd.glif + lightverthorzbxd + lightverthorzbxd.glif + lightvertleftbxd + lightvertleftbxd.glif + lightvertrightbxd + lightvertrightbxd.glif + ligspacer + ligspacer.glif + llinebelow + llinebelow.glif + lmacrondotbelow + lmacrondotbelow.glif + lslash + lslash.glif + m + m.glif + macron + macron.glif + macronbelowcmb + macronbelowcmb.glif + macroncmb + macroncmb.glif + macroncmb.cap + macroncmb.cap.glif + macronlowmod + macronlowmod.glif + macute + macute.glif + mdotaccent + mdotaccent.glif + mdotbelow + mdotbelow.glif + mediumshade + mediumshade.glif + middotcat + middotcat.glif + middotcat.cap + middotcat.cap.glif + minus + minus.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + naira + naira.glif + ncaron + ncaron.glif + ncircumflexbelow + ncircumflexbelow.glif + ncommaaccent + ncommaaccent.glif + ndotaccent + ndotaccent.glif + ndotbelow + ndotbelow.glif + ngrave + ngrave.glif + nine + nine.glif + nine.den + nine.den.glif + nine.inf + nine.inf.glif + nine.num + nine.num.glif + nine.sup + nine.sup.glif + nlinebelow + nlinebelow.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numbersign.end + numbersign.end.glif + numbersign.middle + numbersign.middle.glif + numbersign.start + numbersign.start.glif + numbersign_braceleft.liga + numbersign_braceleft.liga.glif + numbersign_bracketleft.liga + numbersign_bracketleft.liga.glif + numbersign_colon.liga + numbersign_colon.liga.glif + numbersign_equal.liga + numbersign_equal.liga.glif + numbersign_exclam.liga + numbersign_exclam.liga.glif + numbersign_parenleft.liga + numbersign_parenleft.liga.glif + numbersign_question.liga + numbersign_question.liga.glif + numbersign_underscore.liga + numbersign_underscore.liga.glif + numbersign_underscore_parenleft + numbersign_underscore_parenleft.glif + o + o.glif + oacute + oacute.glif + obreve + obreve.glif + ocaron + ocaron.glif + ocircumflex + ocircumflex.glif + ocircumflexacute + ocircumflexacute.glif + ocircumflexdotbelow + ocircumflexdotbelow.glif + ocircumflexgrave + ocircumflexgrave.glif + ocircumflexhookabove + ocircumflexhookabove.glif + ocircumflextilde + ocircumflextilde.glif + odieresis + odieresis.glif + odotaccent + odotaccent.glif + odotbelow + odotbelow.glif + oe + oe.glif + ogonek + ogonek.glif + ogonekcmb + ogonekcmb.glif + ograve + ograve.glif + ohookabove + ohookabove.glif + ohorn + ohorn.glif + ohornacute + ohornacute.glif + ohorndotbelow + ohorndotbelow.glif + ohorngrave + ohorngrave.glif + ohornhookabove + ohornhookabove.glif + ohorntilde + ohorntilde.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + one + one.glif + one.den + one.den.glif + one.inf + one.inf.glif + one.num + one.num.glif + one.sup + one.sup.glif + oneeighth + oneeighth.glif + onefifth + onefifth.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesixth + onesixth.glif + onethird + onethird.glif + oogonek + oogonek.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + otilde + otilde.glif + p + p.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenright + parenright.glif + percent + percent.glif + percent_percent.liga + percent_percent.liga.glif + period + period.glif + period_equal.liga + period_equal.liga.glif + period_hyphen.liga + period_hyphen.liga.glif + period_period.liga + period_period.liga.glif + period_period_equal.liga + period_period_equal.liga.glif + period_period_less.liga + period_period_less.liga.glif + period_period_period.liga + period_period_period.liga.glif + period_question.liga + period_question.liga.glif + periodcentered + periodcentered.glif + peso + peso.glif + plus + plus.glif + plus_greater.liga + plus_greater.liga.glif + plus_plus.liga + plus_plus.liga.glif + plus_plus_plus.liga + plus_plus_plus.liga.glif + plusminus + plusminus.glif + primemod + primemod.glif + published + published.glif + q + q.glif + question + question.glif + question_colon.liga + question_colon.liga.glif + question_equal.liga + question_equal.liga.glif + question_period.liga + question_period.liga.glif + question_question.liga + question_question.liga.glif + questiondown + questiondown.glif + quotedbl + quotedbl.glif + quotedblbase + quotedblbase.glif + quotedblleft + quotedblleft.glif + quotedblright + quotedblright.glif + quoteleft + quoteleft.glif + quoteright + quoteright.glif + quotesinglbase + quotesinglbase.glif + quotesingle + quotesingle.glif + r + r.glif + racute + racute.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + rdotaccent + rdotaccent.glif + rdotbelow + rdotbelow.glif + registered + registered.glif + rightdnheavyleftuplightbxd + rightdnheavyleftuplightbxd.glif + righteighthblock + righteighthblock.glif + righthalfblock + righthalfblock.glif + rightheavyleftdnlightbxd + rightheavyleftdnlightbxd.glif + rightheavyleftuplightbxd + rightheavyleftuplightbxd.glif + rightheavyleftvertlightbxd + rightheavyleftvertlightbxd.glif + rightlightleftdnheavybxd + rightlightleftdnheavybxd.glif + rightlightleftupheavybxd + rightlightleftupheavybxd.glif + rightlightleftvertheavybxd + rightlightleftvertheavybxd.glif + rightupheavyleftdnlightbxd + rightupheavyleftdnlightbxd.glif + ring + ring.glif + ringcmb + ringcmb.glif + ringcmb.cap + ringcmb.cap.glif + ringhalfleft + ringhalfleft.glif + ringhalfright + ringhalfright.glif + rlinebelow + rlinebelow.glif + rmacrondotbelow + rmacrondotbelow.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwa + schwa.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + sdotbelow + sdotbelow.glif + section + section.glif + semicolon + semicolon.glif + semicolon_semicolon.liga + semicolon_semicolon.liga.glif + servicemark + servicemark.glif + seven + seven.glif + seven.den + seven.den.glif + seven.inf + seven.inf.glif + seven.num + seven.num.glif + seven.sup + seven.sup.glif + seveneighths + seveneighths.glif + six + six.glif + six.den + six.den.glif + six.inf + six.inf.glif + six.num + six.num.glif + six.sup + six.sup.glif + slash + slash.glif + slash_asterisk.liga + slash_asterisk.liga.glif + slash_backslash.liga + slash_backslash.liga.glif + slash_equal.liga + slash_equal.liga.glif + slash_equal.start + slash_equal.start.glif + slash_greater.liga + slash_greater.liga.glif + slash_slash.liga + slash_slash.liga.glif + slash_slash_equal.liga + slash_slash_equal.liga.glif + slash_slash_equal.start + slash_slash_equal.start.glif + slash_slash_slash.liga + slash_slash_slash.liga.glif + space + space.glif + sterling + sterling.glif + t + t.glif + tbar + tbar.glif + tcaron + tcaron.glif + tcedilla + tcedilla.glif + tcircumflexbelow + tcircumflexbelow.glif + tcommaaccent + tcommaaccent.glif + tdotbelow + tdotbelow.glif + thorn + thorn.glif + three + three.glif + three.den + three.den.glif + three.inf + three.inf.glif + three.num + three.num.glif + three.sup + three.sup.glif + threeeighths + threeeighths.glif + threefifths + threefifths.glif + threequarters + threequarters.glif + tilde + tilde.glif + tildecmb + tildecmb.glif + tildecmb.cap + tildecmb.cap.glif + tlinebelow + tlinebelow.glif + trademark + trademark.glif + two + two.glif + two.den + two.den.glif + two.inf + two.inf.glif + two.num + two.num.glif + two.sup + two.sup.glif + twodotleader + twodotleader.glif + twofifths + twofifths.glif + twothirds + twothirds.glif + u + u.glif + uacute + uacute.glif + ubreve + ubreve.glif + ucaron + ucaron.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresisacute + udieresisacute.glif + udieresiscaron + udieresiscaron.glif + udieresisgrave + udieresisgrave.glif + udieresismacron + udieresismacron.glif + udotbelow + udotbelow.glif + ugrave + ugrave.glif + uhookabove + uhookabove.glif + uhorn + uhorn.glif + uhornacute + uhornacute.glif + uhorndotbelow + uhorndotbelow.glif + uhorngrave + uhorngrave.glif + uhornhookabove + uhornhookabove.glif + uhorntilde + uhorntilde.glif + uhungarumlaut + uhungarumlaut.glif + umacron + umacron.glif + underscore + underscore.glif + underscore.end + underscore.end.glif + underscore.middle + underscore.middle.glif + underscore.start + underscore.start.glif + underscore_bar_underscore.m + underscore_bar_underscore.m.glif + uni00A0 + uni00A_0.glif + uni0326 + uni0326.glif + uni1E9E + uni1E_9E_.glif + uni2011 + uni2011.glif + uni20B9 + uni20B_9.glif + uni20BA + uni20B_A_.glif + uni20BD + uni20B_D_.glif + uni2610 + uni2610.glif + uni2611 + uni2611.glif + uni2612 + uni2612.glif + uni2713 + uni2713.glif + uniA788 + uniA_788.glif + uniE0A0 + uniE_0A_0.glif + uniE0A1 + uniE_0A_1.glif + uniE0A2 + uniE_0A_2.glif + uniE0B0 + uniE_0B_0.glif + uniE0B1 + uniE_0B_1.glif + uniE0B2 + uniE_0B_2.glif + uniE0B3 + uniE_0B_3.glif + uogonek + uogonek.glif + updblhorzsngbxd + updblhorzsngbxd.glif + updblleftsngbxd + updblleftsngbxd.glif + updblrightsngbxd + updblrightsngbxd.glif + upeighthblock + upeighthblock.glif + uphalfblock + uphalfblock.glif + upheavydnhorzlightbxd + upheavydnhorzlightbxd.glif + upheavyhorzlightbxd + upheavyhorzlightbxd.glif + upheavyleftdnlightbxd + upheavyleftdnlightbxd.glif + upheavyleftlightbxd + upheavyleftlightbxd.glif + upheavyrightdnlightbxd + upheavyrightdnlightbxd.glif + upheavyrightlightbxd + upheavyrightlightbxd.glif + upleftdnleftdnrightquadrant + upleftdnleftdnrightquadrant.glif + upleftdnrightquadrant + upleftdnrightquadrant.glif + upleftquadrant + upleftquadrant.glif + upleftuprightdnleftquadrant + upleftuprightdnleftquadrant.glif + upleftuprightdnrightquadrant + upleftuprightdnrightquadrant.glif + uplightdnhorzheavybxd + uplightdnhorzheavybxd.glif + uplighthorzheavybxd + uplighthorzheavybxd.glif + uplightleftdnheavybxd + uplightleftdnheavybxd.glif + uplightleftheavybxd + uplightleftheavybxd.glif + uplightrightdnheavybxd + uplightrightdnheavybxd.glif + uplightrightheavybxd + uplightrightheavybxd.glif + uprightdnleftdnrightquadrant + uprightdnleftdnrightquadrant.glif + uprightdnleftquadrant + uprightdnleftquadrant.glif + uprightquadrant + uprightquadrant.glif + upsnghorzdblbxd + upsnghorzdblbxd.glif + upsngleftdblbxd + upsngleftdblbxd.glif + upsngrightdblbxd + upsngrightdblbxd.glif + uring + uring.glif + utilde + utilde.glif + v + v.glif + vdotbelow + vdotbelow.glif + vertdblhorzsngbxd + vertdblhorzsngbxd.glif + vertdblleftsngbxd + vertdblleftsngbxd.glif + vertdblrightsngbxd + vertdblrightsngbxd.glif + vertheavyhorzlightbxd + vertheavyhorzlightbxd.glif + vertheavyleftlightbxd + vertheavyleftlightbxd.glif + vertheavyrightlightbxd + vertheavyrightlightbxd.glif + verticallinelowmod + verticallinelowmod.glif + verticallinemod + verticallinemod.glif + vertlighthorzheavybxd + vertlighthorzheavybxd.glif + vertlightleftheavybxd + vertlightleftheavybxd.glif + vertlightrightheavybxd + vertlightrightheavybxd.glif + vertsnghorzdblbxd + vertsnghorzdblbxd.glif + vertsngleftdblbxd + vertsngleftdblbxd.glif + vertsngrightdblbxd + vertsngrightdblbxd.glif + w + w.glif + w_w_w.liga + w_w_w.liga.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wgrave + wgrave.glif + won + won.glif + x + x.glif + xdieresis + xdieresis.glif + y + y.glif + yacute + yacute.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + ydotaccent + ydotaccent.glif + ydotbelow + ydotbelow.glif + yen + yen.glif + ygrave + ygrave.glif + yhookabove + yhookabove.glif + ymacron + ymacron.glif + ytilde + ytilde.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zcircumflex + zcircumflex.glif + zdotaccent + zdotaccent.glif + zdotbelow + zdotbelow.glif + zero + zero.glif + zero.den + zero.den.glif + zero.inf + zero.inf.glif + zero.num + zero.num.glif + zero.sup + zero.sup.glif + zlinebelow + zlinebelow.glif + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/copyright.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/copyright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/copyright.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/copyright.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/d.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/d.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/d.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/d.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dagger.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dagger.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dagger.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dagger.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/daggerdbl.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/daggerdbl.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/daggerdbl.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/daggerdbl.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/darkshade.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/darkshade.glif new file mode 100644 index 00000000..e6ce8215 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/darkshade.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dbldnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dbldnhorzbxd.glif new file mode 100644 index 00000000..d00ba709 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dbldnhorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dbldnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dbldnleftbxd.glif new file mode 100644 index 00000000..7fd2e0e9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dbldnleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dbldnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dbldnrightbxd.glif new file mode 100644 index 00000000..dc308f2a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dbldnrightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dblhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dblhorzbxd.glif new file mode 100644 index 00000000..bfd0fb1f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dblhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dblprimemod.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dblprimemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dblprimemod.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dblprimemod.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dbluphorzbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dbluphorzbxd.glif new file mode 100644 index 00000000..ec40985e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dbluphorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dblupleftbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dblupleftbxd.glif new file mode 100644 index 00000000..cf6fc089 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dblupleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dbluprightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dbluprightbxd.glif new file mode 100644 index 00000000..086cf3d1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dbluprightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dblvertbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dblvertbxd.glif new file mode 100644 index 00000000..fa5d56f1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dblvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dblverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dblverthorzbxd.glif new file mode 100644 index 00000000..15d6a1d5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dblverthorzbxd.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dblvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dblvertleftbxd.glif new file mode 100644 index 00000000..d37b4c41 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dblvertleftbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dblvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dblvertrightbxd.glif new file mode 100644 index 00000000..58e1a57b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dblvertrightbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dcaron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..4c881aab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dcircumflexbelow.glif new file mode 100644 index 00000000..598054fe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dcroat.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..300b5d1c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dcroat.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ddotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ddotbelow.glif new file mode 100644 index 00000000..a62ed008 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ddotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/degree.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/degree.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/degree.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/degree.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresis.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresis.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresisacute.cap.glif new file mode 100644 index 00000000..b31150ed --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresisacute.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresisacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..19328528 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresisbelowcmb.glif new file mode 100644 index 00000000..7d7ce0db --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresisbelowcmb.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresiscaron.cap.glif new file mode 100644 index 00000000..93441906 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresiscaron.cap.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresiscaron.glif new file mode 100644 index 00000000..b24f0f49 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresiscaron.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresiscmb.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresiscmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresiscmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresiscmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresiscmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresiscmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dieresiscmb.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresiscmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresisgrave.cap.glif new file mode 100644 index 00000000..c248a24b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresisgrave.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresisgrave.glif new file mode 100644 index 00000000..3bf41785 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresisgrave.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresismacron.cap.glif new file mode 100644 index 00000000..747e2911 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresismacron.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresismacron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresismacron.glif new file mode 100644 index 00000000..7aa9e8e9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dieresismacron.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/divide.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/divide.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/divide.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/divide.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dlinebelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dlinebelow.glif new file mode 100644 index 00000000..3c5bd199 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dndblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dndblhorzsngbxd.glif new file mode 100644 index 00000000..66b705b3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dndblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dndblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dndblleftsngbxd.glif new file mode 100644 index 00000000..fe8771a6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dndblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dndblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dndblrightsngbxd.glif new file mode 100644 index 00000000..3d3d2e27 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dndblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dneighthblock.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dneighthblock.glif new file mode 100644 index 00000000..f9382474 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dneighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnfiveeighthsblock.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnfiveeighthsblock.glif new file mode 100644 index 00000000..6d6b327e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnhalfblock.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnhalfblock.glif new file mode 100644 index 00000000..5cb2299a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnhalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnheavyhorzlightbxd.glif new file mode 100644 index 00000000..04e4ecc3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnheavyleftlightbxd.glif new file mode 100644 index 00000000..942fb241 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnheavyleftuplightbxd.glif new file mode 100644 index 00000000..4d900306 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnheavyrightlightbxd.glif new file mode 100644 index 00000000..9fce2989 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnheavyrightuplightbxd.glif new file mode 100644 index 00000000..3a905b3d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnheavyuphorzlightbxd.glif new file mode 100644 index 00000000..70eadd8b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnheavyuphorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnleftquadrant.glif new file mode 100644 index 00000000..0f752b04 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnlighthorzheavybxd.glif new file mode 100644 index 00000000..78f62c2c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnlighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnlightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnlightleftheavybxd.glif new file mode 100644 index 00000000..30b2ea09 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnlightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnlightleftupheavybxd.glif new file mode 100644 index 00000000..aa758b21 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnlightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnlightrightheavybxd.glif new file mode 100644 index 00000000..a1fd3307 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnlightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnlightrightupheavybxd.glif new file mode 100644 index 00000000..b1293a6a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnlightuphorzheavybxd.glif new file mode 100644 index 00000000..3db3ada5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnlightuphorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnquarterblock.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnquarterblock.glif new file mode 100644 index 00000000..5dc81108 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnrightquadrant.glif new file mode 100644 index 00000000..012bd532 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnrightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnseveneighthsblock.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnseveneighthsblock.glif new file mode 100644 index 00000000..a47c62d6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnsnghorzdblbxd.glif new file mode 100644 index 00000000..7d244c99 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnsngleftdblbxd.glif new file mode 100644 index 00000000..607c9a4a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnsngrightdblbxd.glif new file mode 100644 index 00000000..1df546f2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnthreeeighthsblock.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnthreeeighthsblock.glif new file mode 100644 index 00000000..e54a10a3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnthreequartersblock.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnthreequartersblock.glif new file mode 100644 index 00000000..e7b739c3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dnthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dollar.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dollar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dollar.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dollar.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dollar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dollar_greater.liga.glif new file mode 100644 index 00000000..fbdef9f9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dollar_greater.liga.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dong.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dong.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dong.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dong.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dotaccentcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dotaccentcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dotaccentcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dotaccentcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dotaccentcmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dotaccentcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dotaccentcmb.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dotaccentcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dotbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dotbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dotbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dotbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dotlessi.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dotlessi.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/dotlessi.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dotlessi.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dotlessj.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dotlessj.glif new file mode 100644 index 00000000..049cf752 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/dotlessj.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/e.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/e.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/e.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/e.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..399df89f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ebreve.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..18c2ad77 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ebreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecaron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..26eb285c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..19cfbb73 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecircumflexacute.glif new file mode 100644 index 00000000..a4b7ad44 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecircumflexdotbelow.glif new file mode 100644 index 00000000..2670f1bc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecircumflexgrave.glif new file mode 100644 index 00000000..7be696a0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecircumflexhookabove.glif new file mode 100644 index 00000000..278f01b4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecircumflextilde.glif new file mode 100644 index 00000000..b19ca7d2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ecircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/edieresis.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..48a77fa0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/edieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/edotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..9f5a28c1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/edotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/edotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/edotbelow.glif new file mode 100644 index 00000000..51b298f5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/edotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/egrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..d1f3f1ca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/egrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ehookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ehookabove.glif new file mode 100644 index 00000000..5bd60e3f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ehookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eight.den.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eight.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eight.den.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eight.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eight.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eight.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eight.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eight.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eight.inf.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eight.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eight.inf.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eight.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eight.num.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eight.num.glif new file mode 100644 index 00000000..cc1ad559 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eight.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eight.sup.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eight.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/eight.sup.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eight.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ellipsis.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ellipsis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ellipsis.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ellipsis.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/emacron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..85931f32 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/emacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/emdash.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/emdash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/emdash.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/emdash.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/endash.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/endash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/endash.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/endash.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eng.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eng.glif new file mode 100644 index 00000000..b8f8c63a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eng.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eogonek.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..baeb4a30 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eogonek.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal.end.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal.end.glif new file mode 100644 index 00000000..9846107f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/equal.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/equal.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal.middle.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal.middle.glif new file mode 100644 index 00000000..9aec084b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal.start.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal.start.glif new file mode 100644 index 00000000..9acef8df --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_asciitilde.liga.glif new file mode 100644 index 00000000..aa29dd96 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_asciitilde.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_bar.end.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_bar.end.glif new file mode 100644 index 00000000..0023a985 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_bar.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_bar.liga.glif new file mode 100644 index 00000000..98855906 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_bar.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_bar_bar.end.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_bar_bar.end.glif new file mode 100644 index 00000000..07c7340e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_bar_bar.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_bar_bar.liga.glif new file mode 100644 index 00000000..eb7d6625 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_bar_bar.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_bar_bar_equal.middle.glif new file mode 100644 index 00000000..2ebd4dd3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_bar_bar_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_bar_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_bar_equal.middle.glif new file mode 100644 index 00000000..76a7edfa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_bar_equal.middle.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_colon_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_colon_equal.middle.glif new file mode 100644 index 00000000..800d69fa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_colon_equal.middle.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_equal.liga.glif new file mode 100644 index 00000000..a91e0e1c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_equal.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_equal_equal.liga.glif new file mode 100644 index 00000000..ff6e906e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_equal_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_exclam_equal.middle.glif new file mode 100644 index 00000000..45ad1e8f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_exclam_equal.middle.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_greater.end.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_greater.end.glif new file mode 100644 index 00000000..97c74635 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_greater.end.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_greater.liga.glif new file mode 100644 index 00000000..651ce0e6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_greater_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_greater_equal.middle.glif new file mode 100644 index 00000000..2edb2d82 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_greater_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_greater_greater.end.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_greater_greater.end.glif new file mode 100644 index 00000000..59dc4bdf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_greater_greater.end.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_greater_greater.liga.glif new file mode 100644 index 00000000..9eac5e71 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_greater_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_greater_greater_equal.m.glif new file mode 100644 index 00000000..6006f334 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_greater_greater_equal.m.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_less.end.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_less.end.glif new file mode 100644 index 00000000..728096bf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_less.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_less.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_less.liga.glif new file mode 100644 index 00000000..976f7af7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_less.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_less_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_less_equal.middle.glif new file mode 100644 index 00000000..9477c025 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_less_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_less_less.end.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_less_less.end.glif new file mode 100644 index 00000000..57c896c7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_less_less.end.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_less_less.liga.glif new file mode 100644 index 00000000..bc80db5f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_less_less.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_less_less_equal.middle.glif new file mode 100644 index 00000000..8e504e61 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_less_less_equal.middle.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_slash.end.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_slash.end.glif new file mode 100644 index 00000000..e3eb0c40 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_slash.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_slash.liga.glif new file mode 100644 index 00000000..59dedf2c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_slash.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_slash_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_slash_equal.middle.glif new file mode 100644 index 00000000..5855fbd1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_slash_equal.middle.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_slash_slash.end.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_slash_slash.end.glif new file mode 100644 index 00000000..5e319f37 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_slash_slash.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_slash_slash.liga.glif new file mode 100644 index 00000000..ef04387a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_slash_slash.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_slash_slash_equal.middle.glif new file mode 100644 index 00000000..b68065ee --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/equal_slash_slash_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eth.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eth.glif new file mode 100644 index 00000000..8356c200 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/eth.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/etilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/etilde.glif new file mode 100644 index 00000000..4270e672 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/etilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/exclam.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/exclam.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/exclam.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/exclam.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/exclam_asciitilde.liga.glif new file mode 100644 index 00000000..02700fbb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/exclam_asciitilde.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/exclam_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/exclam_equal.liga.glif new file mode 100644 index 00000000..17a28170 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/exclam_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/exclam_equal_equal.liga.glif new file mode 100644 index 00000000..9326b042 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/exclam_equal_equal.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/exclam_exclam.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/exclam_exclam.liga.glif new file mode 100644 index 00000000..92766d8a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/exclam_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/exclam_exclam_period.liga.glif new file mode 100644 index 00000000..d5bfd152 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/exclam_exclam_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/exclamdown.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/exclamdown.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/exclamdown.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/exclamdown.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/f.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/f.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/f.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/f.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/five.den.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/five.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/five.den.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/five.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/five.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/five.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/five.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/five.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/five.inf.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/five.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/five.inf.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/five.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/five.num.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/five.num.glif new file mode 100644 index 00000000..c299993d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/five.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/five.sup.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/five.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/five.sup.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/five.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/fiveeighths.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/fiveeighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/fiveeighths.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/fiveeighths.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/fivesixths.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/fivesixths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/fivesixths.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/fivesixths.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/four.den.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/four.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/four.den.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/four.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/four.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/four.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/four.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/four.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/four.inf.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/four.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/four.inf.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/four.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/four.num.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/four.num.glif new file mode 100644 index 00000000..e02b8324 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/four.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/four.sup.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/four.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/four.sup.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/four.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/fourfifths.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/fourfifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/fourfifths.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/fourfifths.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/fracbar.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/fracbar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/fracbar.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/fracbar.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/fraction.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/fraction.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/fraction.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/fraction.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/fullblock.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/fullblock.glif new file mode 100644 index 00000000..c0d56679 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/fullblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/g.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/g.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/g.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/g.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gbreve.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..1b11133f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gbreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gcaron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gcaron.glif new file mode 100644 index 00000000..bd6bfd44 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gcircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..00db7a01 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..25bd6502 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gdotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..1b00c9c6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/germandbls.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..451abcd3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/germandbls.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gmacron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gmacron.glif new file mode 100644 index 00000000..ec9fa94f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gmacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/grave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/grave.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gravecmb.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gravecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gravecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gravecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gravecmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gravecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/gravecmb.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/gravecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/greater.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/greater.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_colon.liga.glif new file mode 100644 index 00000000..8f136aac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_equal.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_equal.glif new file mode 100644 index 00000000..8ab79070 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_equal.liga.glif new file mode 100644 index 00000000..16c6c244 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_equal.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_equal.start.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_equal.start.glif new file mode 100644 index 00000000..bdecd740 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_equal.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_equal_greater.liga.glif new file mode 100644 index 00000000..9fa1b397 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_equal_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_greater.liga.glif new file mode 100644 index 00000000..a7208ce7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_greater_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_greater_equal.liga.glif new file mode 100644 index 00000000..503dda92 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_greater_equal.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_greater_equal.start.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_greater_equal.start.glif new file mode 100644 index 00000000..e121b9ef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_greater_equal.start.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_greater_greater.liga.glif new file mode 100644 index 00000000..c4289f69 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_greater_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_greater_hyphen.liga.glif new file mode 100644 index 00000000..f9490464 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_greater_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_greater_hyphen.start.glif new file mode 100644 index 00000000..39ff2173 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_greater_hyphen.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_hyphen.liga.glif new file mode 100644 index 00000000..773c37f6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_hyphen.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_hyphen.start.glif new file mode 100644 index 00000000..70be43be --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_hyphen.start.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_hyphen_greater.liga.glif new file mode 100644 index 00000000..ae0de58f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greater_hyphen_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/greaterequal.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greaterequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/greaterequal.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/greaterequal.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/guillemetleft.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/guillemetleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/guillemetleft.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/guillemetleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/guillemetright.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/guillemetright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/guillemetright.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/guillemetright.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/guilsinglleft.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/guilsinglleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/guilsinglleft.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/guilsinglleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/guilsinglright.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/guilsinglright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/guilsinglright.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/guilsinglright.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/h.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/h.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/h.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/h.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hbar.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..ebf80512 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hbar.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hbrevebelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hbrevebelow.glif new file mode 100644 index 00000000..e45650df --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hbrevebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hcedilla.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hcedilla.glif new file mode 100644 index 00000000..bdb0161c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hcedilla.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hcircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..7c7eb46a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hdotbelow.glif new file mode 100644 index 00000000..dfef2f8b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavydbldashhorzbxd.glif new file mode 100644 index 00000000..68c248fc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavydbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavydbldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavydbldashvertbxd.glif new file mode 100644 index 00000000..8b765941 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavydbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavydnbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavydnbxd.glif new file mode 100644 index 00000000..1c4cd504 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavydnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavydnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavydnhorzbxd.glif new file mode 100644 index 00000000..7d385f55 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavydnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavydnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavydnleftbxd.glif new file mode 100644 index 00000000..13125281 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavydnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavydnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavydnrightbxd.glif new file mode 100644 index 00000000..a68f4821 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavydnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyhorzbxd.glif new file mode 100644 index 00000000..e62d03f7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyhorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyleftbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyleftbxd.glif new file mode 100644 index 00000000..f68b33ac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyleftlightrightbxd.glif new file mode 100644 index 00000000..1565e3de --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyleftlightrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyquaddashhorzbxd.glif new file mode 100644 index 00000000..8ff4c1d9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyquaddashvertbxd.glif new file mode 100644 index 00000000..667b2b7f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyrightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyrightbxd.glif new file mode 100644 index 00000000..f4e37fef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavytrpldashhorzbxd.glif new file mode 100644 index 00000000..1806f4e5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavytrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavytrpldashvertbxd.glif new file mode 100644 index 00000000..a1f58af2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavytrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyupbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyupbxd.glif new file mode 100644 index 00000000..b9cffc07 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyuphorzbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyuphorzbxd.glif new file mode 100644 index 00000000..9ffaa902 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyupleftbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyupleftbxd.glif new file mode 100644 index 00000000..ec53a452 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyuplightdnbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyuplightdnbxd.glif new file mode 100644 index 00000000..2015d75c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyuplightdnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyuprightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyuprightbxd.glif new file mode 100644 index 00000000..f1c7c14e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyvertbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyvertbxd.glif new file mode 100644 index 00000000..acd5f0cf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyverthorzbxd.glif new file mode 100644 index 00000000..fd30d7c8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyvertleftbxd.glif new file mode 100644 index 00000000..1b6d7866 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyvertrightbxd.glif new file mode 100644 index 00000000..33ca5c0f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/heavyvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hlinebelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hlinebelow.glif new file mode 100644 index 00000000..ba9adddd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hookcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hookcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hookcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hookcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hookcmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hookcmb.glif new file mode 100644 index 00000000..8374cad3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hookcmb.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/horizontalbar.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/horizontalbar.glif new file mode 100644 index 00000000..ef4b3086 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/horizontalbar.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hungarumlaut.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hungarumlaut.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hungarumlaut.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hungarumlautcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hungarumlautcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hungarumlautcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hungarumlautcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hungarumlautcmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hungarumlautcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hungarumlautcmb.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hungarumlautcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen.end.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen.end.glif new file mode 100644 index 00000000..1fadda72 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hyphen.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/hyphen.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen.middle.glif new file mode 100644 index 00000000..87693f7d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen.start.glif new file mode 100644 index 00000000..8e975acf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_asciitilde.liga.glif new file mode 100644 index 00000000..3e87c532 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_asciitilde.liga.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_bar.end.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_bar.end.glif new file mode 100644 index 00000000..d7a458c7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_bar.end.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_bar.liga.glif new file mode 100644 index 00000000..7952bf62 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_bar.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_bar.end.glif new file mode 100644 index 00000000..6203a028 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_bar.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_bar.liga.glif new file mode 100644 index 00000000..9db2a7d9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif new file mode 100644 index 00000000..e87e67e0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_hyphen.middle.glif new file mode 100644 index 00000000..1bcf05d3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_bar_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_greater.end.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_greater.end.glif new file mode 100644 index 00000000..205404d7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_greater.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_greater.liga.glif new file mode 100644 index 00000000..a53959ef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_greater.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_greater.end.glif new file mode 100644 index 00000000..1823ff70 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_greater.end.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_greater.liga.glif new file mode 100644 index 00000000..527ea5a4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif new file mode 100644 index 00000000..cbaa829e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_hyphen.middle.glif new file mode 100644 index 00000000..20cf6167 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_greater_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_hyphen.liga.glif new file mode 100644 index 00000000..4c49ab56 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_hyphen.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..52fb755c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_less.end.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_less.end.glif new file mode 100644 index 00000000..89adbc7f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_less.end.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_less.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_less.liga.glif new file mode 100644 index 00000000..d3a0a915 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_less.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_less_hyphen.middle.glif new file mode 100644 index 00000000..3601f1b6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_less_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_less_less.end.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_less_less.end.glif new file mode 100644 index 00000000..64ab8add --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_less_less.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_less_less.liga.glif new file mode 100644 index 00000000..d8cdcc1a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_less_less.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif new file mode 100644 index 00000000..0dab2c31 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/i.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/i.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/i.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/i.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/iacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..66b02cea --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/iacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ibreve.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..1678b7e0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ibreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/icaron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/icaron.glif new file mode 100644 index 00000000..eaea7b49 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/icaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/icircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..f1678f34 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/icircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/idieresis.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..c75c0078 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/idieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/idotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/idotaccent.glif new file mode 100644 index 00000000..f9755096 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/idotaccent.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/idotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/idotbelow.glif new file mode 100644 index 00000000..2506bb5d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/idotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/igrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..63cad13e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/igrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ihookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ihookabove.glif new file mode 100644 index 00000000..2fbd65ca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ihookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/imacron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..264e1dc8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/imacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/iogonek.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..a1dd017a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/iogonek.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/itilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..08998780 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/itilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/j.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/j.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/j.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/j.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/jcaron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/jcaron.glif new file mode 100644 index 00000000..5d3190df --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/jcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/jcircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..b79dcb69 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/k.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/k.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/k.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/k.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/kcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..fc8c70d8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/kdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/kdotbelow.glif new file mode 100644 index 00000000..c24ed5c1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/kdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/klinebelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/klinebelow.glif new file mode 100644 index 00000000..c2b98296 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/klinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/l.dot.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/l.dot.glif new file mode 100644 index 00000000..89764eec --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/l.dot.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/l.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/l.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/l.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/l.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..c4460061 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/layerinfo.plist b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/layerinfo.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/layerinfo.plist rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/layerinfo.plist diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lcaron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..c1ba9f0f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lcircumflexbelow.glif new file mode 100644 index 00000000..ad863744 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..0ba86a46 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ldotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ldotbelow.glif new file mode 100644 index 00000000..afaad087 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ldotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftdnheavyrightuplightbxd.glif new file mode 100644 index 00000000..8407ee02 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftdnheavyrightuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lefteighthblock.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lefteighthblock.glif new file mode 100644 index 00000000..bd0981c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lefteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftfiveeighthsblock.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftfiveeighthsblock.glif new file mode 100644 index 00000000..1db3b143 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lefthalfblock.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lefthalfblock.glif new file mode 100644 index 00000000..7ad2b780 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lefthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftheavyrightdnlightbxd.glif new file mode 100644 index 00000000..318ac4cf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftheavyrightuplightbxd.glif new file mode 100644 index 00000000..0c581e09 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftheavyrightvertlightbxd.glif new file mode 100644 index 00000000..3dff1b51 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftheavyrightvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftlightrightdnheavybxd.glif new file mode 100644 index 00000000..a2422973 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftlightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftlightrightupheavybxd.glif new file mode 100644 index 00000000..f92508ca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftlightrightvertheavybxd.glif new file mode 100644 index 00000000..16b12551 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftlightrightvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftquarterblock.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftquarterblock.glif new file mode 100644 index 00000000..0a473fc6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftseveneighthsblock.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftseveneighthsblock.glif new file mode 100644 index 00000000..e6dd7d1a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftthreeeighthsblock.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftthreeeighthsblock.glif new file mode 100644 index 00000000..c6bf4e61 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftthreequartersblock.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftthreequartersblock.glif new file mode 100644 index 00000000..75cb3ef3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftupheavyrightdnlightbxd.glif new file mode 100644 index 00000000..a6971f73 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/leftupheavyrightdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/less.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/less.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_asciitilde.liga.glif new file mode 100644 index 00000000..80b5b4a5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_asciitilde.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..f9a77b5b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_asciitilde_greater.liga.glif new file mode 100644 index 00000000..c0d996ba --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_asciitilde_greater.liga.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_asterisk.liga.glif new file mode 100644 index 00000000..1bc15f94 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_asterisk_greater.liga.glif new file mode 100644 index 00000000..a7ea9dec --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_asterisk_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_bar.liga.glif new file mode 100644 index 00000000..9a20764e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_bar.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_bar_bar.liga.glif new file mode 100644 index 00000000..3c83e302 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_bar_bar.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_bar_bar_bar.liga.glif new file mode 100644 index 00000000..1e325cc9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_bar_bar_bar.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_bar_greater.liga.glif new file mode 100644 index 00000000..dfbb2055 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_bar_greater.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_colon.liga.glif new file mode 100644 index 00000000..4a69a286 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_dollar.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_dollar.liga.glif new file mode 100644 index 00000000..eaf8e298 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_dollar.liga.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_dollar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_dollar_greater.liga.glif new file mode 100644 index 00000000..033cc26c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_dollar_greater.liga.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_equal.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_equal.glif new file mode 100644 index 00000000..d1b4b939 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_equal.liga.glif new file mode 100644 index 00000000..8fa4ff34 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_equal.start.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_equal.start.glif new file mode 100644 index 00000000..7fab218b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_equal.start.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_equal_greater.liga.glif new file mode 100644 index 00000000..b6e0ddb5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_equal_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_equal_less.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_equal_less.liga.glif new file mode 100644 index 00000000..96aa1b54 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_equal_less.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..6c5598b8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_greater.liga.glif new file mode 100644 index 00000000..b55a39b1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_greater.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_hyphen.liga.glif new file mode 100644 index 00000000..f8de31fb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_hyphen.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_hyphen.start.glif new file mode 100644 index 00000000..8c80fb36 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_hyphen.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_hyphen_greater.liga.glif new file mode 100644 index 00000000..89f7e5b0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_hyphen_greater.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_hyphen_less.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_hyphen_less.liga.glif new file mode 100644 index 00000000..3d8d323f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_hyphen_less.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_less.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_less.liga.glif new file mode 100644 index 00000000..8dedcdaf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_less.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_less_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_less_equal.liga.glif new file mode 100644 index 00000000..17548f55 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_less_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_less_equal.start.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_less_equal.start.glif new file mode 100644 index 00000000..9802371d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_less_equal.start.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_less_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_less_hyphen.liga.glif new file mode 100644 index 00000000..96a442a8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_less_hyphen.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_less_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_less_hyphen.start.glif new file mode 100644 index 00000000..455ef70a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_less_hyphen.start.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_less_less.liga.glif new file mode 100644 index 00000000..40ad6dca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_less_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_plus.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_plus.liga.glif new file mode 100644 index 00000000..8cdd8443 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_plus.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_plus_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_plus_greater.liga.glif new file mode 100644 index 00000000..5c4de59f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_plus_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_slash.liga.glif new file mode 100644 index 00000000..dc988e66 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_slash.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_slash_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_slash_greater.liga.glif new file mode 100644 index 00000000..350f86be --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/less_slash_greater.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/lessequal.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lessequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/lessequal.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lessequal.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightarcdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightarcdnleftbxd.glif new file mode 100644 index 00000000..27c9daf2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightarcdnleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightarcdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightarcdnrightbxd.glif new file mode 100644 index 00000000..345284c6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightarcdnrightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightarcupleftbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightarcupleftbxd.glif new file mode 100644 index 00000000..3d1410a0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightarcupleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightarcuprightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightarcuprightbxd.glif new file mode 100644 index 00000000..45a41780 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightarcuprightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdbldashhorzbxd.glif new file mode 100644 index 00000000..7b45593c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdbldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdbldashvertbxd.glif new file mode 100644 index 00000000..a4913454 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdiagcrossbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdiagcrossbxd.glif new file mode 100644 index 00000000..24878551 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdiagcrossbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdiagupleftdnrightbxd.glif new file mode 100644 index 00000000..827241bd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdiagupleftdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdiaguprightdnleftbxd.glif new file mode 100644 index 00000000..a1928aea --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdiaguprightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdnbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdnbxd.glif new file mode 100644 index 00000000..3a50261a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdnhorzbxd.glif new file mode 100644 index 00000000..1a41ad78 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdnleftbxd.glif new file mode 100644 index 00000000..2c9c50bd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdnrightbxd.glif new file mode 100644 index 00000000..c9c0ad01 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lighthorzbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lighthorzbxd.glif new file mode 100644 index 00000000..9191c18b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lighthorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightleftbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightleftbxd.glif new file mode 100644 index 00000000..850dab99 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightleftheavyrightbxd.glif new file mode 100644 index 00000000..67ea204a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightleftheavyrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightquaddashhorzbxd.glif new file mode 100644 index 00000000..a0e88821 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightquaddashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightquaddashvertbxd.glif new file mode 100644 index 00000000..f112be46 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightrightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightrightbxd.glif new file mode 100644 index 00000000..9aab6834 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightshade.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightshade.glif new file mode 100644 index 00000000..f4d373db --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightshade.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lighttrpldashhorzbxd.glif new file mode 100644 index 00000000..61622aeb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lighttrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lighttrpldashvertbxd.glif new file mode 100644 index 00000000..7063a1bb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lighttrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightupbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightupbxd.glif new file mode 100644 index 00000000..61f5d9b3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightupheavydnbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightupheavydnbxd.glif new file mode 100644 index 00000000..3fdca957 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightupheavydnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightuphorzbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightuphorzbxd.glif new file mode 100644 index 00000000..21e63621 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightupleftbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightupleftbxd.glif new file mode 100644 index 00000000..f39e2699 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightuprightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightuprightbxd.glif new file mode 100644 index 00000000..fb992988 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightvertbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightvertbxd.glif new file mode 100644 index 00000000..1ab08f1d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightverthorzbxd.glif new file mode 100644 index 00000000..e1fa4746 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightvertleftbxd.glif new file mode 100644 index 00000000..830392b5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightvertrightbxd.glif new file mode 100644 index 00000000..90df71bc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lightvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ligspacer.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ligspacer.glif new file mode 100644 index 00000000..aaf0214e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ligspacer.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/llinebelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/llinebelow.glif new file mode 100644 index 00000000..590481c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/llinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lmacrondotbelow.glif new file mode 100644 index 00000000..58b14d6b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lmacrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lslash.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..ad210629 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/lslash.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/m.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/m.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/m.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/m.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/macron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/macron.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/macronbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/macronbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/macronbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/macronbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/macroncmb.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/macroncmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/macroncmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/macroncmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/macroncmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/macroncmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/macroncmb.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/macroncmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/macronlowmod.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/macronlowmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/macronlowmod.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/macronlowmod.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/macute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/macute.glif new file mode 100644 index 00000000..d8da0762 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/macute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/mdotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/mdotaccent.glif new file mode 100644 index 00000000..7efa019f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/mdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/mdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/mdotbelow.glif new file mode 100644 index 00000000..13d17c03 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/mdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/mediumshade.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/mediumshade.glif new file mode 100644 index 00000000..6a701829 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/mediumshade.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/middotcat.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/middotcat.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/middotcat.cap.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/middotcat.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/middotcat.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/middotcat.glif new file mode 100644 index 00000000..cc79e85d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/middotcat.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/minus.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/minus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/minus.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/minus.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/mu.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/mu.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/mu.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/mu.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/multiply.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/multiply.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/multiply.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/multiply.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/n.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/n.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/n.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/n.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/nacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..ef3f6092 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/nacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/naira.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/naira.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/naira.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/naira.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ncaron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..e28ca9bd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ncaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ncircumflexbelow.glif new file mode 100644 index 00000000..4068663c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ncircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ncommaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..8a88be65 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ndotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ndotaccent.glif new file mode 100644 index 00000000..92650cfd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ndotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ndotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ndotbelow.glif new file mode 100644 index 00000000..247555b0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ngrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ngrave.glif new file mode 100644 index 00000000..dc1c7837 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/nine.den.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/nine.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/nine.den.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/nine.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/nine.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/nine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/nine.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/nine.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/nine.inf.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/nine.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/nine.inf.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/nine.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/nine.num.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/nine.num.glif new file mode 100644 index 00000000..ebb0b622 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/nine.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/nine.sup.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/nine.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/nine.sup.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/nine.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/nlinebelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/nlinebelow.glif new file mode 100644 index 00000000..ca2f59e5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/nlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/notequal.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/notequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/notequal.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/notequal.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ntilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..66cda983 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign.end.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign.end.glif new file mode 100644 index 00000000..6d020efe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign.end.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/numbersign.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/numbersign.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign.middle.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign.middle.glif new file mode 100644 index 00000000..f6771349 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign.start.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign.start.glif new file mode 100644 index 00000000..48d00eeb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign.start.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_braceleft.liga.glif new file mode 100644 index 00000000..a9559b69 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_braceleft.liga.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_bracketleft.liga.glif new file mode 100644 index 00000000..ea208bf6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_bracketleft.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_colon.liga.glif new file mode 100644 index 00000000..9c1215cf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_colon.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_equal.liga.glif new file mode 100644 index 00000000..a9a2b356 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_equal.liga.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_exclam.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_exclam.liga.glif new file mode 100644 index 00000000..12127b00 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_parenleft.liga.glif new file mode 100644 index 00000000..cea29c6e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_parenleft.liga.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_question.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_question.liga.glif new file mode 100644 index 00000000..cbba0fff --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_underscore.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_underscore.liga.glif new file mode 100644 index 00000000..708c7730 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_underscore.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_underscore_parenleft.glif new file mode 100644 index 00000000..fbbe4be0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/numbersign_underscore_parenleft.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/o.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/o.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/o.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/o.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/oacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..9111bbb4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/oacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/obreve.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..b9ccea42 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/obreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocaron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocaron.glif new file mode 100644 index 00000000..59d804c6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..a79d5d18 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocircumflexacute.glif new file mode 100644 index 00000000..c7d5d07e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocircumflexdotbelow.glif new file mode 100644 index 00000000..6abfaae0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocircumflexgrave.glif new file mode 100644 index 00000000..9be7759b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocircumflexhookabove.glif new file mode 100644 index 00000000..3a5475e5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocircumflextilde.glif new file mode 100644 index 00000000..3416e6e3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ocircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/odieresis.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..f2c87d00 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/odieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/odotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/odotaccent.glif new file mode 100644 index 00000000..211f6c4c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/odotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/odotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/odotbelow.glif new file mode 100644 index 00000000..8d7d0312 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/odotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/oe.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/oe.glif new file mode 100644 index 00000000..5e30466e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/oe.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ogonek.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ogonek.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ogonekcmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ogonekcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ogonekcmb.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ogonekcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ograve.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..1fc32818 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ograve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohookabove.glif new file mode 100644 index 00000000..4bfcb241 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohorn.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohorn.glif new file mode 100644 index 00000000..c133e952 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohorn.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohornacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohornacute.glif new file mode 100644 index 00000000..bbf1ef49 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohorndotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohorndotbelow.glif new file mode 100644 index 00000000..efc6deab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohorndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohorngrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohorngrave.glif new file mode 100644 index 00000000..32469fc7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohorngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohornhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohornhookabove.glif new file mode 100644 index 00000000..a60bb006 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohorntilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohorntilde.glif new file mode 100644 index 00000000..e838e44d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohorntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..246c0ab5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/omacron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..9d438a0c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/omacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/one.den.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/one.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/one.den.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/one.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/one.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/one.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/one.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/one.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/one.inf.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/one.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/one.inf.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/one.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/one.num.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/one.num.glif new file mode 100644 index 00000000..b8fcdd09 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/one.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/one.sup.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/one.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/one.sup.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/one.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/oneeighth.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/oneeighth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/oneeighth.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/oneeighth.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/onefifth.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/onefifth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/onefifth.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/onefifth.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/onehalf.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/onehalf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/onehalf.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/onehalf.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/onequarter.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/onequarter.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/onequarter.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/onequarter.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/onesixth.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/onesixth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/onesixth.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/onesixth.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/onethird.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/onethird.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/onethird.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/onethird.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/oogonek.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/oogonek.glif new file mode 100644 index 00000000..08638ffb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/oogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ordfeminine.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ordfeminine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ordfeminine.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ordfeminine.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ordmasculine.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ordmasculine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ordmasculine.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ordmasculine.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/oslash.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..8d1c51a6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/oslash.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/otilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..bf7008ed --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/otilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/p.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/p.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/p.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/p.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/paragraph.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/paragraph.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/paragraph.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/paragraph.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/parenleft.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/parenleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/parenleft.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/parenleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/parenright.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/parenright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/parenright.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/parenright.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/percent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/percent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/percent.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/percent.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/percent_percent.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/percent_percent.liga.glif new file mode 100644 index 00000000..cce98635 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/percent_percent.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/period.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/period.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_equal.liga.glif new file mode 100644 index 00000000..f7d916a9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_hyphen.liga.glif new file mode 100644 index 00000000..ab77e31b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_period.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_period.liga.glif new file mode 100644 index 00000000..7040f36f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_period_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_period_equal.liga.glif new file mode 100644 index 00000000..9aaed2b9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_period_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_period_less.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_period_less.liga.glif new file mode 100644 index 00000000..8d662405 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_period_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_period_period.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_period_period.liga.glif new file mode 100644 index 00000000..25895b8b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_period_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_question.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_question.liga.glif new file mode 100644 index 00000000..41aab1b0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/period_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/periodcentered.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/periodcentered.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/periodcentered.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/periodcentered.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/peso.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/peso.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/peso.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/peso.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/plus.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/plus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/plus.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/plus.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/plus_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/plus_greater.liga.glif new file mode 100644 index 00000000..21f36121 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/plus_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/plus_plus.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/plus_plus.liga.glif new file mode 100644 index 00000000..d1ce0841 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/plus_plus.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/plus_plus_plus.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/plus_plus_plus.liga.glif new file mode 100644 index 00000000..859126ac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/plus_plus_plus.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/plusminus.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/plusminus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/plusminus.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/plusminus.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/primemod.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/primemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/primemod.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/primemod.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/published.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/published.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/published.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/published.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/q.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/q.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/q.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/q.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/question.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/question.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/question.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/question.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/question_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/question_colon.liga.glif new file mode 100644 index 00000000..f5467224 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/question_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/question_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/question_equal.liga.glif new file mode 100644 index 00000000..6fca0d6d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/question_equal.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/question_period.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/question_period.liga.glif new file mode 100644 index 00000000..c5330f1a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/question_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/question_question.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/question_question.liga.glif new file mode 100644 index 00000000..f83e514f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/question_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/questiondown.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/questiondown.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/questiondown.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/questiondown.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/quotedbl.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/quotedbl.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/quotedbl.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/quotedbl.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/quotedblbase.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/quotedblbase.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/quotedblbase.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/quotedblbase.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/quotedblleft.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/quotedblleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/quotedblleft.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/quotedblleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/quotedblright.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/quotedblright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/quotedblright.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/quotedblright.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/quoteleft.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/quoteleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/quoteleft.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/quoteleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/quoteright.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/quoteright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/quoteright.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/quoteright.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/quotesinglbase.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/quotesinglbase.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/quotesinglbase.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/quotesinglbase.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/quotesingle.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/quotesingle.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/quotesingle.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/quotesingle.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/r.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/r.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/r.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/r.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/racute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/racute.glif new file mode 100644 index 00000000..eeb50e5d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/racute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rcaron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..05e8ba36 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..bba5f3f4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rdotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rdotaccent.glif new file mode 100644 index 00000000..efb21cc6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rdotbelow.glif new file mode 100644 index 00000000..9744664f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/registered.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/registered.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/registered.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/registered.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightdnheavyleftuplightbxd.glif new file mode 100644 index 00000000..4f02ea4e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightdnheavyleftuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/righteighthblock.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/righteighthblock.glif new file mode 100644 index 00000000..ee46a32d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/righteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/righthalfblock.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/righthalfblock.glif new file mode 100644 index 00000000..9f3ba315 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/righthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightheavyleftdnlightbxd.glif new file mode 100644 index 00000000..2174cfa7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightheavyleftuplightbxd.glif new file mode 100644 index 00000000..c405ab63 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightheavyleftvertlightbxd.glif new file mode 100644 index 00000000..273c562e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightheavyleftvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightlightleftdnheavybxd.glif new file mode 100644 index 00000000..baf04695 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightlightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightlightleftupheavybxd.glif new file mode 100644 index 00000000..65bf7672 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightlightleftvertheavybxd.glif new file mode 100644 index 00000000..df354958 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightlightleftvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightupheavyleftdnlightbxd.glif new file mode 100644 index 00000000..a8af9614 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rightupheavyleftdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ring.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ring.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ring.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ring.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ringcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ringcmb.cap.glif new file mode 100644 index 00000000..31313514 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ringcmb.cap.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ringcmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ringcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ringcmb.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ringcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ringhalfleft.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ringhalfleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ringhalfleft.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ringhalfleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ringhalfright.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ringhalfright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ringhalfright.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ringhalfright.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rlinebelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rlinebelow.glif new file mode 100644 index 00000000..7e498234 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rmacrondotbelow.glif new file mode 100644 index 00000000..9b9650be --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/rmacrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/s.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/s.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/s.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/s.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/sacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..434e4e31 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/sacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/scaron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..e138089d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/scaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/scedilla.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..a286fc1b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/scedilla.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/schwa.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/schwa.glif new file mode 100644 index 00000000..1f200b1e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/schwa.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/scircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..64bec73d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/scircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/scommaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..f1f9486a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/sdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/sdotbelow.glif new file mode 100644 index 00000000..788f7e3b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/sdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/section.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/section.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/section.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/section.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/semicolon.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/semicolon.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/semicolon.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/semicolon.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/semicolon_semicolon.liga.glif new file mode 100644 index 00000000..fecb4442 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/semicolon_semicolon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/servicemark.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/servicemark.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/servicemark.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/servicemark.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/seven.den.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/seven.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/seven.den.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/seven.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/seven.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/seven.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/seven.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/seven.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/seven.inf.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/seven.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/seven.inf.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/seven.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/seven.num.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/seven.num.glif new file mode 100644 index 00000000..f4db09fd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/seven.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/seven.sup.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/seven.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/seven.sup.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/seven.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/seveneighths.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/seveneighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/seveneighths.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/seveneighths.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/six.den.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/six.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/six.den.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/six.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/six.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/six.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/six.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/six.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/six.inf.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/six.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/six.inf.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/six.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/six.num.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/six.num.glif new file mode 100644 index 00000000..f366fc60 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/six.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/six.sup.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/six.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/six.sup.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/six.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/slash.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/slash.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_asterisk.liga.glif new file mode 100644 index 00000000..236aa3a9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_backslash.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_backslash.liga.glif new file mode 100644 index 00000000..81493c93 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_backslash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_equal.liga.glif new file mode 100644 index 00000000..de5617b2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_equal.start.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_equal.start.glif new file mode 100644 index 00000000..2f2d8c98 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_greater.liga.glif new file mode 100644 index 00000000..2f658650 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_slash.liga.glif new file mode 100644 index 00000000..2bc4a71a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_slash_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_slash_equal.liga.glif new file mode 100644 index 00000000..444e2f55 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_slash_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_slash_equal.start.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_slash_equal.start.glif new file mode 100644 index 00000000..083a5fd9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_slash_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_slash_slash.liga.glif new file mode 100644 index 00000000..3f943989 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/slash_slash_slash.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/space.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/space.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/space.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/space.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/sterling.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/sterling.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/sterling.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/sterling.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/t.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/t.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/t.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/t.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tbar.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..297202e4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tbar.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tcaron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..128e2e38 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tcedilla.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..bf40060d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tcedilla.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tcircumflexbelow.glif new file mode 100644 index 00000000..69a9d98d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..5799863b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tdotbelow.glif new file mode 100644 index 00000000..1e31f4c2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/thorn.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..204e9d45 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/thorn.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/three.den.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/three.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/three.den.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/three.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/three.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/three.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/three.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/three.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/three.inf.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/three.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/three.inf.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/three.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/three.num.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/three.num.glif new file mode 100644 index 00000000..2d2d9aa4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/three.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/three.sup.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/three.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/three.sup.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/three.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/threeeighths.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/threeeighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/threeeighths.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/threeeighths.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/threefifths.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/threefifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/threefifths.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/threefifths.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/threequarters.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/threequarters.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/threequarters.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/threequarters.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tilde.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tildecmb.cap.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tildecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tildecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tildecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tildecmb.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tildecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/tildecmb.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tildecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tlinebelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tlinebelow.glif new file mode 100644 index 00000000..52e9569a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/tlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/trademark.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/trademark.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/trademark.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/trademark.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/two.den.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/two.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/two.den.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/two.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/two.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/two.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/two.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/two.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/two.inf.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/two.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/two.inf.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/two.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/two.num.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/two.num.glif new file mode 100644 index 00000000..eef8aa1d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/two.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/two.sup.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/two.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/two.sup.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/two.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/twodotleader.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/twodotleader.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/twodotleader.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/twodotleader.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/twofifths.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/twofifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/twofifths.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/twofifths.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/twothirds.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/twothirds.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/twothirds.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/twothirds.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/u.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/u.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/u.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/u.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..112377f7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ubreve.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..241a5d13 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ubreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ucaron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ucaron.glif new file mode 100644 index 00000000..c9e7ef07 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ucaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ucircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..62078457 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/udieresis.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..4b52d390 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/udieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/udieresisacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/udieresisacute.glif new file mode 100644 index 00000000..65f5fa2e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/udieresisacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/udieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/udieresiscaron.glif new file mode 100644 index 00000000..13e0f8c7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/udieresiscaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/udieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/udieresisgrave.glif new file mode 100644 index 00000000..9d58aafb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/udieresisgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/udieresismacron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/udieresismacron.glif new file mode 100644 index 00000000..d5fed35d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/udieresismacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/udotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/udotbelow.glif new file mode 100644 index 00000000..e884f9d3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/udotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ugrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..ac9cc23f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ugrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhookabove.glif new file mode 100644 index 00000000..3e70b8b8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhorn.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhorn.glif new file mode 100644 index 00000000..2ca78f63 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhorn.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhornacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhornacute.glif new file mode 100644 index 00000000..aaf1b969 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhorndotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhorndotbelow.glif new file mode 100644 index 00000000..120ec20e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhorndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhorngrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhorngrave.glif new file mode 100644 index 00000000..130976e8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhorngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhornhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhornhookabove.glif new file mode 100644 index 00000000..ea3aa43d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhorntilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhorntilde.glif new file mode 100644 index 00000000..458f8c04 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhorntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..ec131c5f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/umacron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..b9b8efde --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/umacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/underscore.end.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/underscore.end.glif new file mode 100644 index 00000000..28d83add --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/underscore.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/underscore.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/underscore.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/underscore.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/underscore.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/underscore.middle.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/underscore.middle.glif new file mode 100644 index 00000000..9e7cd1f9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/underscore.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/underscore.start.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/underscore.start.glif new file mode 100644 index 00000000..57359c2f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/underscore.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/underscore_bar_underscore.m.glif new file mode 100644 index 00000000..e7d4decd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/underscore_bar_underscore.m.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uni00A_0.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni00A_0.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uni00A_0.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni00A_0.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uni0326.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni0326.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uni0326.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni0326.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni1E_9E_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni1E_9E_.glif new file mode 100644 index 00000000..7b5cbe3e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni1E_9E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni2011.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni2011.glif new file mode 100644 index 00000000..33e0d4b6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni2011.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uni20B_9.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni20B_9.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uni20B_9.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni20B_9.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uni20B_A_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni20B_A_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uni20B_A_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni20B_A_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uni20B_D_.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni20B_D_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uni20B_D_.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni20B_D_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni2610.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni2610.glif new file mode 100644 index 00000000..3b382030 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni2610.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni2611.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni2611.glif new file mode 100644 index 00000000..91c00d69 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni2611.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni2612.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni2612.glif new file mode 100644 index 00000000..9c8d9246 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni2612.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni2713.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni2713.glif new file mode 100644 index 00000000..d50c823b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uni2713.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uniA_788.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniA_788.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/uniA_788.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniA_788.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0A_0.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0A_0.glif new file mode 100644 index 00000000..3da6e31f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0A_0.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0A_1.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0A_1.glif new file mode 100644 index 00000000..303bf72f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0A_1.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0A_2.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0A_2.glif new file mode 100644 index 00000000..db0f09e1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0A_2.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0B_0.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0B_0.glif new file mode 100644 index 00000000..072cf7b1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0B_0.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0B_1.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0B_1.glif new file mode 100644 index 00000000..0c96b972 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0B_1.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0B_2.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0B_2.glif new file mode 100644 index 00000000..3b824667 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0B_2.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0B_3.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0B_3.glif new file mode 100644 index 00000000..e5fe0a55 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uniE_0B_3.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uogonek.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..6bd4799a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uogonek.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/updblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/updblhorzsngbxd.glif new file mode 100644 index 00000000..6f27df1a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/updblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/updblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/updblleftsngbxd.glif new file mode 100644 index 00000000..05b25981 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/updblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/updblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/updblrightsngbxd.glif new file mode 100644 index 00000000..032cff95 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/updblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upeighthblock.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upeighthblock.glif new file mode 100644 index 00000000..edbfe3c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upeighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uphalfblock.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uphalfblock.glif new file mode 100644 index 00000000..f6006f81 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uphalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upheavydnhorzlightbxd.glif new file mode 100644 index 00000000..d84a80a0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upheavydnhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upheavyhorzlightbxd.glif new file mode 100644 index 00000000..d33dc3d2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upheavyleftdnlightbxd.glif new file mode 100644 index 00000000..b6a741ce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upheavyleftlightbxd.glif new file mode 100644 index 00000000..eb582ade --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upheavyrightdnlightbxd.glif new file mode 100644 index 00000000..7215fe20 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upheavyrightlightbxd.glif new file mode 100644 index 00000000..799568f9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upleftdnleftdnrightquadrant.glif new file mode 100644 index 00000000..e0bdb776 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upleftdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upleftdnrightquadrant.glif new file mode 100644 index 00000000..6ca0f95d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upleftdnrightquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upleftquadrant.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upleftquadrant.glif new file mode 100644 index 00000000..9ab84ae1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upleftuprightdnleftquadrant.glif new file mode 100644 index 00000000..68671562 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upleftuprightdnleftquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upleftuprightdnrightquadrant.glif new file mode 100644 index 00000000..a20ceb2d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upleftuprightdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uplightdnhorzheavybxd.glif new file mode 100644 index 00000000..9aa49bdb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uplightdnhorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uplighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uplighthorzheavybxd.glif new file mode 100644 index 00000000..8b12a598 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uplighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uplightleftdnheavybxd.glif new file mode 100644 index 00000000..575c2645 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uplightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uplightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uplightleftheavybxd.glif new file mode 100644 index 00000000..680d85dc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uplightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uplightrightdnheavybxd.glif new file mode 100644 index 00000000..95ca50ce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uplightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uplightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uplightrightheavybxd.glif new file mode 100644 index 00000000..e94ab36c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uplightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uprightdnleftdnrightquadrant.glif new file mode 100644 index 00000000..4211b39d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uprightdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uprightdnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uprightdnleftquadrant.glif new file mode 100644 index 00000000..aea6004b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uprightdnleftquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uprightquadrant.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uprightquadrant.glif new file mode 100644 index 00000000..245dc1dd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uprightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upsnghorzdblbxd.glif new file mode 100644 index 00000000..67f6fb31 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upsngleftdblbxd.glif new file mode 100644 index 00000000..19ac2d99 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upsngrightdblbxd.glif new file mode 100644 index 00000000..3dda0e76 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/upsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uring.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uring.glif new file mode 100644 index 00000000..7d21db0e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/uring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/utilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..523d20bb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/utilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/v.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/v.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/v.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/v.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vdotbelow.glif new file mode 100644 index 00000000..93a9c351 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertdblhorzsngbxd.glif new file mode 100644 index 00000000..391b0891 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertdblhorzsngbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertdblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertdblleftsngbxd.glif new file mode 100644 index 00000000..6a16b713 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertdblleftsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertdblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertdblrightsngbxd.glif new file mode 100644 index 00000000..285c5592 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertdblrightsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertheavyhorzlightbxd.glif new file mode 100644 index 00000000..5f1ca7b0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertheavyhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertheavyleftlightbxd.glif new file mode 100644 index 00000000..add4dbff --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertheavyleftlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertheavyrightlightbxd.glif new file mode 100644 index 00000000..b9315f86 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertheavyrightlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/verticallinelowmod.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/verticallinelowmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/verticallinelowmod.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/verticallinelowmod.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/verticallinemod.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/verticallinemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/verticallinemod.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/verticallinemod.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertlighthorzheavybxd.glif new file mode 100644 index 00000000..887f15a7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertlighthorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertlightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertlightleftheavybxd.glif new file mode 100644 index 00000000..05fa6f7b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertlightleftheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertlightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertlightrightheavybxd.glif new file mode 100644 index 00000000..2827168b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertlightrightheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertsnghorzdblbxd.glif new file mode 100644 index 00000000..07c363ae --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertsnghorzdblbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertsngleftdblbxd.glif new file mode 100644 index 00000000..60128235 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertsngleftdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertsngrightdblbxd.glif new file mode 100644 index 00000000..0ba240b7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/vertsngrightdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/w.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/w.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/w.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/w.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/w_w_w.liga.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/w_w_w.liga.glif new file mode 100644 index 00000000..5245bd50 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/w_w_w.liga.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/wacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..9ea05c2e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/wacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/wcircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..7b1e5b04 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/wdieresis.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..4baaede8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/wdieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/wgrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..36c1afe1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/wgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/won.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/won.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/won.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/won.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/x.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/x.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/x.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/x.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/xdieresis.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/xdieresis.glif new file mode 100644 index 00000000..d72e89c4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/xdieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/y.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/y.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/y.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/y.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/yacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..7a203b1e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/yacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ycircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..7c7b0ca2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ydieresis.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..15be164b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ydieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ydotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ydotaccent.glif new file mode 100644 index 00000000..a236a29f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ydotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ydotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ydotbelow.glif new file mode 100644 index 00000000..369bda7d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ydotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/yen.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/yen.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/yen.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/yen.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ygrave.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ygrave.glif new file mode 100644 index 00000000..541cbb97 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ygrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/yhookabove.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/yhookabove.glif new file mode 100644 index 00000000..dae69601 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/yhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ymacron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ymacron.glif new file mode 100644 index 00000000..47640277 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ymacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ytilde.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ytilde.glif new file mode 100644 index 00000000..9b3060ab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/ytilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/z.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/z.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/z.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/z.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zacute.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..1ee5e646 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zcaron.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..ae4b4720 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zcircumflex.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zcircumflex.glif new file mode 100644 index 00000000..7eb1d5ec --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zdotaccent.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..5416ae60 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zdotbelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zdotbelow.glif new file mode 100644 index 00000000..41ded788 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zero.den.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zero.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zero.den.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zero.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zero.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zero.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zero.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zero.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zero.inf.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zero.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zero.inf.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zero.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zero.num.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zero.num.glif new file mode 100644 index 00000000..e1ec4bd5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zero.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zero.sup.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zero.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/zero.sup.glif rename to sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zero.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zlinebelow.glif b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zlinebelow.glif new file mode 100644 index 00000000..0888dff3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/glyphs/zlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/layercontents.plist b/sources/instances/truetype/IntelOneMono-Italic.ufo/layercontents.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/layercontents.plist rename to sources/instances/truetype/IntelOneMono-Italic.ufo/layercontents.plist diff --git a/sources/instances/truetype/IntelOneMono-Italic.ufo/lib.plist b/sources/instances/truetype/IntelOneMono-Italic.ufo/lib.plist new file mode 100644 index 00000000..8f3f5d29 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Italic.ufo/lib.plist @@ -0,0 +1,1647 @@ + + + + + com.typemytype.robofont.compileSettings.autohint + + com.typemytype.robofont.compileSettings.checkOutlines + + com.typemytype.robofont.compileSettings.createDummyDSIG + + com.typemytype.robofont.compileSettings.decompose + + com.typemytype.robofont.compileSettings.generateFormat + 1 + com.typemytype.robofont.compileSettings.releaseMode + 1 + com.typemytype.robofont.italicSlantOffset + 0 + com.typemytype.robofont.segmentType + curve + com.typemytype.robofont.shouldAddPointsInSplineConversion + 1 + public.glyphOrder + + .notdef + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + S + T + U + V + W + X + Y + Z + a + b + c + d + e + f + g + h + i + j + k + l + m + n + o + p + q + r + s + t + u + v + w + x + y + z + period + comma + colon + semicolon + question + exclam + questiondown + exclamdown + ellipsis + twodotleader + quotedblleft + quotedblright + quotedblbase + quoteleft + quoteright + quotesinglbase + guillemetleft + guillemetright + guilsinglleft + guilsinglright + parenleft + parenright + bracketleft + bracketright + braceleft + braceright + slash + backslash + bar + hyphen + endash + emdash + periodcentered + bullet + underscore + ampersand + at + published + copyright + registered + servicemark + trademark + asterisk + dagger + daggerdbl + section + paragraph + zero + one + two + three + four + five + six + seven + eight + nine + colon.fig + plus + divide + minus + equal + notequal + asciitilde + approxequal + multiply + less + greater + lessequal + greaterequal + plusminus + asciicircum + mu + numbersign + percent + quotedbl + quotesingle + ordfeminine + ordmasculine + degree + dollar + sterling + yen + Euro + naira + peso + uni20BA + uni20BD + uni20B9 + bahtthai + won + cent + dong + onehalf + onethird + twothirds + onequarter + threequarters + onefifth + twofifths + threefifths + fourfifths + onesixth + fivesixths + oneeighth + threeeighths + fiveeighths + seveneighths + zero.sup + one.sup + two.sup + three.sup + four.sup + five.sup + six.sup + seven.sup + eight.sup + nine.sup + zero.inf + one.inf + two.inf + three.inf + four.inf + five.inf + six.inf + seven.inf + eight.inf + nine.inf + primemod + dblprimemod + commaturnedmod + apostrophemod + ringhalfleft + ringhalfright + verticallinemod + verticallinelowmod + acute + hungarumlaut + grave + circumflex + caron + breve + tilde + macron + dieresis + dotaccent + ring + uniA788 + macronlowmod + cedilla + ogonek + Aacute + Agrave + Acircumflex + Acircumflexdotbelow + Acircumflexacute + Acircumflexgrave + Acircumflexhookabove + Acircumflextilde + Acaron + Abreve + Abrevedotbelow + Abreveacute + Abrevegrave + Abrevehookabove + Abrevetilde + Atilde + Amacron + Adieresis + Adotaccent + Aring + Ahookabove + Adotbelow + Aogonek + AE + Blinebelow + Cacute + Ccircumflex + Ccaron + Cdotaccent + Ccedilla + Dcaron + Dcircumflexbelow + Dlinebelow + Ddotbelow + Dcroat + Eacute + Egrave + Ecircumflex + Ecircumflexdotbelow + Ecircumflexacute + Ecircumflexgrave + Ecircumflexhookabove + Ecircumflextilde + Ecaron + Ebreve + Etilde + Emacron + Edieresis + Edotaccent + Ehookabove + Edotbelow + Eogonek + Gcircumflex + Gcaron + Gbreve + Gmacron + Gdotaccent + Gcommaaccent + Hcircumflex + Hbrevebelow + Hdotbelow + Hcedilla + Hbar + Iacute + Igrave + Icircumflex + Icaron + Ibreve + Itilde + Imacron + Idieresis + Idotaccent + Ihookabove + Idotbelow + Iogonek + Jcircumflex + Klinebelow + Kcommaaccent + Kdotbelow + Lacute + Lcaron + Lcommaaccent + Lcircumflexbelow + Llinebelow + Lmacrondotbelow + Ldotbelow + L.dot + Lslash + Macute + Mdotaccent + Mdotbelow + Nacute + Ngrave + Ncaron + Ntilde + Ndotaccent + Ncircumflexbelow + Ncommaaccent + Ndotbelow + Nlinebelow + Eng + Oacute + Ohungarumlaut + Ograve + Ocircumflex + Ocircumflexdotbelow + Ocircumflexacute + Ocircumflexgrave + Ocircumflexhookabove + Ocircumflextilde + Ocaron + Obreve + Otilde + Omacron + Odieresis + Odotaccent + Ohookabove + Odotbelow + Oogonek + Oslash + OE + Ohorn + Ohornacute + Ohorngrave + Ohorntilde + Ohornhookabove + Ohorndotbelow + Racute + Rcaron + Rdotaccent + Rmacrondotbelow + Rcommaaccent + Rdotbelow + Rlinebelow + Sacute + Scircumflex + Scaron + Scommaaccent + Sdotbelow + Scedilla + uni1E9E + Tcaron + Tcircumflexbelow + Tcommaaccent + Tdotbelow + Tlinebelow + Tcedilla + Tbar + Uacute + Uhungarumlaut + Ugrave + Ucircumflex + Ucaron + Ubreve + Utilde + Umacron + Udieresis + Udieresisacute + Udieresisgrave + Udieresiscaron + Udieresismacron + Uring + Uhookabove + Udotbelow + Uogonek + Uhorn + Uhornacute + Uhorngrave + Uhorntilde + Uhornhookabove + Uhorndotbelow + Vdotbelow + Wacute + Wgrave + Wcircumflex + Wdieresis + Xdieresis + Yacute + Ygrave + Ycircumflex + Ytilde + Ymacron + Ydieresis + Ydotaccent + Yhookabove + Ydotbelow + Zacute + Zcircumflex + Zcaron + Zdotaccent + Zdotbelow + Zlinebelow + Eth + Thorn + Schwa + aacute + agrave + acircumflex + acircumflexdotbelow + acircumflexacute + acircumflexgrave + acircumflexhookabove + acircumflextilde + acaron + abreve + abrevedotbelow + abreveacute + abrevegrave + abrevehookabove + abrevetilde + atilde + amacron + adieresis + adotaccent + aring + ahookabove + adotbelow + aogonek + ae + blinebelow + cacute + ccircumflex + ccaron + cdotaccent + ccedilla + dcaron + dcircumflexbelow + dlinebelow + ddotbelow + dcroat + eacute + egrave + ecircumflex + ecircumflexdotbelow + ecircumflexacute + ecircumflexgrave + ecircumflexhookabove + ecircumflextilde + ecaron + ebreve + etilde + emacron + edieresis + edotaccent + ehookabove + edotbelow + eogonek + gcircumflex + gcaron + gbreve + gmacron + gdotaccent + gcommaaccent + hcircumflex + hbrevebelow + hlinebelow + hdotbelow + hcedilla + hbar + dotlessi + iacute + igrave + icircumflex + icaron + ibreve + itilde + imacron + idieresis + idotaccent + ihookabove + idotbelow + iogonek + dotlessj + jcircumflex + jcaron + klinebelow + kcommaaccent + kdotbelow + lacute + lcaron + lcommaaccent + lcircumflexbelow + llinebelow + lmacrondotbelow + ldotbelow + l.dot + lslash + macute + mdotaccent + mdotbelow + nacute + ngrave + ncaron + ntilde + ndotaccent + ncircumflexbelow + ncommaaccent + ndotbelow + nlinebelow + eng + oacute + ohungarumlaut + ograve + ocircumflex + ocircumflexdotbelow + ocircumflexacute + ocircumflexgrave + ocircumflexhookabove + ocircumflextilde + ocaron + obreve + otilde + omacron + odieresis + odotaccent + ohookabove + odotbelow + oogonek + oslash + oe + ohorn + ohornacute + ohorngrave + ohorntilde + ohornhookabove + ohorndotbelow + racute + rcaron + rdotaccent + rmacrondotbelow + rcommaaccent + rdotbelow + rlinebelow + sacute + scircumflex + scaron + scommaaccent + sdotbelow + scedilla + germandbls + tcaron + tcircumflexbelow + tcommaaccent + tdotbelow + tlinebelow + tcedilla + tbar + uacute + uhungarumlaut + ugrave + ucircumflex + ucaron + ubreve + utilde + umacron + udieresis + udieresisacute + udieresisgrave + udieresiscaron + udieresismacron + uring + uhookabove + udotbelow + uogonek + uhorn + uhornacute + uhorngrave + uhorntilde + uhornhookabove + uhorndotbelow + vdotbelow + wacute + wgrave + wcircumflex + wdieresis + xdieresis + yacute + ygrave + ycircumflex + ytilde + ymacron + ydieresis + ydotaccent + yhookabove + ydotbelow + zacute + zcircumflex + zcaron + zdotaccent + zdotbelow + zlinebelow + eth + thorn + schwa + space + uni00A0 + zero.num + one.num + two.num + three.num + four.num + five.num + six.num + seven.num + eight.num + nine.num + fraction + fracbar + zero.den + one.den + two.den + three.den + four.den + five.den + six.den + seven.den + eight.den + nine.den + uni2011 + horizontalbar + middotcat + middotcat.cap + acutecmb + hungarumlautcmb + gravecmb + commaaboverightcmb + circumflexcmb + caroncmb + brevecmb + tildecmb + macroncmb + dieresiscmb + dotaccentcmb + ringcmb + commaturnedabovecmb + hookcmb + circumflexbelowcmb + brevebelowcmb + macronbelowcmb + dieresisbelowcmb + dotbelowcmb + uni0326 + cedillacmb + ogonekcmb + dieresisacute + dieresisgrave + dieresiscaron + dieresismacron + breveacute + brevegrave + brevehook + brevetilde + circumflexacute + circumflexgrave + circumflexhook + circumflextilde + acutecmb.cap + hungarumlautcmb.cap + gravecmb.cap + circumflexcmb.cap + caroncmb.cap + brevecmb.cap + tildecmb.cap + macroncmb.cap + dieresiscmb.cap + dotaccentcmb.cap + ringcmb.cap + hookcmb.cap + dieresisacute.cap + dieresisgrave.cap + dieresiscaron.cap + dieresismacron.cap + breveacute.cap + brevegrave.cap + brevehook.cap + brevetilde.cap + circumflexacute.cap + circumflexgrave.cap + circumflexhook.cap + circumflextilde.cap + lighthorzbxd + heavyhorzbxd + lightvertbxd + heavyvertbxd + lighttrpldashhorzbxd + heavytrpldashhorzbxd + lighttrpldashvertbxd + heavytrpldashvertbxd + lightquaddashhorzbxd + heavyquaddashhorzbxd + lightquaddashvertbxd + heavyquaddashvertbxd + lightdnrightbxd + dnlightrightheavybxd + dnheavyrightlightbxd + heavydnrightbxd + lightdnleftbxd + dnlightleftheavybxd + dnheavyleftlightbxd + heavydnleftbxd + lightuprightbxd + uplightrightheavybxd + upheavyrightlightbxd + heavyuprightbxd + lightupleftbxd + uplightleftheavybxd + upheavyleftlightbxd + heavyupleftbxd + lightvertrightbxd + vertlightrightheavybxd + upheavyrightdnlightbxd + dnheavyrightuplightbxd + vertheavyrightlightbxd + dnlightrightupheavybxd + uplightrightdnheavybxd + heavyvertrightbxd + lightvertleftbxd + vertlightleftheavybxd + upheavyleftdnlightbxd + dnheavyleftuplightbxd + vertheavyleftlightbxd + dnlightleftupheavybxd + uplightleftdnheavybxd + heavyvertleftbxd + lightdnhorzbxd + leftheavyrightdnlightbxd + rightheavyleftdnlightbxd + dnlighthorzheavybxd + dnheavyhorzlightbxd + rightlightleftdnheavybxd + leftlightrightdnheavybxd + heavydnhorzbxd + lightuphorzbxd + leftheavyrightuplightbxd + rightheavyleftuplightbxd + uplighthorzheavybxd + upheavyhorzlightbxd + rightlightleftupheavybxd + leftlightrightupheavybxd + heavyuphorzbxd + lightverthorzbxd + leftheavyrightvertlightbxd + rightheavyleftvertlightbxd + vertlighthorzheavybxd + upheavydnhorzlightbxd + dnheavyuphorzlightbxd + vertheavyhorzlightbxd + leftupheavyrightdnlightbxd + rightupheavyleftdnlightbxd + leftdnheavyrightuplightbxd + rightdnheavyleftuplightbxd + dnlightuphorzheavybxd + uplightdnhorzheavybxd + rightlightleftvertheavybxd + leftlightrightvertheavybxd + heavyverthorzbxd + lightdbldashhorzbxd + heavydbldashhorzbxd + lightdbldashvertbxd + heavydbldashvertbxd + dblhorzbxd + dblvertbxd + dnsngrightdblbxd + dndblrightsngbxd + dbldnrightbxd + dnsngleftdblbxd + dndblleftsngbxd + dbldnleftbxd + upsngrightdblbxd + updblrightsngbxd + dbluprightbxd + upsngleftdblbxd + updblleftsngbxd + dblupleftbxd + vertsngrightdblbxd + vertdblrightsngbxd + dblvertrightbxd + vertsngleftdblbxd + vertdblleftsngbxd + dblvertleftbxd + dnsnghorzdblbxd + dndblhorzsngbxd + dbldnhorzbxd + upsnghorzdblbxd + updblhorzsngbxd + dbluphorzbxd + vertsnghorzdblbxd + vertdblhorzsngbxd + dblverthorzbxd + lightarcdnrightbxd + lightarcdnleftbxd + lightarcupleftbxd + lightarcuprightbxd + lightdiaguprightdnleftbxd + lightdiagupleftdnrightbxd + lightdiagcrossbxd + lightleftbxd + lightupbxd + lightrightbxd + lightdnbxd + heavyleftbxd + heavyupbxd + heavyrightbxd + heavydnbxd + lightleftheavyrightbxd + lightupheavydnbxd + heavyleftlightrightbxd + heavyuplightdnbxd + uphalfblock + dneighthblock + dnquarterblock + dnthreeeighthsblock + dnhalfblock + dnfiveeighthsblock + dnthreequartersblock + dnseveneighthsblock + fullblock + leftseveneighthsblock + leftthreequartersblock + leftfiveeighthsblock + lefthalfblock + leftthreeeighthsblock + leftquarterblock + lefteighthblock + righthalfblock + lightshade + mediumshade + darkshade + upeighthblock + righteighthblock + dnleftquadrant + dnrightquadrant + upleftquadrant + upleftdnleftdnrightquadrant + upleftdnrightquadrant + upleftuprightdnleftquadrant + upleftuprightdnrightquadrant + uprightquadrant + uprightdnleftquadrant + uprightdnleftdnrightquadrant + ligspacer + equal.start + equal.middle + equal.end + hyphen.start + hyphen.middle + hyphen.end + underscore.start + underscore.middle + underscore.end + numbersign.start + numbersign.middle + numbersign.end + period_equal.liga + period_period_equal.liga + period_hyphen.liga + colon_equal.liga + equal_equal.liga + exclam_equal.liga + equal_equal_equal.liga + exclam_equal_equal.liga + less_hyphen_less.liga + less_less_hyphen.liga + less_hyphen.liga + less_hyphen_greater.liga + hyphen_greater.liga + hyphen_greater_greater.liga + greater_hyphen_greater.liga + less_equal_less.liga + less_less_equal.liga + less_equal_greater.liga + equal_greater.liga + less_equal.liga + equal_greater_greater.liga + greater_equal_greater.liga + greater_equal.liga + greater_greater_equal.liga + greater_greater_hyphen.liga + greater_hyphen.liga + less_asciitilde_greater.liga + hyphen_less.liga + hyphen_less_less.liga + equal_less.liga + equal_less_less.liga + less_asciitilde_asciitilde.liga + less_asciitilde.liga + asciitilde_asciitilde.liga + asciitilde_greater.liga + asciitilde_asciitilde_greater + less_exclam_hyphen_hyphen.liga + slash_equal.liga + hyphen_bar.liga + bar_hyphen.liga + bar_equal.liga + hyphen_bar_bar.liga + bar_bar_hyphen.liga + equal_bar_bar.liga + bar_bar_equal.liga + equal_bar.liga + slash_slash_equal.liga + equal_slash.liga + equal_slash_slash.liga + equal_colon_equal.middle + equal_exclam_equal.middle + underscore_bar_underscore.m + hyphen_bar_hyphen.middle + equal_bar_equal.middle + hyphen_greater_hyphen.middle + hyphen_greater_greater_hyphen.m + equal_slash_slash_equal.middle + equal_slash_equal.middle + hyphen_bar_bar_hyphen.middle + equal_bar_bar_equal.middle + hyphen_less_hyphen.middle + hyphen_less_less_hyphen.middle + equal_greater_equal.middle + equal_less_equal.middle + equal_greater_greater_equal.m + equal_less_less_equal.middle + less_hyphen.start + greater_hyphen.start + bar_hyphen.start + less_equal.start + greater_equal.start + bar_equal.start + slash_equal.start + slash_slash_equal.start + less_less_hyphen.start + greater_greater_hyphen.start + bar_bar_hyphen.start + less_less_equal.start + greater_greater_equal.start + bar_bar_equal.start + hyphen_less.end + hyphen_greater.end + hyphen_bar.end + equal_less.end + equal_greater.end + equal_bar.end + hyphen_less_less.end + hyphen_greater_greater.end + hyphen_bar_bar.end + equal_less_less.end + equal_greater_greater.end + equal_bar_bar.end + equal_slash.end + equal_slash_slash.end + less_less_less.liga + less_less.liga + less_equal + less_greater.liga + greater_equal + greater_greater.liga + greater_greater_greater.liga + braceleft_bar.liga + bracketleft_bar.liga + less_colon.liga + colon_less.liga + greater_colon.liga + colon_greater.liga + bar_braceright.liga + bar_bracketright.liga + less_bar_bar_bar.liga + less_bar_bar.liga + less_bar.liga + less_bar_greater.liga + bar_greater.liga + bar_bar_greater.liga + bar_bar_bar_greater.liga + less_dollar.liga + less_dollar_greater.liga + dollar_greater.liga + less_plus.liga + less_plus_greater.liga + plus_greater.liga + less_asterisk.liga + less_asterisk_greater.liga + asterisk_greater.liga + slash_asterisk.liga + asterisk_slash.liga + slash_slash_slash.liga + slash_slash.liga + less_slash.liga + less_slash_greater.liga + slash_greater.liga + semicolon_semicolon.liga + colon_colon.liga + colon_colon_colon.liga + period_period.liga + period_period_period.liga + period_period_less.liga + exclam_exclam.liga + question_question.liga + percent_percent.liga + ampersand_ampersand.liga + bar_bar.liga + question_period.liga + question_colon.liga + plus_plus.liga + plus_plus_plus.liga + hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga + asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga + equal_asciitilde.liga + exclam_asciitilde.liga + asciitilde_hyphen.liga + w_w_w.liga + hyphen_asciitilde.liga + asciitilde_at.liga + asciicircum_equal.liga + question_equal.liga + numbersign_exclam.liga + numbersign_equal.liga + numbersign_colon.liga + numbersign_braceleft.liga + numbersign_bracketleft.liga + bracketright_numbersign.liga + numbersign_parenleft.liga + numbersign_question.liga + numbersign_underscore.liga + numbersign_underscore_parenleft + backslash_slash.liga + bar_bar_bar.liga + colon_colon_equal.liga + exclam_exclam_period.liga + period_question.liga + slash_backslash.liga + uniE0A0 + uniE0A1 + uniE0A2 + uniE0B0 + uniE0B1 + uniE0B2 + uniE0B3 + uni2610 + uni2611 + uni2612 + uni2713 + + public.postscriptNames + + Abreveacute + uni1EAE + Abrevedotbelow + uni1EB6 + Abrevegrave + uni1EB0 + Abrevehookabove + uni1EB2 + Abrevetilde + uni1EB4 + Acaron + uni01CD + Acircumflexacute + uni1EA4 + Acircumflexdotbelow + uni1EAC + Acircumflexgrave + uni1EA6 + Acircumflexhookabove + uni1EA8 + Acircumflextilde + uni1EAA + Adotaccent + uni0226 + Adotbelow + uni1EA0 + Ahookabove + uni1EA2 + Blinebelow + uni1E06 + Dcircumflexbelow + uni1E12 + Ddotbelow + uni1E0C + Dlinebelow + uni1E0E + Ecircumflexacute + uni1EBE + Ecircumflexdotbelow + uni1EC6 + Ecircumflexgrave + uni1EC0 + Ecircumflexhookabove + uni1EC2 + Ecircumflextilde + uni1EC4 + Edotbelow + uni1EB8 + Ehookabove + uni1EBA + Etilde + uni1EBC + Gcommaaccent + uni0122 + Gmacron + uni1E20 + Hbrevebelow + uni1E2A + Hcedilla + uni1E28 + Hdotbelow + uni1E24 + Icaron + uni01CF + Idotbelow + uni1ECA + Ihookabove + uni1EC8 + Kcommaaccent + uni0136 + Kdotbelow + uni1E32 + Klinebelow + uni1E34 + L.dot + Ldot + Lcircumflexbelow + uni1E3C + Lcommaaccent + uni013B + Ldotbelow + uni1E36 + Llinebelow + uni1E3A + Lmacrondotbelow + uni1E38 + Macute + uni1E3E + Mdotaccent + uni1E40 + Mdotbelow + uni1E42 + Ncircumflexbelow + uni1E4A + Ncommaaccent + uni0145 + Ndotaccent + uni1E44 + Ndotbelow + uni1E46 + Ngrave + uni01F8 + Nlinebelow + uni1E48 + Ocaron + uni01D1 + Ocircumflexacute + uni1ED0 + Ocircumflexdotbelow + uni1ED8 + Ocircumflexgrave + uni1ED2 + Ocircumflexhookabove + uni1ED4 + Ocircumflextilde + uni1ED6 + Odotaccent + uni022E + Odotbelow + uni1ECC + Ohookabove + uni1ECE + Ohornacute + uni1EDA + Ohorndotbelow + uni1EE2 + Ohorngrave + uni1EDC + Ohornhookabove + uni1EDE + Ohorntilde + uni1EE0 + Oogonek + uni01EA + Rcommaaccent + uni0156 + Rdotaccent + uni1E58 + Rdotbelow + uni1E5A + Rlinebelow + uni1E5E + Rmacrondotbelow + uni1E5C + Scedilla + uni015E + Schwa + uni018F + Scommaaccent + uni0218 + Sdotbelow + uni1E62 + Tcedilla + uni0162 + Tcircumflexbelow + uni1E70 + Tcommaaccent + uni021A + Tdotbelow + uni1E6C + Tlinebelow + uni1E6E + Ucaron + uni01D3 + Udieresisacute + uni01D7 + Udieresiscaron + uni01D9 + Udieresisgrave + uni01DB + Udieresismacron + uni01D5 + Udotbelow + uni1EE4 + Uhookabove + uni1EE6 + Uhornacute + uni1EE8 + Uhorndotbelow + uni1EF0 + Uhorngrave + uni1EEA + Uhornhookabove + uni1EEC + Uhorntilde + uni1EEE + Vdotbelow + uni1E7E + Xdieresis + uni1E8C + Ydotaccent + uni1E8E + Ydotbelow + uni1EF4 + Yhookabove + uni1EF6 + Ymacron + uni0232 + Ytilde + uni1EF8 + Zcircumflex + uni1E90 + Zdotbelow + uni1E92 + Zlinebelow + uni1E94 + abreveacute + uni1EAF + abrevedotbelow + uni1EB7 + abrevegrave + uni1EB1 + abrevehookabove + uni1EB3 + abrevetilde + uni1EB5 + acaron + uni01CE + acircumflexacute + uni1EA5 + acircumflexdotbelow + uni1EAD + acircumflexgrave + uni1EA7 + acircumflexhookabove + uni1EA9 + acircumflextilde + uni1EAB + acutecmb + uni0301 + acutecmb.cap + uni0301.cap + adotaccent + uni0227 + adotbelow + uni1EA1 + ahookabove + uni1EA3 + apostrophemod + uni02BC + bahtthai + uni0E3F + blinebelow + uni1E07 + breveacute + uni02D80301 + breveacute.cap + uni02D80301.cap + brevebelowcmb + uni032E + brevecmb + uni0306 + brevecmb.cap + uni0306.cap + brevegrave + uni02D80300 + brevegrave.cap + uni02D80300.cap + brevehook + uni02D80309 + brevehook.cap + uni02D80309.cap + brevetilde + uni02D80303 + brevetilde.cap + uni02D80303.cap + caroncmb + uni030C + caroncmb.cap + uni030C.cap + cedillacmb + uni0327 + circumflexacute + uni02C60301 + circumflexacute.cap + uni02C60301.cap + circumflexbelowcmb + uni032D + circumflexcmb + uni0302 + circumflexcmb.cap + uni0302.cap + circumflexgrave + uni02C60300 + circumflexgrave.cap + uni02C60300.cap + circumflexhook + uni02C60309 + circumflexhook.cap + uni02C60309.cap + circumflextilde + uni02C60303 + circumflextilde.cap + uni02C60303.cap + commaaboverightcmb + uni0315 + commaturnedabovecmb + uni0312 + commaturnedmod + uni02BB + dblprimemod + uni02BA + dcircumflexbelow + uni1E13 + ddotbelow + uni1E0D + dieresisacute + uni00A80301 + dieresisacute.cap + uni00A80301.cap + dieresisbelowcmb + uni0324 + dieresiscaron + uni00A8030C + dieresiscaron.cap + uni00A8030C.cap + dieresiscmb + uni0308 + dieresiscmb.cap + uni0308.cap + dieresisgrave + uni00A80300 + dieresisgrave.cap + uni00A80300.cap + dieresismacron + uni00A80304 + dieresismacron.cap + uni00A80304.cap + dlinebelow + uni1E0F + dotaccentcmb + uni0307 + dotaccentcmb.cap + uni0307.cap + dotbelowcmb + uni0323 + dotlessj + uni0237 + ecircumflexacute + uni1EBF + ecircumflexdotbelow + uni1EC7 + ecircumflexgrave + uni1EC1 + ecircumflexhookabove + uni1EC3 + ecircumflextilde + uni1EC5 + edotbelow + uni1EB9 + ehookabove + uni1EBB + etilde + uni1EBD + gcommaaccent + uni0123 + gmacron + uni1E21 + gravecmb + uni0300 + gravecmb.cap + uni0300.cap + guillemetleft + uni00AB + guillemetright + uni00BB + hbrevebelow + uni1E2B + hcedilla + uni1E29 + hdotbelow + uni1E25 + hlinebelow + uni1E96 + hookcmb + uni0309 + hookcmb.cap + uni0309.cap + horizontalbar + uni2015 + hungarumlautcmb + uni030B + hungarumlautcmb.cap + uni030B.cap + icaron + uni01D0 + idotaccent + i.dot + idotbelow + uni1ECB + ihookabove + uni1EC9 + jcaron + uni01F0 + kcommaaccent + uni0137 + kdotbelow + uni1E33 + klinebelow + uni1E35 + l.dot + ldot + lcircumflexbelow + uni1E3D + lcommaaccent + uni013C + ldotbelow + uni1E37 + llinebelow + uni1E3B + lmacrondotbelow + uni1E39 + macronbelowcmb + uni0331 + macroncmb + uni0304 + macroncmb.cap + uni0304.cap + macronlowmod + uni02CD + macute + uni1E3F + mdotaccent + uni1E41 + mdotbelow + uni1E43 + naira + uni20A6 + ncircumflexbelow + uni1E4B + ncommaaccent + uni0146 + ndotaccent + uni1E45 + ndotbelow + uni1E47 + ngrave + uni01F9 + nlinebelow + uni1E49 + ocaron + uni01D2 + ocircumflexacute + uni1ED1 + ocircumflexdotbelow + uni1ED9 + ocircumflexgrave + uni1ED3 + ocircumflexhookabove + uni1ED5 + ocircumflextilde + uni1ED7 + odotaccent + uni022F + odotbelow + uni1ECD + ogonekcmb + uni0328 + ohookabove + uni1ECF + ohornacute + uni1EDB + ohorndotbelow + uni1EE3 + ohorngrave + uni1EDD + ohornhookabove + uni1EDF + ohorntilde + uni1EE1 + oogonek + uni01EB + peso + uni20B1 + primemod + uni02B9 + published + uni2117 + rcommaaccent + uni0157 + rdotaccent + uni1E59 + rdotbelow + uni1E5B + ringcmb + uni030A + ringcmb.cap + uni030A.cap + ringhalfleft + uni02BF + ringhalfright + uni02BE + rlinebelow + uni1E5F + rmacrondotbelow + uni1E5D + scedilla + uni015F + schwa + uni0259 + scommaaccent + uni0219 + sdotbelow + uni1E63 + servicemark + uni2120 + tcedilla + uni0163 + tcircumflexbelow + uni1E71 + tcommaaccent + uni021B + tdotbelow + uni1E6D + tildecmb + uni0303 + tildecmb.cap + uni0303.cap + tlinebelow + uni1E6F + twodotleader + uni2025 + ucaron + uni01D4 + udieresisacute + uni01D8 + udieresiscaron + uni01DA + udieresisgrave + uni01DC + udieresismacron + uni01D6 + udotbelow + uni1EE5 + uhookabove + uni1EE7 + uhornacute + uni1EE9 + uhorndotbelow + uni1EF1 + uhorngrave + uni1EEB + uhornhookabove + uni1EED + uhorntilde + uni1EEF + uni1E9E + uni1E9E + vdotbelow + uni1E7F + verticallinelowmod + uni02CC + verticallinemod + uni02C8 + won + uni20A9 + xdieresis + uni1E8D + ydotaccent + uni1E8F + ydotbelow + uni1EF5 + yhookabove + uni1EF7 + ymacron + uni0233 + ytilde + uni1EF9 + zcircumflex + uni1E91 + zdotbelow + uni1E93 + zlinebelow + uni1E95 + + + diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/metainfo.plist b/sources/instances/truetype/IntelOneMono-Italic.ufo/metainfo.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/metainfo.plist rename to sources/instances/truetype/IntelOneMono-Italic.ufo/metainfo.plist diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/features.fea b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/features.fea deleted file mode 100644 index a1caa755..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/features.fea +++ /dev/null @@ -1,368 +0,0 @@ -# ---------------------------- -# INTEL ONE MONO OPENTYPE CODE -# ---------------------------- - -# ---------------- -# Language Systems -# ---------------- - -languagesystem DFLT dflt; -languagesystem latn dflt; -languagesystem latn TRK; -languagesystem latn AZE; -languagesystem latn CRT; -languagesystem latn CAT; - - -# ------- -# Classes -# ------- - -# Base Letters -@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; -@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; - -# Figures -@fig = [zero one two three four five six seven eight nine]; -@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; -@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; -@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; -@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; - -# Marks Above -@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; -@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; - -# Marks Below -@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; - - -# --------------- -# Localized Forms -# --------------- - -feature locl { - script latn; - language TRK; - lookup iTurkish { - sub i by idotaccent; - } iTurkish; - language AZE; - lookup iTurkish; - language CRT; - lookup iTurkish; - language CAT; - sub l periodcentered' l by middotcat; - sub L periodcentered' L by middotcat.cap; - # try fusing them - sub L middotcat.cap by L.dot; - sub L middotcat by L.dot; - sub l middotcat by l.dot; -} locl; - - -# --------------------------------- -# Glyph Composition / Decomposition -# --------------------------------- - -feature ccmp { - - # Decompose unicode lowercase characters whose uppercase counterparts have no unicode. - lookup Decomp { - sub hlinebelow by h macronlowmod; - sub jcaron by j caron; - } Decomp; - - # Replace double above accents by combined drawings. - lookup DblMarks { - sub dieresiscmb acutecmb by dieresisacute; - sub dieresiscmb gravecmb by dieresisgrave; - sub dieresiscmb caroncmb by dieresiscaron; - sub dieresiscmb macroncmb by dieresismacron; - sub brevecmb acutecmb by breveacute; - sub brevecmb gravecmb by brevegrave; - sub brevecmb hookcmb by brevehook; - sub brevecmb tildecmb by brevetilde; - sub circumflexcmb acutecmb by circumflexacute; - sub circumflexcmb gravecmb by circumflexgrave; - sub circumflexcmb hookcmb by circumflexhook; - sub circumflexcmb tildecmb by circumflextilde; - # capital forms - sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; - sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; - sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; - sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; - sub brevecmb.cap acutecmb.cap by breveacute.cap; - sub brevecmb.cap gravecmb.cap by brevegrave.cap; - sub brevecmb.cap hookcmb.cap by brevehook.cap; - sub brevecmb.cap tildecmb.cap by brevetilde.cap; - sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; - sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; - sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; - sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; - } DblMarks; - - # Replace combining marks that follow a uppercase letter by their uppercase form - lookup CapitalMarks { - sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; - sub [@ltrUC] [@lcMarks]' by [@ucMarks]; - } CapitalMarks; - - # Replace letters with dotless counterparts when followed by a combining mark - lookup Dotless { - sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; - sub [i j]' [@lcMarks] by [dotlessi dotlessj]; - } Dotless; - - # Replace e ogonek with pre-drawn eogonek - lookup eogonek { - sub e ogonekcmb by eogonek; - } eogonek; - -} ccmp; - - -# ---------- -# Numerators -# ---------- - -feature numr { - sub @fig by @figNum; -} numr; - -# ------------ -# Denominators -# ------------ - -feature dnom { - sub @fig by @figDen; -} dnom; - -# ----------- -# Superscript -# ----------- - -feature sups { - sub @fig by @figSup; -} sups; - -# --------------------- -# Subscript & Inferiors -# --------------------- - -feature subs { - sub @fig by @figInf; -} subs; - -feature sinf { - sub @fig by @figInf; -} sinf; - - -# --------------------- -# Contextual Alternates -# --------------------- - -feature calt { - # shifts colon to align with math symbols when used together - - sub colon' [plus equal greater less hyphen] by colon.fig; - sub [plus equal less greater hyphen] colon' by colon.fig; - - sub colon' [colon colon.fig] by colon.fig; - sub colon.fig colon' by colon.fig; - -} calt; - - -# -------------- -# Stylistic Sets -# -------------- - -feature ss11 { - featureNames { - name "Raised Colon (Figures Only)"; # Windows English - name 1 0 0 "Raised Colon (Figures Only)"; # Mac English - }; - lookup FigureColonContextual { - sub @fig colon' @fig by colon.fig; - } FigureColonContextual; -} ss11; - -feature ss12 { - featureNames { - name "Raised Colon (Global)"; # Windows English - name 1 0 0 "Raised Colon (Global)"; # Mac English - }; - lookup FigureColon { - sub colon by colon.fig; - } FigureColon; -} ss12; - - -# -------------------- -# Stylistic Alternates -# -------------------- - -feature salt { - lookup FigureColon; # SS12 -} salt; - - -# --------------------------------------------------------------------- -# MARK | Generated: November 23, 2022 - 02:37:56 PM by 'markFeature.py' -# --------------------------------------------------------------------- - -markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; -markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; -markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; -markClass [cedillacmb] @mark_belowcedilla; -markClass [ogonekcmb] @mark_belowogonek; - -feature mark { - - lookup aboveLC{ - pos base [a] mark @mark_aboveLC; - pos base [c] mark @mark_aboveLC; - pos base [dotlessi] mark @mark_aboveLC; - pos base [dotlessj] mark @mark_aboveLC; - pos base [e] mark @mark_aboveLC; - pos base [eogonek] mark @mark_aboveLC; - pos base [g] mark @mark_aboveLC; - pos base [m] mark @mark_aboveLC; - pos base [n] mark @mark_aboveLC; - pos base [o] mark @mark_aboveLC; - pos base [p] mark @mark_aboveLC; - pos base [s] mark @mark_aboveLC; - pos base [u] mark @mark_aboveLC; - pos base [z] mark @mark_aboveLC; - } aboveLC; - - lookup aboveUC{ - pos base [A] mark @mark_aboveUC; - pos base [C] mark @mark_aboveUC; - pos base [E] mark @mark_aboveUC; - pos base [Eogonek] mark @mark_aboveUC; - pos base [G] mark @mark_aboveUC; - pos base [I] mark @mark_aboveUC; - pos base [J] mark @mark_aboveUC; - pos base [M] mark @mark_aboveUC; - pos base [N] mark @mark_aboveUC; - pos base [O] mark @mark_aboveUC; - pos base [P] mark @mark_aboveUC; - pos base [S] mark @mark_aboveUC; - pos base [U] mark @mark_aboveUC; - pos base [Z] mark @mark_aboveUC; - } aboveUC; - - lookup below{ - pos base [C] mark @mark_below; - pos base [Dcroat] mark @mark_below; - pos base [E] mark @mark_below; - pos base [H] mark @mark_below; - pos base [I] mark @mark_below; - pos base [O] mark @mark_below; - pos base [S] mark @mark_below; - pos base [U] mark @mark_below; - pos base [X] mark @mark_below; - pos base [Z] mark @mark_below; - pos base [c] mark @mark_below; - pos base [dcroat] mark @mark_below; - pos base [dotlessi] mark @mark_below; - pos base [e] mark @mark_below; - pos base [h] mark @mark_below; - pos base [o] mark @mark_below; - pos base [s] mark @mark_below; - pos base [u] mark @mark_below; - pos base [x] mark @mark_below; - pos base [z] mark @mark_below; - } below; - - lookup belowcedilla{ - pos base [Z] mark @mark_belowcedilla; - pos base [z] mark @mark_belowcedilla; - } belowcedilla; - - lookup belowogonek{ - pos base [A] mark @mark_belowogonek; - pos base [E] mark @mark_belowogonek; - pos base [I] mark @mark_belowogonek; - pos base [O] mark @mark_belowogonek; - pos base [U] mark @mark_belowogonek; - pos base [a] mark @mark_belowogonek; - pos base [dotlessi] mark @mark_belowogonek; - pos base [e] mark @mark_belowogonek; - pos base [o] mark @mark_belowogonek; - pos base [u] mark @mark_belowogonek; - } belowogonek; - -} mark; - -@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; -@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; - -table GDEF { - GlyphClassDef @BASES,,@MARKS,; -} GDEF; - - -# -------------- -# All Alternates -# -------------- - -feature aalt { - sub germandbls from [germandbls uni1E9E]; - sub uni1E9E from [uni1E9E germandbls]; - sub colon from [colon colon.fig]; - sub colon.fig from [colon.fig colon]; - sub eight from [eight eight.den eight.sup eight.num eight.inf]; - sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; - sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; - sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; - sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; - sub five from [five five.inf five.num five.den five.sup]; - sub five.sup from [five.sup five five.inf five.num five.den]; - sub five.den from [five.den five.sup five five.inf five.num]; - sub five.num from [five.num five.den five.sup five five.inf]; - sub five.inf from [five.inf five.num five.den five.sup five]; - sub four from [four four.sup four.num four.den four.inf]; - sub four.inf from [four.inf four four.sup four.num four.den]; - sub four.den from [four.den four.inf four four.sup four.num]; - sub four.num from [four.num four.den four.inf four four.sup]; - sub four.sup from [four.sup four.num four.den four.inf four]; - sub nine from [nine nine.den nine.inf nine.num nine.sup]; - sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; - sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; - sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; - sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; - sub one from [one one.den one.num one.inf one.sup]; - sub one.sup from [one.sup one one.den one.num one.inf]; - sub one.inf from [one.inf one.sup one one.den one.num]; - sub one.num from [one.num one.inf one.sup one one.den]; - sub one.den from [one.den one.num one.inf one.sup one]; - sub seven from [seven seven.inf seven.num seven.sup seven.den]; - sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; - sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; - sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; - sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; - sub six from [six six.num six.sup six.den six.inf]; - sub six.inf from [six.inf six six.num six.sup six.den]; - sub six.den from [six.den six.inf six six.num six.sup]; - sub six.sup from [six.sup six.den six.inf six six.num]; - sub six.num from [six.num six.sup six.den six.inf six]; - sub three from [three three.inf three.den three.num three.sup]; - sub three.sup from [three.sup three three.inf three.den three.num]; - sub three.num from [three.num three.sup three three.inf three.den]; - sub three.den from [three.den three.num three.sup three three.inf]; - sub three.inf from [three.inf three.den three.num three.sup three]; - sub two from [two two.inf two.sup two.num two.den]; - sub two.den from [two.den two two.inf two.sup two.num]; - sub two.num from [two.num two.den two two.inf two.sup]; - sub two.sup from [two.sup two.num two.den two two.inf]; - sub two.inf from [two.inf two.sup two.num two.den two]; - sub zero from [zero zero.sup zero.num zero.den zero.inf]; - sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; - sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; - sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; - sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; -} aalt; diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/fontinfo.plist b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/fontinfo.plist deleted file mode 100644 index f09725f7..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/fontinfo.plist +++ /dev/null @@ -1,407 +0,0 @@ - - - - - ascender - 740 - capHeight - 655 - copyright - Copyright 2023 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) - descender - -260 - familyName - Intel One Mono - guidelines - - italicAngle - 0.0 - openTypeHeadFlags - - 0 - 1 - - openTypeHheaAscender - 1090 - openTypeHheaDescender - -290 - openTypeHheaLineGap - 0 - openTypeNameDesigner - Fred Shallcrass - openTypeNameDesignerURL - http://frerejones.com - openTypeNameLicense - This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL - openTypeNameLicenseURL - https://github.com/intel/intel-one-mono/blob/main/license - openTypeNameManufacturer - Frere-Jones Type LLC - openTypeNameManufacturerURL - http://frerejones.com - openTypeNamePreferredFamilyName - Intel One Mono - openTypeNamePreferredSubfamilyName - Light - openTypeNameRecords - - - encodingID - 0 - languageID - 0 - nameID - 0 - platformID - 1 - string - (C) 2023 Intel Corporation - - - encodingID - 1 - languageID - 1033 - nameID - 0 - platformID - 3 - string - (C) 2023 Intel Corporation - - - encodingID - 0 - languageID - 0 - nameID - 1 - platformID - 1 - string - Intel One Mono Light - - - encodingID - 1 - languageID - 1033 - nameID - 1 - platformID - 3 - string - Intel One Mono Light - - - encodingID - 0 - languageID - 0 - nameID - 2 - platformID - 1 - string - Regular - - - encodingID - 1 - languageID - 1033 - nameID - 2 - platformID - 3 - string - Regular - - - encodingID - 0 - languageID - 0 - nameID - 4 - platformID - 1 - string - Intel One Mono Light - - - encodingID - 1 - languageID - 1033 - nameID - 4 - platformID - 3 - string - Intel One Mono Light - - - encodingID - 0 - languageID - 0 - nameID - 6 - platformID - 1 - string - IntelOneMono-Light - - - encodingID - 1 - languageID - 1033 - nameID - 6 - platformID - 3 - string - IntelOneMono-Light - - - encodingID - 0 - languageID - 0 - nameID - 8 - platformID - 1 - string - Frere-Jones Type LLC - - - encodingID - 1 - languageID - 1033 - nameID - 8 - platformID - 3 - string - Frere-Jones Type LLC - - - encodingID - 0 - languageID - 0 - nameID - 9 - platformID - 1 - string - Fred Shallcrass - - - encodingID - 1 - languageID - 1033 - nameID - 9 - platformID - 3 - string - Fred Shallcrass - - - encodingID - 0 - languageID - 0 - nameID - 11 - platformID - 1 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 11 - platformID - 3 - string - http://frerejones.com - - - encodingID - 0 - languageID - 0 - nameID - 12 - platformID - 1 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 12 - platformID - 3 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 16 - platformID - 3 - string - Intel One Mono - - - encodingID - 1 - languageID - 1033 - nameID - 17 - platformID - 3 - string - Light - - - openTypeOS2CodePageRanges - - 0 - 1 - 4 - 7 - 8 - 29 - - openTypeOS2Panose - - 2 - 11 - 4 - 9 - 2 - 2 - 3 - 2 - 2 - 4 - - openTypeOS2Selection - - 7 - 8 - - openTypeOS2StrikeoutPosition - 286 - openTypeOS2StrikeoutSize - 50 - openTypeOS2Type - - openTypeOS2TypoAscender - 1090 - openTypeOS2TypoDescender - -290 - openTypeOS2TypoLineGap - 0 - openTypeOS2UnicodeRanges - - 0 - 1 - 2 - 29 - 32 - - openTypeOS2VendorID - FRJN - openTypeOS2WeightClass - 300 - openTypeOS2WidthClass - 5 - openTypeOS2WinAscent - 1090 - openTypeOS2WinDescent - 290 - postscriptBlueFuzz - 0 - postscriptBlueScale - 0.05 - postscriptBlueValues - - -15 - 0 - 460 - 475 - 655 - 670 - 710 - 725 - - postscriptDefaultWidthX - 614 - postscriptFamilyBlues - - postscriptFamilyOtherBlues - - postscriptFontName - IntelOneMono-Light - postscriptForceBold - - postscriptFullName - Intel One Mono Light - postscriptIsFixedPitch - - postscriptOtherBlues - - -245 - -230 - - postscriptStemSnapH - - 50 - - postscriptStemSnapV - - 59 - - postscriptUnderlinePosition - -75 - postscriptUnderlineThickness - 50 - styleMapFamilyName - Intel One Mono Light - styleMapStyleName - regular - styleName - Light - unitsPerEm - 1000 - versionMajor - 1 - versionMinor - 3 - xHeight - 460 - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_.dot.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_.dot.glif deleted file mode 100644 index 5b77944c..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_.dot.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_E_.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_E_.glif deleted file mode 100644 index a6ad749f..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_E_.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_breve.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_breve.glif deleted file mode 100644 index fb040e21..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_breve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_caron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_caron.glif deleted file mode 100644 index 4b4453ba..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_circumflex.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_circumflex.glif deleted file mode 100644 index eac64feb..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_circumflexacute.glif deleted file mode 100644 index 05212f35..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_circumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_circumflexdotbelow.glif deleted file mode 100644 index 2ae93d09..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_circumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_circumflexgrave.glif deleted file mode 100644 index 9c99d517..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_circumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_circumflexhookabove.glif deleted file mode 100644 index 1562f8c2..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_circumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_circumflextilde.glif deleted file mode 100644 index 7a2f19fc..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_circumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_dieresis.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_dieresis.glif deleted file mode 100644 index 6739fdd0..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_dotaccent.glif deleted file mode 100644 index e9b1f00e..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_dotbelow.glif deleted file mode 100644 index 5c11b431..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_hookabove.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_hookabove.glif deleted file mode 100644 index af528d39..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_horn.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_horn.glif deleted file mode 100644 index dc3289ee..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_horn.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_hornacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_hornacute.glif deleted file mode 100644 index 615bff3c..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_hornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_horndotbelow.glif deleted file mode 100644 index 70804697..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_horndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_horngrave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_horngrave.glif deleted file mode 100644 index cf2fcf01..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_horngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_hornhookabove.glif deleted file mode 100644 index 3f42b31c..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_hornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_horntilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_horntilde.glif deleted file mode 100644 index 09d63991..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_horntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_macron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_macron.glif deleted file mode 100644 index c637b266..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_ogonek.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_ogonek.glif deleted file mode 100644 index dfae4d41..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_ogonek.glif +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_slash.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_slash.glif deleted file mode 100644 index 51a02214..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_slash.glif +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_tilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_tilde.glif deleted file mode 100644 index 617cc85a..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_acute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_acute.glif deleted file mode 100644 index 05da755c..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_caron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_caron.glif deleted file mode 100644 index da713860..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_commaaccent.glif deleted file mode 100644 index 3a3168e6..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_dotaccent.glif deleted file mode 100644 index fb48a1c1..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_dotbelow.glif deleted file mode 100644 index dd9e738c..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_linebelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_linebelow.glif deleted file mode 100644 index 3035ac67..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_macrondotbelow.glif deleted file mode 100644 index cb8ed21e..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_macrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_acute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_acute.glif deleted file mode 100644 index 6d43c059..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_caron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_caron.glif deleted file mode 100644 index 4ad44dfe..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_cedilla.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_cedilla.glif deleted file mode 100644 index 21fbc7ab..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_cedilla.glif +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_chwa.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_chwa.glif deleted file mode 100644 index ca282269..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_chwa.glif +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_circumflex.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_circumflex.glif deleted file mode 100644 index 866898ea..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_commaaccent.glif deleted file mode 100644 index f626394d..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_dotbelow.glif deleted file mode 100644 index 09b4d12b..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_caron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_caron.glif deleted file mode 100644 index 9478200a..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_cedilla.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_cedilla.glif deleted file mode 100644 index 48142288..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_cedilla.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_circumflexbelow.glif deleted file mode 100644 index e4239a57..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_circumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_commaaccent.glif deleted file mode 100644 index 13c9077c..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_dotbelow.glif deleted file mode 100644 index e4571cca..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_horn.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_horn.glif deleted file mode 100644 index afb4bdd3..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_horn.glif +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_linebelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_linebelow.glif deleted file mode 100644 index 8cbacb06..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_acute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_acute.glif deleted file mode 100644 index aa7e40e0..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_breve.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_breve.glif deleted file mode 100644 index 2d75fcd2..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_breve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_caron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_caron.glif deleted file mode 100644 index a518822d..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_circumflex.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_circumflex.glif deleted file mode 100644 index a790e335..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_dieresis.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_dieresis.glif deleted file mode 100644 index a6d22fd5..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_dieresisacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_dieresisacute.glif deleted file mode 100644 index ce10b66d..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_dieresisacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_dieresiscaron.glif deleted file mode 100644 index da612539..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_dieresiscaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_dieresisgrave.glif deleted file mode 100644 index 877c3631..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_dieresisgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_dieresismacron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_dieresismacron.glif deleted file mode 100644 index 7ad542b1..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_dieresismacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_dotbelow.glif deleted file mode 100644 index 92e6fae5..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_grave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_grave.glif deleted file mode 100644 index d27e9ec0..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_hookabove.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_hookabove.glif deleted file mode 100644 index 5a7b97cf..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_horn.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_horn.glif deleted file mode 100644 index 91bc67e6..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_horn.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_hornacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_hornacute.glif deleted file mode 100644 index b3dff414..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_hornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_horndotbelow.glif deleted file mode 100644 index 654c67ae..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_horndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_horngrave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_horngrave.glif deleted file mode 100644 index 7c31ea4d..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_horngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_hornhookabove.glif deleted file mode 100644 index 0cd806c5..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_hornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_horntilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_horntilde.glif deleted file mode 100644 index 1822b4fa..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_horntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_hungarumlaut.glif deleted file mode 100644 index 2fb78f3e..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_hungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_macron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_macron.glif deleted file mode 100644 index f0eb5564..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_ogonek.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_ogonek.glif deleted file mode 100644 index 9ab333d9..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_ogonek.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_ring.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_ring.glif deleted file mode 100644 index 349ebf10..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_ring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_tilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_tilde.glif deleted file mode 100644 index 52835fdf..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/V_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/V_dotbelow.glif deleted file mode 100644 index 632add1c..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/V_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/W_acute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/W_acute.glif deleted file mode 100644 index eff2da56..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/W_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/W_circumflex.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/W_circumflex.glif deleted file mode 100644 index d51dcbeb..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/W_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/W_dieresis.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/W_dieresis.glif deleted file mode 100644 index a1dbedd3..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/W_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/W_grave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/W_grave.glif deleted file mode 100644 index feb2e8e7..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/W_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/X_dieresis.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/X_dieresis.glif deleted file mode 100644 index b0987408..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/X_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_acute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_acute.glif deleted file mode 100644 index ebfb7a9d..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_circumflex.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_circumflex.glif deleted file mode 100644 index 64bd8fbe..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_dieresis.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_dieresis.glif deleted file mode 100644 index f2513394..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_dotaccent.glif deleted file mode 100644 index 671a5f5a..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_dotbelow.glif deleted file mode 100644 index 386dc4b8..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_grave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_grave.glif deleted file mode 100644 index 8e2c3500..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_hookabove.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_hookabove.glif deleted file mode 100644 index 4dd39735..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_macron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_macron.glif deleted file mode 100644 index ea27bb64..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_tilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_tilde.glif deleted file mode 100644 index 641c0b84..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Z_acute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Z_acute.glif deleted file mode 100644 index ceb80f30..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Z_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Z_caron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Z_caron.glif deleted file mode 100644 index 19c6c068..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Z_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Z_circumflex.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Z_circumflex.glif deleted file mode 100644 index a0a028e0..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Z_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Z_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Z_dotaccent.glif deleted file mode 100644 index ffb5af8e..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Z_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Z_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Z_dotbelow.glif deleted file mode 100644 index 9919ba4b..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Z_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Z_linebelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Z_linebelow.glif deleted file mode 100644 index cc04bc54..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Z_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/aacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/aacute.glif deleted file mode 100644 index 8fb698e7..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/aacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/abreve.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/abreve.glif deleted file mode 100644 index b0d6563e..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/abreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/abreveacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/abreveacute.glif deleted file mode 100644 index 36ca552a..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/abreveacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/abrevedotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/abrevedotbelow.glif deleted file mode 100644 index bf690f0d..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/abrevedotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/abrevegrave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/abrevegrave.glif deleted file mode 100644 index ada2fdd9..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/abrevegrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/abrevehookabove.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/abrevehookabove.glif deleted file mode 100644 index 4616c330..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/abrevehookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/abrevetilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/abrevetilde.glif deleted file mode 100644 index ff5c3111..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/abrevetilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acaron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acaron.glif deleted file mode 100644 index ceae0a5f..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acircumflex.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acircumflex.glif deleted file mode 100644 index 429619b1..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acircumflexacute.glif deleted file mode 100644 index 32f268be..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acircumflexdotbelow.glif deleted file mode 100644 index 72b71225..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acircumflexgrave.glif deleted file mode 100644 index bf2042f1..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acircumflexhookabove.glif deleted file mode 100644 index 36a96cc0..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acircumflextilde.glif deleted file mode 100644 index 631eaeff..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/adieresis.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/adieresis.glif deleted file mode 100644 index 0b7d86d4..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/adieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/adotaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/adotaccent.glif deleted file mode 100644 index 31540043..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/adotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/adotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/adotbelow.glif deleted file mode 100644 index 42cd8570..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/adotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ae.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ae.glif deleted file mode 100644 index 837d5a4e..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ae.glif +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/agrave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/agrave.glif deleted file mode 100644 index 55b8556c..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/agrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ahookabove.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ahookabove.glif deleted file mode 100644 index 839df3f7..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ahookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/amacron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/amacron.glif deleted file mode 100644 index 60463e4f..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/amacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/aogonek.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/aogonek.glif deleted file mode 100644 index 646a1d4e..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/aogonek.glif +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/aring.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/aring.glif deleted file mode 100644 index e74b7a5c..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/aring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/atilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/atilde.glif deleted file mode 100644 index 68feb980..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/atilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/blinebelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/blinebelow.glif deleted file mode 100644 index 3880bf82..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/blinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/breveacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/breveacute.glif deleted file mode 100644 index 009019cc..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/breveacute.glif +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevegrave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevegrave.glif deleted file mode 100644 index 969dc588..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevegrave.glif +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevehook.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevehook.glif deleted file mode 100644 index 76304638..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevehook.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevetilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevetilde.glif deleted file mode 100644 index 0e4e875b..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevetilde.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/cacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/cacute.glif deleted file mode 100644 index b7454f6d..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/cacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ccaron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ccaron.glif deleted file mode 100644 index 5b0ebd64..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ccaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ccedilla.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ccedilla.glif deleted file mode 100644 index 44428c86..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ccedilla.glif +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ccircumflex.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ccircumflex.glif deleted file mode 100644 index 7f4e4c13..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ccircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/cdotaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/cdotaccent.glif deleted file mode 100644 index 81ed5ae6..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/cdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflexhook.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflexhook.glif deleted file mode 100644 index 9866ea37..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflexhook.glif +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflextilde.glif deleted file mode 100644 index b4c21803..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflextilde.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/commaturnedabovecmb.glif deleted file mode 100644 index e97a6d0c..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/commaturnedabovecmb.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/contents.plist b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/contents.plist deleted file mode 100644 index 9b3fa25c..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/contents.plist +++ /dev/null @@ -1,1374 +0,0 @@ - - - - - .notdef - _notdef.glif - A - A_.glif - AE - A_E_.glif - Aacute - A_acute.glif - Abreve - A_breve.glif - Abreveacute - A_breveacute.glif - Abrevedotbelow - A_brevedotbelow.glif - Abrevegrave - A_brevegrave.glif - Abrevehookabove - A_brevehookabove.glif - Abrevetilde - A_brevetilde.glif - Acaron - A_caron.glif - Acircumflex - A_circumflex.glif - Acircumflexacute - A_circumflexacute.glif - Acircumflexdotbelow - A_circumflexdotbelow.glif - Acircumflexgrave - A_circumflexgrave.glif - Acircumflexhookabove - A_circumflexhookabove.glif - Acircumflextilde - A_circumflextilde.glif - Adieresis - A_dieresis.glif - Adotaccent - A_dotaccent.glif - Adotbelow - A_dotbelow.glif - Agrave - A_grave.glif - Ahookabove - A_hookabove.glif - Amacron - A_macron.glif - Aogonek - A_ogonek.glif - Aring - A_ring.glif - Atilde - A_tilde.glif - B - B_.glif - Blinebelow - B_linebelow.glif - C - C_.glif - Cacute - C_acute.glif - Ccaron - C_caron.glif - Ccedilla - C_cedilla.glif - Ccircumflex - C_circumflex.glif - Cdotaccent - C_dotaccent.glif - D - D_.glif - Dcaron - D_caron.glif - Dcircumflexbelow - D_circumflexbelow.glif - Dcroat - D_croat.glif - Ddotbelow - D_dotbelow.glif - Dlinebelow - D_linebelow.glif - E - E_.glif - Eacute - E_acute.glif - Ebreve - E_breve.glif - Ecaron - E_caron.glif - Ecircumflex - E_circumflex.glif - Ecircumflexacute - E_circumflexacute.glif - Ecircumflexdotbelow - E_circumflexdotbelow.glif - Ecircumflexgrave - E_circumflexgrave.glif - Ecircumflexhookabove - E_circumflexhookabove.glif - Ecircumflextilde - E_circumflextilde.glif - Edieresis - E_dieresis.glif - Edotaccent - E_dotaccent.glif - Edotbelow - E_dotbelow.glif - Egrave - E_grave.glif - Ehookabove - E_hookabove.glif - Emacron - E_macron.glif - Eng - E_ng.glif - Eogonek - E_ogonek.glif - Eth - E_th.glif - Etilde - E_tilde.glif - Euro - E_uro.glif - F - F_.glif - G - G_.glif - Gbreve - G_breve.glif - Gcaron - G_caron.glif - Gcircumflex - G_circumflex.glif - Gcommaaccent - G_commaaccent.glif - Gdotaccent - G_dotaccent.glif - Gmacron - G_macron.glif - H - H_.glif - Hbar - H_bar.glif - Hbrevebelow - H_brevebelow.glif - Hcedilla - H_cedilla.glif - Hcircumflex - H_circumflex.glif - Hdotbelow - H_dotbelow.glif - I - I_.glif - Iacute - I_acute.glif - Ibreve - I_breve.glif - Icaron - I_caron.glif - Icircumflex - I_circumflex.glif - Idieresis - I_dieresis.glif - Idotaccent - I_dotaccent.glif - Idotbelow - I_dotbelow.glif - Igrave - I_grave.glif - Ihookabove - I_hookabove.glif - Imacron - I_macron.glif - Iogonek - I_ogonek.glif - Itilde - I_tilde.glif - J - J_.glif - Jcircumflex - J_circumflex.glif - K - K_.glif - Kcommaaccent - K_commaaccent.glif - Kdotbelow - K_dotbelow.glif - Klinebelow - K_linebelow.glif - L - L_.glif - L.dot - L_.dot.glif - Lacute - L_acute.glif - Lcaron - L_caron.glif - Lcircumflexbelow - L_circumflexbelow.glif - Lcommaaccent - L_commaaccent.glif - Ldotbelow - L_dotbelow.glif - Llinebelow - L_linebelow.glif - Lmacrondotbelow - L_macrondotbelow.glif - Lslash - L_slash.glif - M - M_.glif - Macute - M_acute.glif - Mdotaccent - M_dotaccent.glif - Mdotbelow - M_dotbelow.glif - N - N_.glif - Nacute - N_acute.glif - Ncaron - N_caron.glif - Ncircumflexbelow - N_circumflexbelow.glif - Ncommaaccent - N_commaaccent.glif - Ndotaccent - N_dotaccent.glif - Ndotbelow - N_dotbelow.glif - Ngrave - N_grave.glif - Nlinebelow - N_linebelow.glif - Ntilde - N_tilde.glif - O - O_.glif - OE - O_E_.glif - Oacute - O_acute.glif - Obreve - O_breve.glif - Ocaron - O_caron.glif - Ocircumflex - O_circumflex.glif - Ocircumflexacute - O_circumflexacute.glif - Ocircumflexdotbelow - O_circumflexdotbelow.glif - Ocircumflexgrave - O_circumflexgrave.glif - Ocircumflexhookabove - O_circumflexhookabove.glif - Ocircumflextilde - O_circumflextilde.glif - Odieresis - O_dieresis.glif - Odotaccent - O_dotaccent.glif - Odotbelow - O_dotbelow.glif - Ograve - O_grave.glif - Ohookabove - O_hookabove.glif - Ohorn - O_horn.glif - Ohornacute - O_hornacute.glif - Ohorndotbelow - O_horndotbelow.glif - Ohorngrave - O_horngrave.glif - Ohornhookabove - O_hornhookabove.glif - Ohorntilde - O_horntilde.glif - Ohungarumlaut - O_hungarumlaut.glif - Omacron - O_macron.glif - Oogonek - O_ogonek.glif - Oslash - O_slash.glif - Otilde - O_tilde.glif - P - P_.glif - Q - Q_.glif - R - R_.glif - Racute - R_acute.glif - Rcaron - R_caron.glif - Rcommaaccent - R_commaaccent.glif - Rdotaccent - R_dotaccent.glif - Rdotbelow - R_dotbelow.glif - Rlinebelow - R_linebelow.glif - Rmacrondotbelow - R_macrondotbelow.glif - S - S_.glif - Sacute - S_acute.glif - Scaron - S_caron.glif - Scedilla - S_cedilla.glif - Schwa - S_chwa.glif - Scircumflex - S_circumflex.glif - Scommaaccent - S_commaaccent.glif - Sdotbelow - S_dotbelow.glif - T - T_.glif - Tbar - T_bar.glif - Tcaron - T_caron.glif - Tcedilla - T_cedilla.glif - Tcircumflexbelow - T_circumflexbelow.glif - Tcommaaccent - T_commaaccent.glif - Tdotbelow - T_dotbelow.glif - Thorn - T_horn.glif - Tlinebelow - T_linebelow.glif - U - U_.glif - Uacute - U_acute.glif - Ubreve - U_breve.glif - Ucaron - U_caron.glif - Ucircumflex - U_circumflex.glif - Udieresis - U_dieresis.glif - Udieresisacute - U_dieresisacute.glif - Udieresiscaron - U_dieresiscaron.glif - Udieresisgrave - U_dieresisgrave.glif - Udieresismacron - U_dieresismacron.glif - Udotbelow - U_dotbelow.glif - Ugrave - U_grave.glif - Uhookabove - U_hookabove.glif - Uhorn - U_horn.glif - Uhornacute - U_hornacute.glif - Uhorndotbelow - U_horndotbelow.glif - Uhorngrave - U_horngrave.glif - Uhornhookabove - U_hornhookabove.glif - Uhorntilde - U_horntilde.glif - Uhungarumlaut - U_hungarumlaut.glif - Umacron - U_macron.glif - Uogonek - U_ogonek.glif - Uring - U_ring.glif - Utilde - U_tilde.glif - V - V_.glif - Vdotbelow - V_dotbelow.glif - W - W_.glif - Wacute - W_acute.glif - Wcircumflex - W_circumflex.glif - Wdieresis - W_dieresis.glif - Wgrave - W_grave.glif - X - X_.glif - Xdieresis - X_dieresis.glif - Y - Y_.glif - Yacute - Y_acute.glif - Ycircumflex - Y_circumflex.glif - Ydieresis - Y_dieresis.glif - Ydotaccent - Y_dotaccent.glif - Ydotbelow - Y_dotbelow.glif - Ygrave - Y_grave.glif - Yhookabove - Y_hookabove.glif - Ymacron - Y_macron.glif - Ytilde - Y_tilde.glif - Z - Z_.glif - Zacute - Z_acute.glif - Zcaron - Z_caron.glif - Zcircumflex - Z_circumflex.glif - Zdotaccent - Z_dotaccent.glif - Zdotbelow - Z_dotbelow.glif - Zlinebelow - Z_linebelow.glif - a - a.glif - aacute - aacute.glif - abreve - abreve.glif - abreveacute - abreveacute.glif - abrevedotbelow - abrevedotbelow.glif - abrevegrave - abrevegrave.glif - abrevehookabove - abrevehookabove.glif - abrevetilde - abrevetilde.glif - acaron - acaron.glif - acircumflex - acircumflex.glif - acircumflexacute - acircumflexacute.glif - acircumflexdotbelow - acircumflexdotbelow.glif - acircumflexgrave - acircumflexgrave.glif - acircumflexhookabove - acircumflexhookabove.glif - acircumflextilde - acircumflextilde.glif - acute - acute.glif - acutecmb - acutecmb.glif - acutecmb.cap - acutecmb.cap.glif - adieresis - adieresis.glif - adotaccent - adotaccent.glif - adotbelow - adotbelow.glif - ae - ae.glif - agrave - agrave.glif - ahookabove - ahookabove.glif - amacron - amacron.glif - ampersand - ampersand.glif - aogonek - aogonek.glif - apostrophemod - apostrophemod.glif - approxequal - approxequal.glif - aring - aring.glif - asciicircum - asciicircum.glif - asciitilde - asciitilde.glif - asterisk - asterisk.glif - at - at.glif - atilde - atilde.glif - b - b.glif - backslash - backslash.glif - bahtthai - bahtthai.glif - bar - bar.glif - blinebelow - blinebelow.glif - braceleft - braceleft.glif - braceright - braceright.glif - bracketleft - bracketleft.glif - bracketright - bracketright.glif - breve - breve.glif - breveacute - breveacute.glif - breveacute.cap - breveacute.cap.glif - brevebelowcmb - brevebelowcmb.glif - brevecmb - brevecmb.glif - brevecmb.cap - brevecmb.cap.glif - brevegrave - brevegrave.glif - brevegrave.cap - brevegrave.cap.glif - brevehook - brevehook.glif - brevehook.cap - brevehook.cap.glif - brevetilde - brevetilde.glif - brevetilde.cap - brevetilde.cap.glif - bullet - bullet.glif - c - c.glif - cacute - cacute.glif - caron - caron.glif - caroncmb - caroncmb.glif - caroncmb.cap - caroncmb.cap.glif - ccaron - ccaron.glif - ccedilla - ccedilla.glif - ccircumflex - ccircumflex.glif - cdotaccent - cdotaccent.glif - cedilla - cedilla.glif - cedillacmb - cedillacmb.glif - cent - cent.glif - circumflex - circumflex.glif - circumflexacute - circumflexacute.glif - circumflexacute.cap - circumflexacute.cap.glif - circumflexbelowcmb - circumflexbelowcmb.glif - circumflexcmb - circumflexcmb.glif - circumflexcmb.cap - circumflexcmb.cap.glif - circumflexgrave - circumflexgrave.glif - circumflexgrave.cap - circumflexgrave.cap.glif - circumflexhook - circumflexhook.glif - circumflexhook.cap - circumflexhook.cap.glif - circumflextilde - circumflextilde.glif - circumflextilde.cap - circumflextilde.cap.glif - colon - colon.glif - colon.fig - colon.fig.glif - comma - comma.glif - commaaboverightcmb - commaaboverightcmb.glif - commaturnedabovecmb - commaturnedabovecmb.glif - commaturnedmod - commaturnedmod.glif - copyright - copyright.glif - d - d.glif - dagger - dagger.glif - daggerdbl - daggerdbl.glif - dblprimemod - dblprimemod.glif - dcaron - dcaron.glif - dcircumflexbelow - dcircumflexbelow.glif - dcroat - dcroat.glif - ddotbelow - ddotbelow.glif - degree - degree.glif - dieresis - dieresis.glif - dieresisacute - dieresisacute.glif - dieresisacute.cap - dieresisacute.cap.glif - dieresisbelowcmb - dieresisbelowcmb.glif - dieresiscaron - dieresiscaron.glif - dieresiscaron.cap - dieresiscaron.cap.glif - dieresiscmb - dieresiscmb.glif - dieresiscmb.cap - dieresiscmb.cap.glif - dieresisgrave - dieresisgrave.glif - dieresisgrave.cap - dieresisgrave.cap.glif - dieresismacron - dieresismacron.glif - dieresismacron.cap - dieresismacron.cap.glif - divide - divide.glif - dlinebelow - dlinebelow.glif - dollar - dollar.glif - dong - dong.glif - dotaccent - dotaccent.glif - dotaccentcmb - dotaccentcmb.glif - dotaccentcmb.cap - dotaccentcmb.cap.glif - dotbelowcmb - dotbelowcmb.glif - dotlessi - dotlessi.glif - dotlessj - dotlessj.glif - e - e.glif - eacute - eacute.glif - ebreve - ebreve.glif - ecaron - ecaron.glif - ecircumflex - ecircumflex.glif - ecircumflexacute - ecircumflexacute.glif - ecircumflexdotbelow - ecircumflexdotbelow.glif - ecircumflexgrave - ecircumflexgrave.glif - ecircumflexhookabove - ecircumflexhookabove.glif - ecircumflextilde - ecircumflextilde.glif - edieresis - edieresis.glif - edotaccent - edotaccent.glif - edotbelow - edotbelow.glif - egrave - egrave.glif - ehookabove - ehookabove.glif - eight - eight.glif - eight.den - eight.den.glif - eight.inf - eight.inf.glif - eight.num - eight.num.glif - eight.sup - eight.sup.glif - ellipsis - ellipsis.glif - emacron - emacron.glif - emdash - emdash.glif - endash - endash.glif - eng - eng.glif - eogonek - eogonek.glif - equal - equal.glif - eth - eth.glif - etilde - etilde.glif - exclam - exclam.glif - exclamdown - exclamdown.glif - f - f.glif - five - five.glif - five.den - five.den.glif - five.inf - five.inf.glif - five.num - five.num.glif - five.sup - five.sup.glif - fiveeighths - fiveeighths.glif - fivesixths - fivesixths.glif - four - four.glif - four.den - four.den.glif - four.inf - four.inf.glif - four.num - four.num.glif - four.sup - four.sup.glif - fourfifths - fourfifths.glif - fracbar - fracbar.glif - fraction - fraction.glif - g - g.glif - gbreve - gbreve.glif - gcaron - gcaron.glif - gcircumflex - gcircumflex.glif - gcommaaccent - gcommaaccent.glif - gdotaccent - gdotaccent.glif - germandbls - germandbls.glif - gmacron - gmacron.glif - grave - grave.glif - gravecmb - gravecmb.glif - gravecmb.cap - gravecmb.cap.glif - greater - greater.glif - greaterequal - greaterequal.glif - guillemetleft - guillemetleft.glif - guillemetright - guillemetright.glif - guilsinglleft - guilsinglleft.glif - guilsinglright - guilsinglright.glif - h - h.glif - hbar - hbar.glif - hbrevebelow - hbrevebelow.glif - hcedilla - hcedilla.glif - hcircumflex - hcircumflex.glif - hdotbelow - hdotbelow.glif - hlinebelow - hlinebelow.glif - hookcmb - hookcmb.glif - hookcmb.cap - hookcmb.cap.glif - horizontalbar - horizontalbar.glif - hungarumlaut - hungarumlaut.glif - hungarumlautcmb - hungarumlautcmb.glif - hungarumlautcmb.cap - hungarumlautcmb.cap.glif - hyphen - hyphen.glif - i - i.glif - iacute - iacute.glif - ibreve - ibreve.glif - icaron - icaron.glif - icircumflex - icircumflex.glif - idieresis - idieresis.glif - idotaccent - idotaccent.glif - idotbelow - idotbelow.glif - igrave - igrave.glif - ihookabove - ihookabove.glif - imacron - imacron.glif - iogonek - iogonek.glif - itilde - itilde.glif - j - j.glif - jcaron - jcaron.glif - jcircumflex - jcircumflex.glif - k - k.glif - kcommaaccent - kcommaaccent.glif - kdotbelow - kdotbelow.glif - klinebelow - klinebelow.glif - l - l.glif - l.dot - l.dot.glif - lacute - lacute.glif - lcaron - lcaron.glif - lcircumflexbelow - lcircumflexbelow.glif - lcommaaccent - lcommaaccent.glif - ldotbelow - ldotbelow.glif - less - less.glif - lessequal - lessequal.glif - llinebelow - llinebelow.glif - lmacrondotbelow - lmacrondotbelow.glif - lslash - lslash.glif - m - m.glif - macron - macron.glif - macronbelowcmb - macronbelowcmb.glif - macroncmb - macroncmb.glif - macroncmb.cap - macroncmb.cap.glif - macronlowmod - macronlowmod.glif - macute - macute.glif - mdotaccent - mdotaccent.glif - mdotbelow - mdotbelow.glif - middotcat - middotcat.glif - middotcat.cap - middotcat.cap.glif - minus - minus.glif - mu - mu.glif - multiply - multiply.glif - n - n.glif - nacute - nacute.glif - naira - naira.glif - ncaron - ncaron.glif - ncircumflexbelow - ncircumflexbelow.glif - ncommaaccent - ncommaaccent.glif - ndotaccent - ndotaccent.glif - ndotbelow - ndotbelow.glif - ngrave - ngrave.glif - nine - nine.glif - nine.den - nine.den.glif - nine.inf - nine.inf.glif - nine.num - nine.num.glif - nine.sup - nine.sup.glif - nlinebelow - nlinebelow.glif - notequal - notequal.glif - ntilde - ntilde.glif - numbersign - numbersign.glif - o - o.glif - oacute - oacute.glif - obreve - obreve.glif - ocaron - ocaron.glif - ocircumflex - ocircumflex.glif - ocircumflexacute - ocircumflexacute.glif - ocircumflexdotbelow - ocircumflexdotbelow.glif - ocircumflexgrave - ocircumflexgrave.glif - ocircumflexhookabove - ocircumflexhookabove.glif - ocircumflextilde - ocircumflextilde.glif - odieresis - odieresis.glif - odotaccent - odotaccent.glif - odotbelow - odotbelow.glif - oe - oe.glif - ogonek - ogonek.glif - ogonekcmb - ogonekcmb.glif - ograve - ograve.glif - ohookabove - ohookabove.glif - ohorn - ohorn.glif - ohornacute - ohornacute.glif - ohorndotbelow - ohorndotbelow.glif - ohorngrave - ohorngrave.glif - ohornhookabove - ohornhookabove.glif - ohorntilde - ohorntilde.glif - ohungarumlaut - ohungarumlaut.glif - omacron - omacron.glif - one - one.glif - one.den - one.den.glif - one.inf - one.inf.glif - one.num - one.num.glif - one.sup - one.sup.glif - oneeighth - oneeighth.glif - onefifth - onefifth.glif - onehalf - onehalf.glif - onequarter - onequarter.glif - onesixth - onesixth.glif - onethird - onethird.glif - oogonek - oogonek.glif - ordfeminine - ordfeminine.glif - ordmasculine - ordmasculine.glif - oslash - oslash.glif - otilde - otilde.glif - p - p.glif - paragraph - paragraph.glif - parenleft - parenleft.glif - parenright - parenright.glif - percent - percent.glif - period - period.glif - periodcentered - periodcentered.glif - peso - peso.glif - plus - plus.glif - plusminus - plusminus.glif - primemod - primemod.glif - published - published.glif - q - q.glif - question - question.glif - questiondown - questiondown.glif - quotedbl - quotedbl.glif - quotedblbase - quotedblbase.glif - quotedblleft - quotedblleft.glif - quotedblright - quotedblright.glif - quoteleft - quoteleft.glif - quoteright - quoteright.glif - quotesinglbase - quotesinglbase.glif - quotesingle - quotesingle.glif - r - r.glif - racute - racute.glif - rcaron - rcaron.glif - rcommaaccent - rcommaaccent.glif - rdotaccent - rdotaccent.glif - rdotbelow - rdotbelow.glif - registered - registered.glif - ring - ring.glif - ringcmb - ringcmb.glif - ringcmb.cap - ringcmb.cap.glif - ringhalfleft - ringhalfleft.glif - ringhalfright - ringhalfright.glif - rlinebelow - rlinebelow.glif - rmacrondotbelow - rmacrondotbelow.glif - s - s.glif - sacute - sacute.glif - scaron - scaron.glif - scedilla - scedilla.glif - schwa - schwa.glif - scircumflex - scircumflex.glif - scommaaccent - scommaaccent.glif - sdotbelow - sdotbelow.glif - section - section.glif - semicolon - semicolon.glif - servicemark - servicemark.glif - seven - seven.glif - seven.den - seven.den.glif - seven.inf - seven.inf.glif - seven.num - seven.num.glif - seven.sup - seven.sup.glif - seveneighths - seveneighths.glif - six - six.glif - six.den - six.den.glif - six.inf - six.inf.glif - six.num - six.num.glif - six.sup - six.sup.glif - slash - slash.glif - space - space.glif - sterling - sterling.glif - t - t.glif - tbar - tbar.glif - tcaron - tcaron.glif - tcedilla - tcedilla.glif - tcircumflexbelow - tcircumflexbelow.glif - tcommaaccent - tcommaaccent.glif - tdotbelow - tdotbelow.glif - thorn - thorn.glif - three - three.glif - three.den - three.den.glif - three.inf - three.inf.glif - three.num - three.num.glif - three.sup - three.sup.glif - threeeighths - threeeighths.glif - threefifths - threefifths.glif - threequarters - threequarters.glif - tilde - tilde.glif - tildecmb - tildecmb.glif - tildecmb.cap - tildecmb.cap.glif - tlinebelow - tlinebelow.glif - trademark - trademark.glif - two - two.glif - two.den - two.den.glif - two.inf - two.inf.glif - two.num - two.num.glif - two.sup - two.sup.glif - twodotleader - twodotleader.glif - twofifths - twofifths.glif - twothirds - twothirds.glif - u - u.glif - uacute - uacute.glif - ubreve - ubreve.glif - ucaron - ucaron.glif - ucircumflex - ucircumflex.glif - udieresis - udieresis.glif - udieresisacute - udieresisacute.glif - udieresiscaron - udieresiscaron.glif - udieresisgrave - udieresisgrave.glif - udieresismacron - udieresismacron.glif - udotbelow - udotbelow.glif - ugrave - ugrave.glif - uhookabove - uhookabove.glif - uhorn - uhorn.glif - uhornacute - uhornacute.glif - uhorndotbelow - uhorndotbelow.glif - uhorngrave - uhorngrave.glif - uhornhookabove - uhornhookabove.glif - uhorntilde - uhorntilde.glif - uhungarumlaut - uhungarumlaut.glif - umacron - umacron.glif - underscore - underscore.glif - uni00A0 - uni00A_0.glif - uni0326 - uni0326.glif - uni1E9E - uni1E_9E_.glif - uni2011 - uni2011.glif - uni20B9 - uni20B_9.glif - uni20BA - uni20B_A_.glif - uni20BD - uni20B_D_.glif - uniA788 - uniA_788.glif - uogonek - uogonek.glif - uring - uring.glif - utilde - utilde.glif - v - v.glif - vdotbelow - vdotbelow.glif - verticallinelowmod - verticallinelowmod.glif - verticallinemod - verticallinemod.glif - w - w.glif - wacute - wacute.glif - wcircumflex - wcircumflex.glif - wdieresis - wdieresis.glif - wgrave - wgrave.glif - won - won.glif - x - x.glif - xdieresis - xdieresis.glif - y - y.glif - yacute - yacute.glif - ycircumflex - ycircumflex.glif - ydieresis - ydieresis.glif - ydotaccent - ydotaccent.glif - ydotbelow - ydotbelow.glif - yen - yen.glif - ygrave - ygrave.glif - yhookabove - yhookabove.glif - ymacron - ymacron.glif - ytilde - ytilde.glif - z - z.glif - zacute - zacute.glif - zcaron - zcaron.glif - zcircumflex - zcircumflex.glif - zdotaccent - zdotaccent.glif - zdotbelow - zdotbelow.glif - zero - zero.glif - zero.den - zero.den.glif - zero.inf - zero.inf.glif - zero.num - zero.num.glif - zero.sup - zero.sup.glif - zlinebelow - zlinebelow.glif - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dcaron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dcaron.glif deleted file mode 100644 index a0fd7adc..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dcircumflexbelow.glif deleted file mode 100644 index 35814629..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dcroat.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dcroat.glif deleted file mode 100644 index 76737cef..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dcroat.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ddotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ddotbelow.glif deleted file mode 100644 index 1fd230ff..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ddotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresisacute.cap.glif deleted file mode 100644 index 55cd1f8b..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresisacute.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresisacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresisacute.glif deleted file mode 100644 index 50ebb3c1..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresisacute.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresisbelowcmb.glif deleted file mode 100644 index ff9fe0c1..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresisbelowcmb.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresiscaron.cap.glif deleted file mode 100644 index 0944aa96..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresiscaron.cap.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresiscaron.glif deleted file mode 100644 index 2425c9b0..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresiscaron.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresisgrave.cap.glif deleted file mode 100644 index 07b3396d..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresisgrave.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresisgrave.glif deleted file mode 100644 index d27d53e6..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresisgrave.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresismacron.cap.glif deleted file mode 100644 index c5baf437..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresismacron.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresismacron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresismacron.glif deleted file mode 100644 index 25225105..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresismacron.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dlinebelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dlinebelow.glif deleted file mode 100644 index 8ee43984..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dotlessj.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dotlessj.glif deleted file mode 100644 index 4651491d..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dotlessj.glif +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eacute.glif deleted file mode 100644 index 7c6025da..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ebreve.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ebreve.glif deleted file mode 100644 index 5e9286b2..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ebreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecaron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecaron.glif deleted file mode 100644 index 14e4001c..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecircumflex.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecircumflex.glif deleted file mode 100644 index 4f32c9f0..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecircumflexacute.glif deleted file mode 100644 index fba6ae58..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecircumflexdotbelow.glif deleted file mode 100644 index 62419f55..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecircumflexgrave.glif deleted file mode 100644 index b6913a6e..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecircumflexhookabove.glif deleted file mode 100644 index 63f3918e..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecircumflextilde.glif deleted file mode 100644 index ecf0611d..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ecircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/edieresis.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/edieresis.glif deleted file mode 100644 index 01223df6..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/edieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/edotaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/edotaccent.glif deleted file mode 100644 index 76b1ba35..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/edotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/edotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/edotbelow.glif deleted file mode 100644 index 8119bffe..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/edotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/egrave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/egrave.glif deleted file mode 100644 index 40b4afc1..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/egrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ehookabove.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ehookabove.glif deleted file mode 100644 index 99a88639..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ehookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eight.num.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eight.num.glif deleted file mode 100644 index 3b295fae..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eight.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/emacron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/emacron.glif deleted file mode 100644 index 2642fbdd..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/emacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eng.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eng.glif deleted file mode 100644 index ebd7ae44..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eng.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eogonek.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eogonek.glif deleted file mode 100644 index c4275402..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eogonek.glif +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eth.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eth.glif deleted file mode 100644 index 0812715e..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eth.glif +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/etilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/etilde.glif deleted file mode 100644 index c160b09f..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/etilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/five.num.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/five.num.glif deleted file mode 100644 index d531edc8..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/five.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/four.num.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/four.num.glif deleted file mode 100644 index a78544ed..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/four.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gbreve.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gbreve.glif deleted file mode 100644 index cf55e3fd..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gbreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gcaron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gcaron.glif deleted file mode 100644 index 4fa8edad..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gcircumflex.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gcircumflex.glif deleted file mode 100644 index 900d8f09..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gcommaaccent.glif deleted file mode 100644 index dff1b9f4..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gdotaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gdotaccent.glif deleted file mode 100644 index c405bd58..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/germandbls.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/germandbls.glif deleted file mode 100644 index f5c94702..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/germandbls.glif +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gmacron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gmacron.glif deleted file mode 100644 index 20fe9703..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gmacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hbar.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hbar.glif deleted file mode 100644 index 3b6d30e3..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hbar.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hbrevebelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hbrevebelow.glif deleted file mode 100644 index 54f26b95..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hbrevebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hcedilla.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hcedilla.glif deleted file mode 100644 index 183ada63..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hcedilla.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hcircumflex.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hcircumflex.glif deleted file mode 100644 index 0e1b8487..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hdotbelow.glif deleted file mode 100644 index d82d7ff7..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hlinebelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hlinebelow.glif deleted file mode 100644 index 89efdf0f..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hookcmb.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hookcmb.glif deleted file mode 100644 index 296f04b9..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hookcmb.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/horizontalbar.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/horizontalbar.glif deleted file mode 100644 index 19ce9f0d..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/horizontalbar.glif +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/iacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/iacute.glif deleted file mode 100644 index dcf6d676..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/iacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ibreve.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ibreve.glif deleted file mode 100644 index 14bb494d..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ibreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/icaron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/icaron.glif deleted file mode 100644 index 46c758d4..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/icaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/icircumflex.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/icircumflex.glif deleted file mode 100644 index 56d79348..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/icircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/idieresis.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/idieresis.glif deleted file mode 100644 index 6a5df25f..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/idieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/idotaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/idotaccent.glif deleted file mode 100644 index 03a06266..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/idotaccent.glif +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/idotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/idotbelow.glif deleted file mode 100644 index be8f8389..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/idotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/igrave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/igrave.glif deleted file mode 100644 index 6723b8a7..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/igrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ihookabove.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ihookabove.glif deleted file mode 100644 index 18690b70..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ihookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/imacron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/imacron.glif deleted file mode 100644 index 2c733fe1..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/imacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/iogonek.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/iogonek.glif deleted file mode 100644 index 179c15b9..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/iogonek.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/itilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/itilde.glif deleted file mode 100644 index 71163931..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/itilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/jcaron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/jcaron.glif deleted file mode 100644 index 820e7855..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/jcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/jcircumflex.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/jcircumflex.glif deleted file mode 100644 index c6eddd3c..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/jcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/kcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/kcommaaccent.glif deleted file mode 100644 index e58c8875..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/kcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/kdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/kdotbelow.glif deleted file mode 100644 index becca16a..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/kdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/klinebelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/klinebelow.glif deleted file mode 100644 index b15c7bcb..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/klinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/l.dot.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/l.dot.glif deleted file mode 100644 index 23602a0a..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/l.dot.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/lacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/lacute.glif deleted file mode 100644 index 24037dd7..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/lacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/lcaron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/lcaron.glif deleted file mode 100644 index e20a737d..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/lcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/lcircumflexbelow.glif deleted file mode 100644 index ce90cca3..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/lcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/lcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/lcommaaccent.glif deleted file mode 100644 index a32c9661..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/lcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ldotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ldotbelow.glif deleted file mode 100644 index c35c7c15..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ldotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/llinebelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/llinebelow.glif deleted file mode 100644 index 2a34880a..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/llinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/lmacrondotbelow.glif deleted file mode 100644 index aca11a7b..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/lmacrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/lslash.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/lslash.glif deleted file mode 100644 index 67667e81..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/lslash.glif +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/macute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/macute.glif deleted file mode 100644 index 9820a0b6..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/macute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/mdotaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/mdotaccent.glif deleted file mode 100644 index 0f7c68bd..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/mdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/mdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/mdotbelow.glif deleted file mode 100644 index 0d46bea8..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/mdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/middotcat.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/middotcat.glif deleted file mode 100644 index 08eadb61..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/middotcat.glif +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/nacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/nacute.glif deleted file mode 100644 index c2bf6897..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/nacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ncaron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ncaron.glif deleted file mode 100644 index c428f59d..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ncaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ncircumflexbelow.glif deleted file mode 100644 index c8cb63f2..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ncircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ncommaaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ncommaaccent.glif deleted file mode 100644 index 06392b2a..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ncommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ndotaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ndotaccent.glif deleted file mode 100644 index d31b1f76..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ndotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ndotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ndotbelow.glif deleted file mode 100644 index bcd9f2db..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ngrave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ngrave.glif deleted file mode 100644 index 06d65e87..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/nine.num.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/nine.num.glif deleted file mode 100644 index 67b40ebf..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/nine.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/nlinebelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/nlinebelow.glif deleted file mode 100644 index 53bc6965..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/nlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ntilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ntilde.glif deleted file mode 100644 index d51aaf65..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/oacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/oacute.glif deleted file mode 100644 index 1060d68e..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/oacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/obreve.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/obreve.glif deleted file mode 100644 index e8d8ce44..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/obreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocaron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocaron.glif deleted file mode 100644 index 9ff5a847..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocircumflex.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocircumflex.glif deleted file mode 100644 index 44629ea4..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocircumflexacute.glif deleted file mode 100644 index c47e6108..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocircumflexdotbelow.glif deleted file mode 100644 index 05901524..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocircumflexgrave.glif deleted file mode 100644 index eb951869..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocircumflexhookabove.glif deleted file mode 100644 index 0e6b3305..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocircumflextilde.glif deleted file mode 100644 index 70af9fab..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ocircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/odieresis.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/odieresis.glif deleted file mode 100644 index 4dbf7118..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/odieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/odotaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/odotaccent.glif deleted file mode 100644 index 3d5af0b9..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/odotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/odotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/odotbelow.glif deleted file mode 100644 index b8af3467..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/odotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/oe.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/oe.glif deleted file mode 100644 index fccbfc4b..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/oe.glif +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ograve.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ograve.glif deleted file mode 100644 index 82cd1922..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ograve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohookabove.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohookabove.glif deleted file mode 100644 index a1aef591..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohorn.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohorn.glif deleted file mode 100644 index 4aafe85c..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohorn.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohornacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohornacute.glif deleted file mode 100644 index bf626550..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohorndotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohorndotbelow.glif deleted file mode 100644 index 5af08285..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohorndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohorngrave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohorngrave.glif deleted file mode 100644 index 987f3f23..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohorngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohornhookabove.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohornhookabove.glif deleted file mode 100644 index bc10c8e4..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohorntilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohorntilde.glif deleted file mode 100644 index e0b37789..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohorntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohungarumlaut.glif deleted file mode 100644 index cde3df75..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ohungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/omacron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/omacron.glif deleted file mode 100644 index 92757eca..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/omacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/one.num.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/one.num.glif deleted file mode 100644 index 2c736483..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/one.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/oogonek.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/oogonek.glif deleted file mode 100644 index fb34094b..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/oogonek.glif +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/oslash.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/oslash.glif deleted file mode 100644 index 84914645..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/oslash.glif +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/otilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/otilde.glif deleted file mode 100644 index 7308c306..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/otilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/racute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/racute.glif deleted file mode 100644 index 3ece6798..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/racute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/rcaron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/rcaron.glif deleted file mode 100644 index 4b206459..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/rcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/rcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/rcommaaccent.glif deleted file mode 100644 index 3e88a643..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/rcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/rdotaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/rdotaccent.glif deleted file mode 100644 index dd218769..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/rdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/rdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/rdotbelow.glif deleted file mode 100644 index 0ead4e74..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/rdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ringcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ringcmb.cap.glif deleted file mode 100644 index 81becd0a..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ringcmb.cap.glif +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/rlinebelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/rlinebelow.glif deleted file mode 100644 index 7f51565c..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/rlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/rmacrondotbelow.glif deleted file mode 100644 index 6b92163d..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/rmacrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/sacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/sacute.glif deleted file mode 100644 index 41eff704..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/sacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/scaron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/scaron.glif deleted file mode 100644 index a46e5917..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/scaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/scedilla.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/scedilla.glif deleted file mode 100644 index ebad03f5..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/scedilla.glif +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/schwa.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/schwa.glif deleted file mode 100644 index 389fd5f8..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/schwa.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/scircumflex.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/scircumflex.glif deleted file mode 100644 index d9410ecb..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/scircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/scommaaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/scommaaccent.glif deleted file mode 100644 index 07c41936..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/scommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/sdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/sdotbelow.glif deleted file mode 100644 index 28eaccd6..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/sdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/seven.num.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/seven.num.glif deleted file mode 100644 index 4a2870c3..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/seven.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/six.num.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/six.num.glif deleted file mode 100644 index 5de7ecf5..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/six.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tbar.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tbar.glif deleted file mode 100644 index 51a8d78e..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tbar.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tcaron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tcaron.glif deleted file mode 100644 index 861ed71b..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tcedilla.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tcedilla.glif deleted file mode 100644 index 6c55a43d..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tcedilla.glif +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tcircumflexbelow.glif deleted file mode 100644 index aa483e7b..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tcommaaccent.glif deleted file mode 100644 index b51aa034..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tdotbelow.glif deleted file mode 100644 index 3729cc46..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/thorn.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/thorn.glif deleted file mode 100644 index 60ef4f7e..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/thorn.glif +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/three.num.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/three.num.glif deleted file mode 100644 index a260e860..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/three.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tlinebelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tlinebelow.glif deleted file mode 100644 index 3f94c6bb..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/two.num.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/two.num.glif deleted file mode 100644 index 76a642f3..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/two.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uacute.glif deleted file mode 100644 index 0529f527..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ubreve.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ubreve.glif deleted file mode 100644 index bfcdc469..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ubreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ucaron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ucaron.glif deleted file mode 100644 index a9713488..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ucaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ucircumflex.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ucircumflex.glif deleted file mode 100644 index c203ca95..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ucircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/udieresis.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/udieresis.glif deleted file mode 100644 index 93421aa3..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/udieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/udieresisacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/udieresisacute.glif deleted file mode 100644 index 7d3d9b67..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/udieresisacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/udieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/udieresiscaron.glif deleted file mode 100644 index c23eae98..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/udieresiscaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/udieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/udieresisgrave.glif deleted file mode 100644 index 039bf674..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/udieresisgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/udieresismacron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/udieresismacron.glif deleted file mode 100644 index e743a4aa..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/udieresismacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/udotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/udotbelow.glif deleted file mode 100644 index 7a6d1750..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/udotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ugrave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ugrave.glif deleted file mode 100644 index d41e8b68..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ugrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhookabove.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhookabove.glif deleted file mode 100644 index a6144c91..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhorn.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhorn.glif deleted file mode 100644 index 0ec383fb..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhorn.glif +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhornacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhornacute.glif deleted file mode 100644 index c0016004..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhorndotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhorndotbelow.glif deleted file mode 100644 index 3dc0387e..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhorndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhorngrave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhorngrave.glif deleted file mode 100644 index b55dbcaf..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhorngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhornhookabove.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhornhookabove.glif deleted file mode 100644 index 69d666db..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhorntilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhorntilde.glif deleted file mode 100644 index 8d3a6195..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhorntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhungarumlaut.glif deleted file mode 100644 index 08fae415..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uhungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/umacron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/umacron.glif deleted file mode 100644 index 321fa8f9..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/umacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uni1E_9E_.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uni1E_9E_.glif deleted file mode 100644 index 0a2332ae..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uni1E_9E_.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uni2011.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uni2011.glif deleted file mode 100644 index cb2d7998..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uni2011.glif +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uogonek.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uogonek.glif deleted file mode 100644 index 99ec02dc..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uogonek.glif +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uring.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uring.glif deleted file mode 100644 index 91012aa7..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/utilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/utilde.glif deleted file mode 100644 index 3fe6c385..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/utilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/vdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/vdotbelow.glif deleted file mode 100644 index c5d385cf..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/vdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/wacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/wacute.glif deleted file mode 100644 index 3ac93c59..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/wacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/wcircumflex.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/wcircumflex.glif deleted file mode 100644 index 3434cad8..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/wcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/wdieresis.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/wdieresis.glif deleted file mode 100644 index b78258c2..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/wdieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/wgrave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/wgrave.glif deleted file mode 100644 index bd3a7b8b..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/wgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/xdieresis.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/xdieresis.glif deleted file mode 100644 index ae08705b..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/xdieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/yacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/yacute.glif deleted file mode 100644 index 2741cbab..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/yacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ycircumflex.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ycircumflex.glif deleted file mode 100644 index 1da72823..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ycircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ydieresis.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ydieresis.glif deleted file mode 100644 index 71dd3c33..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ydieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ydotaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ydotaccent.glif deleted file mode 100644 index 64670949..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ydotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ydotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ydotbelow.glif deleted file mode 100644 index c932cfcc..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ydotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ygrave.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ygrave.glif deleted file mode 100644 index b96ff331..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ygrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/yhookabove.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/yhookabove.glif deleted file mode 100644 index c3096409..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/yhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ymacron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ymacron.glif deleted file mode 100644 index 146ef1c1..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ymacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ytilde.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ytilde.glif deleted file mode 100644 index d6050ffb..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ytilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zacute.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zacute.glif deleted file mode 100644 index bdc08411..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zcaron.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zcaron.glif deleted file mode 100644 index e7ec7d76..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zcircumflex.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zcircumflex.glif deleted file mode 100644 index 3614f930..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zdotaccent.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zdotaccent.glif deleted file mode 100644 index facaf412..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zdotbelow.glif deleted file mode 100644 index cc431596..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zero.num.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zero.num.glif deleted file mode 100644 index eabd1785..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zero.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zlinebelow.glif b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zlinebelow.glif deleted file mode 100644 index e1a3feb0..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/lib.plist b/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/lib.plist deleted file mode 100644 index 6cee22db..00000000 --- a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/lib.plist +++ /dev/null @@ -1,1288 +0,0 @@ - - - - - com.typemytype.robofont.compileSettings.autohint - - com.typemytype.robofont.compileSettings.checkOutlines - - com.typemytype.robofont.compileSettings.createDummyDSIG - - com.typemytype.robofont.compileSettings.decompose - - com.typemytype.robofont.compileSettings.generateFormat - 1 - com.typemytype.robofont.compileSettings.releaseMode - 1 - com.typemytype.robofont.italicSlantOffset - 0 - com.typemytype.robofont.segmentType - curve - com.typemytype.robofont.shouldAddPointsInSplineConversion - 1 - public.glyphOrder - - .notdef - A - B - C - D - E - F - G - H - I - J - K - L - M - N - O - P - Q - R - S - T - U - V - W - X - Y - Z - a - b - c - d - e - f - g - h - i - j - k - l - m - n - o - p - q - r - s - t - u - v - w - x - y - z - period - comma - colon - semicolon - question - exclam - questiondown - exclamdown - ellipsis - twodotleader - quotedblleft - quotedblright - quotedblbase - quoteleft - quoteright - quotesinglbase - guillemetleft - guillemetright - guilsinglleft - guilsinglright - parenleft - parenright - bracketleft - bracketright - braceleft - braceright - slash - backslash - bar - hyphen - endash - emdash - periodcentered - bullet - underscore - ampersand - at - published - copyright - registered - servicemark - trademark - asterisk - dagger - daggerdbl - section - paragraph - zero - one - two - three - four - five - six - seven - eight - nine - colon.fig - plus - divide - minus - equal - notequal - asciitilde - approxequal - multiply - less - greater - lessequal - greaterequal - plusminus - asciicircum - mu - numbersign - percent - quotedbl - quotesingle - ordfeminine - ordmasculine - degree - dollar - sterling - yen - Euro - naira - peso - uni20BA - uni20BD - uni20B9 - bahtthai - won - cent - dong - onehalf - onethird - twothirds - onequarter - threequarters - onefifth - twofifths - threefifths - fourfifths - onesixth - fivesixths - oneeighth - threeeighths - fiveeighths - seveneighths - zero.sup - one.sup - two.sup - three.sup - four.sup - five.sup - six.sup - seven.sup - eight.sup - nine.sup - zero.inf - one.inf - two.inf - three.inf - four.inf - five.inf - six.inf - seven.inf - eight.inf - nine.inf - primemod - dblprimemod - commaturnedmod - apostrophemod - ringhalfleft - ringhalfright - verticallinemod - verticallinelowmod - acute - hungarumlaut - grave - circumflex - caron - breve - tilde - macron - dieresis - dotaccent - ring - uniA788 - macronlowmod - cedilla - ogonek - Aacute - Agrave - Acircumflex - Acircumflexdotbelow - Acircumflexacute - Acircumflexgrave - Acircumflexhookabove - Acircumflextilde - Acaron - Abreve - Abrevedotbelow - Abreveacute - Abrevegrave - Abrevehookabove - Abrevetilde - Atilde - Amacron - Adieresis - Adotaccent - Aring - Ahookabove - Adotbelow - Aogonek - AE - Blinebelow - Cacute - Ccircumflex - Ccaron - Cdotaccent - Ccedilla - Dcaron - Dcircumflexbelow - Dlinebelow - Ddotbelow - Dcroat - Eacute - Egrave - Ecircumflex - Ecircumflexdotbelow - Ecircumflexacute - Ecircumflexgrave - Ecircumflexhookabove - Ecircumflextilde - Ecaron - Ebreve - Etilde - Emacron - Edieresis - Edotaccent - Ehookabove - Edotbelow - Eogonek - Gcircumflex - Gcaron - Gbreve - Gmacron - Gdotaccent - Gcommaaccent - Hcircumflex - Hbrevebelow - Hdotbelow - Hcedilla - Hbar - Iacute - Igrave - Icircumflex - Icaron - Ibreve - Itilde - Imacron - Idieresis - Idotaccent - Ihookabove - Idotbelow - Iogonek - Jcircumflex - Klinebelow - Kcommaaccent - Kdotbelow - Lacute - Lcaron - Lcommaaccent - Lcircumflexbelow - Llinebelow - Lmacrondotbelow - Ldotbelow - L.dot - Lslash - Macute - Mdotaccent - Mdotbelow - Nacute - Ngrave - Ncaron - Ntilde - Ndotaccent - Ncircumflexbelow - Ncommaaccent - Ndotbelow - Nlinebelow - Eng - Oacute - Ohungarumlaut - Ograve - Ocircumflex - Ocircumflexdotbelow - Ocircumflexacute - Ocircumflexgrave - Ocircumflexhookabove - Ocircumflextilde - Ocaron - Obreve - Otilde - Omacron - Odieresis - Odotaccent - Ohookabove - Odotbelow - Oogonek - Oslash - OE - Ohorn - Ohornacute - Ohorngrave - Ohorntilde - Ohornhookabove - Ohorndotbelow - Racute - Rcaron - Rdotaccent - Rmacrondotbelow - Rcommaaccent - Rdotbelow - Rlinebelow - Sacute - Scircumflex - Scaron - Scommaaccent - Sdotbelow - Scedilla - uni1E9E - Tcaron - Tcircumflexbelow - Tcommaaccent - Tdotbelow - Tlinebelow - Tcedilla - Tbar - Uacute - Uhungarumlaut - Ugrave - Ucircumflex - Ucaron - Ubreve - Utilde - Umacron - Udieresis - Udieresisacute - Udieresisgrave - Udieresiscaron - Udieresismacron - Uring - Uhookabove - Udotbelow - Uogonek - Uhorn - Uhornacute - Uhorngrave - Uhorntilde - Uhornhookabove - Uhorndotbelow - Vdotbelow - Wacute - Wgrave - Wcircumflex - Wdieresis - Xdieresis - Yacute - Ygrave - Ycircumflex - Ytilde - Ymacron - Ydieresis - Ydotaccent - Yhookabove - Ydotbelow - Zacute - Zcircumflex - Zcaron - Zdotaccent - Zdotbelow - Zlinebelow - Eth - Thorn - Schwa - aacute - agrave - acircumflex - acircumflexdotbelow - acircumflexacute - acircumflexgrave - acircumflexhookabove - acircumflextilde - acaron - abreve - abrevedotbelow - abreveacute - abrevegrave - abrevehookabove - abrevetilde - atilde - amacron - adieresis - adotaccent - aring - ahookabove - adotbelow - aogonek - ae - blinebelow - cacute - ccircumflex - ccaron - cdotaccent - ccedilla - dcaron - dcircumflexbelow - dlinebelow - ddotbelow - dcroat - eacute - egrave - ecircumflex - ecircumflexdotbelow - ecircumflexacute - ecircumflexgrave - ecircumflexhookabove - ecircumflextilde - ecaron - ebreve - etilde - emacron - edieresis - edotaccent - ehookabove - edotbelow - eogonek - gcircumflex - gcaron - gbreve - gmacron - gdotaccent - gcommaaccent - hcircumflex - hbrevebelow - hlinebelow - hdotbelow - hcedilla - hbar - dotlessi - iacute - igrave - icircumflex - icaron - ibreve - itilde - imacron - idieresis - idotaccent - ihookabove - idotbelow - iogonek - dotlessj - jcircumflex - jcaron - klinebelow - kcommaaccent - kdotbelow - lacute - lcaron - lcommaaccent - lcircumflexbelow - llinebelow - lmacrondotbelow - ldotbelow - l.dot - lslash - macute - mdotaccent - mdotbelow - nacute - ngrave - ncaron - ntilde - ndotaccent - ncircumflexbelow - ncommaaccent - ndotbelow - nlinebelow - eng - oacute - ohungarumlaut - ograve - ocircumflex - ocircumflexdotbelow - ocircumflexacute - ocircumflexgrave - ocircumflexhookabove - ocircumflextilde - ocaron - obreve - otilde - omacron - odieresis - odotaccent - ohookabove - odotbelow - oogonek - oslash - oe - ohorn - ohornacute - ohorngrave - ohorntilde - ohornhookabove - ohorndotbelow - racute - rcaron - rdotaccent - rmacrondotbelow - rcommaaccent - rdotbelow - rlinebelow - sacute - scircumflex - scaron - scommaaccent - sdotbelow - scedilla - germandbls - tcaron - tcircumflexbelow - tcommaaccent - tdotbelow - tlinebelow - tcedilla - tbar - uacute - uhungarumlaut - ugrave - ucircumflex - ucaron - ubreve - utilde - umacron - udieresis - udieresisacute - udieresisgrave - udieresiscaron - udieresismacron - uring - uhookabove - udotbelow - uogonek - uhorn - uhornacute - uhorngrave - uhorntilde - uhornhookabove - uhorndotbelow - vdotbelow - wacute - wgrave - wcircumflex - wdieresis - xdieresis - yacute - ygrave - ycircumflex - ytilde - ymacron - ydieresis - ydotaccent - yhookabove - ydotbelow - zacute - zcircumflex - zcaron - zdotaccent - zdotbelow - zlinebelow - eth - thorn - schwa - space - uni00A0 - zero.num - one.num - two.num - three.num - four.num - five.num - six.num - seven.num - eight.num - nine.num - fraction - fracbar - zero.den - one.den - two.den - three.den - four.den - five.den - six.den - seven.den - eight.den - nine.den - uni2011 - horizontalbar - middotcat - middotcat.cap - acutecmb - hungarumlautcmb - gravecmb - commaaboverightcmb - circumflexcmb - caroncmb - brevecmb - tildecmb - macroncmb - dieresiscmb - dotaccentcmb - ringcmb - commaturnedabovecmb - hookcmb - circumflexbelowcmb - brevebelowcmb - macronbelowcmb - dieresisbelowcmb - dotbelowcmb - uni0326 - cedillacmb - ogonekcmb - dieresisacute - dieresisgrave - dieresiscaron - dieresismacron - breveacute - brevegrave - brevehook - brevetilde - circumflexacute - circumflexgrave - circumflexhook - circumflextilde - acutecmb.cap - hungarumlautcmb.cap - gravecmb.cap - circumflexcmb.cap - caroncmb.cap - brevecmb.cap - tildecmb.cap - macroncmb.cap - dieresiscmb.cap - dotaccentcmb.cap - ringcmb.cap - hookcmb.cap - dieresisacute.cap - dieresisgrave.cap - dieresiscaron.cap - dieresismacron.cap - breveacute.cap - brevegrave.cap - brevehook.cap - brevetilde.cap - circumflexacute.cap - circumflexgrave.cap - circumflexhook.cap - circumflextilde.cap - - public.postscriptNames - - Abreveacute - uni1EAE - Abrevedotbelow - uni1EB6 - Abrevegrave - uni1EB0 - Abrevehookabove - uni1EB2 - Abrevetilde - uni1EB4 - Acaron - uni01CD - Acircumflexacute - uni1EA4 - Acircumflexdotbelow - uni1EAC - Acircumflexgrave - uni1EA6 - Acircumflexhookabove - uni1EA8 - Acircumflextilde - uni1EAA - Adotaccent - uni0226 - Adotbelow - uni1EA0 - Ahookabove - uni1EA2 - Blinebelow - uni1E06 - Dcircumflexbelow - uni1E12 - Ddotbelow - uni1E0C - Dlinebelow - uni1E0E - Ecircumflexacute - uni1EBE - Ecircumflexdotbelow - uni1EC6 - Ecircumflexgrave - uni1EC0 - Ecircumflexhookabove - uni1EC2 - Ecircumflextilde - uni1EC4 - Edotbelow - uni1EB8 - Ehookabove - uni1EBA - Etilde - uni1EBC - Gcommaaccent - uni0122 - Gmacron - uni1E20 - Hbrevebelow - uni1E2A - Hcedilla - uni1E28 - Hdotbelow - uni1E24 - Icaron - uni01CF - Idotbelow - uni1ECA - Ihookabove - uni1EC8 - Kcommaaccent - uni0136 - Kdotbelow - uni1E32 - Klinebelow - uni1E34 - L.dot - Ldot - Lcircumflexbelow - uni1E3C - Lcommaaccent - uni013B - Ldotbelow - uni1E36 - Llinebelow - uni1E3A - Lmacrondotbelow - uni1E38 - Macute - uni1E3E - Mdotaccent - uni1E40 - Mdotbelow - uni1E42 - Ncircumflexbelow - uni1E4A - Ncommaaccent - uni0145 - Ndotaccent - uni1E44 - Ndotbelow - uni1E46 - Ngrave - uni01F8 - Nlinebelow - uni1E48 - Ocaron - uni01D1 - Ocircumflexacute - uni1ED0 - Ocircumflexdotbelow - uni1ED8 - Ocircumflexgrave - uni1ED2 - Ocircumflexhookabove - uni1ED4 - Ocircumflextilde - uni1ED6 - Odotaccent - uni022E - Odotbelow - uni1ECC - Ohookabove - uni1ECE - Ohornacute - uni1EDA - Ohorndotbelow - uni1EE2 - Ohorngrave - uni1EDC - Ohornhookabove - uni1EDE - Ohorntilde - uni1EE0 - Oogonek - uni01EA - Rcommaaccent - uni0156 - Rdotaccent - uni1E58 - Rdotbelow - uni1E5A - Rlinebelow - uni1E5E - Rmacrondotbelow - uni1E5C - Scedilla - uni015E - Schwa - uni018F - Scommaaccent - uni0218 - Sdotbelow - uni1E62 - Tcedilla - uni0162 - Tcircumflexbelow - uni1E70 - Tcommaaccent - uni021A - Tdotbelow - uni1E6C - Tlinebelow - uni1E6E - Ucaron - uni01D3 - Udieresisacute - uni01D7 - Udieresiscaron - uni01D9 - Udieresisgrave - uni01DB - Udieresismacron - uni01D5 - Udotbelow - uni1EE4 - Uhookabove - uni1EE6 - Uhornacute - uni1EE8 - Uhorndotbelow - uni1EF0 - Uhorngrave - uni1EEA - Uhornhookabove - uni1EEC - Uhorntilde - uni1EEE - Vdotbelow - uni1E7E - Xdieresis - uni1E8C - Ydotaccent - uni1E8E - Ydotbelow - uni1EF4 - Yhookabove - uni1EF6 - Ymacron - uni0232 - Ytilde - uni1EF8 - Zcircumflex - uni1E90 - Zdotbelow - uni1E92 - Zlinebelow - uni1E94 - abreveacute - uni1EAF - abrevedotbelow - uni1EB7 - abrevegrave - uni1EB1 - abrevehookabove - uni1EB3 - abrevetilde - uni1EB5 - acaron - uni01CE - acircumflexacute - uni1EA5 - acircumflexdotbelow - uni1EAD - acircumflexgrave - uni1EA7 - acircumflexhookabove - uni1EA9 - acircumflextilde - uni1EAB - acutecmb - uni0301 - acutecmb.cap - uni0301.cap - adotaccent - uni0227 - adotbelow - uni1EA1 - ahookabove - uni1EA3 - apostrophemod - uni02BC - bahtthai - uni0E3F - blinebelow - uni1E07 - breveacute - uni02D80301 - breveacute.cap - uni02D80301.cap - brevebelowcmb - uni032E - brevecmb - uni0306 - brevecmb.cap - uni0306.cap - brevegrave - uni02D80300 - brevegrave.cap - uni02D80300.cap - brevehook - uni02D80309 - brevehook.cap - uni02D80309.cap - brevetilde - uni02D80303 - brevetilde.cap - uni02D80303.cap - caroncmb - uni030C - caroncmb.cap - uni030C.cap - cedillacmb - uni0327 - circumflexacute - uni02C60301 - circumflexacute.cap - uni02C60301.cap - circumflexbelowcmb - uni032D - circumflexcmb - uni0302 - circumflexcmb.cap - uni0302.cap - circumflexgrave - uni02C60300 - circumflexgrave.cap - uni02C60300.cap - circumflexhook - uni02C60309 - circumflexhook.cap - uni02C60309.cap - circumflextilde - uni02C60303 - circumflextilde.cap - uni02C60303.cap - commaaboverightcmb - uni0315 - commaturnedabovecmb - uni0312 - commaturnedmod - uni02BB - dblprimemod - uni02BA - dcircumflexbelow - uni1E13 - ddotbelow - uni1E0D - dieresisacute - uni00A80301 - dieresisacute.cap - uni00A80301.cap - dieresisbelowcmb - uni0324 - dieresiscaron - uni00A8030C - dieresiscaron.cap - uni00A8030C.cap - dieresiscmb - uni0308 - dieresiscmb.cap - uni0308.cap - dieresisgrave - uni00A80300 - dieresisgrave.cap - uni00A80300.cap - dieresismacron - uni00A80304 - dieresismacron.cap - uni00A80304.cap - dlinebelow - uni1E0F - dotaccentcmb - uni0307 - dotaccentcmb.cap - uni0307.cap - dotbelowcmb - uni0323 - dotlessj - uni0237 - ecircumflexacute - uni1EBF - ecircumflexdotbelow - uni1EC7 - ecircumflexgrave - uni1EC1 - ecircumflexhookabove - uni1EC3 - ecircumflextilde - uni1EC5 - edotbelow - uni1EB9 - ehookabove - uni1EBB - etilde - uni1EBD - gcommaaccent - uni0123 - gmacron - uni1E21 - gravecmb - uni0300 - gravecmb.cap - uni0300.cap - guillemetleft - uni00AB - guillemetright - uni00BB - hbrevebelow - uni1E2B - hcedilla - uni1E29 - hdotbelow - uni1E25 - hlinebelow - uni1E96 - hookcmb - uni0309 - hookcmb.cap - uni0309.cap - horizontalbar - uni2015 - hungarumlautcmb - uni030B - hungarumlautcmb.cap - uni030B.cap - icaron - uni01D0 - idotaccent - i.dot - idotbelow - uni1ECB - ihookabove - uni1EC9 - jcaron - uni01F0 - kcommaaccent - uni0137 - kdotbelow - uni1E33 - klinebelow - uni1E35 - l.dot - ldot - lcircumflexbelow - uni1E3D - lcommaaccent - uni013C - ldotbelow - uni1E37 - llinebelow - uni1E3B - lmacrondotbelow - uni1E39 - macronbelowcmb - uni0331 - macroncmb - uni0304 - macroncmb.cap - uni0304.cap - macronlowmod - uni02CD - macute - uni1E3F - mdotaccent - uni1E41 - mdotbelow - uni1E43 - naira - uni20A6 - ncircumflexbelow - uni1E4B - ncommaaccent - uni0146 - ndotaccent - uni1E45 - ndotbelow - uni1E47 - ngrave - uni01F9 - nlinebelow - uni1E49 - ocaron - uni01D2 - ocircumflexacute - uni1ED1 - ocircumflexdotbelow - uni1ED9 - ocircumflexgrave - uni1ED3 - ocircumflexhookabove - uni1ED5 - ocircumflextilde - uni1ED7 - odotaccent - uni022F - odotbelow - uni1ECD - ogonekcmb - uni0328 - ohookabove - uni1ECF - ohornacute - uni1EDB - ohorndotbelow - uni1EE3 - ohorngrave - uni1EDD - ohornhookabove - uni1EDF - ohorntilde - uni1EE1 - oogonek - uni01EB - peso - uni20B1 - primemod - uni02B9 - published - uni2117 - rcommaaccent - uni0157 - rdotaccent - uni1E59 - rdotbelow - uni1E5B - ringcmb - uni030A - ringcmb.cap - uni030A.cap - ringhalfleft - uni02BF - ringhalfright - uni02BE - rlinebelow - uni1E5F - rmacrondotbelow - uni1E5D - scedilla - uni015F - schwa - uni0259 - scommaaccent - uni0219 - sdotbelow - uni1E63 - servicemark - uni2120 - tcedilla - uni0163 - tcircumflexbelow - uni1E71 - tcommaaccent - uni021B - tdotbelow - uni1E6D - tildecmb - uni0303 - tildecmb.cap - uni0303.cap - tlinebelow - uni1E6F - twodotleader - uni2025 - ucaron - uni01D4 - udieresisacute - uni01D8 - udieresiscaron - uni01DA - udieresisgrave - uni01DC - udieresismacron - uni01D6 - udotbelow - uni1EE5 - uhookabove - uni1EE7 - uhornacute - uni1EE9 - uhorndotbelow - uni1EF1 - uhorngrave - uni1EEB - uhornhookabove - uni1EED - uhorntilde - uni1EEF - uni1E9E - uni1E9E - vdotbelow - uni1E7F - verticallinelowmod - uni02CC - verticallinemod - uni02C8 - won - uni20A9 - xdieresis - uni1E8D - ydotaccent - uni1E8F - ydotbelow - uni1EF5 - yhookabove - uni1EF7 - ymacron - uni0233 - ytilde - uni1EF9 - zcircumflex - uni1E91 - zdotbelow - uni1E93 - zlinebelow - uni1E95 - - - diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/features.fea b/sources/instances/truetype/IntelOneMono-Light.ufo/features.fea new file mode 100644 index 00000000..a4caf8e4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/features.fea @@ -0,0 +1,6 @@ + +include(../../features/shared.fea); + +include(../../features/mark/IntelOneMono-Light mark.fea); + +include(../../features/aalt.fea); diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/fontinfo.plist b/sources/instances/truetype/IntelOneMono-Light.ufo/fontinfo.plist new file mode 100644 index 00000000..4eb9df50 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/fontinfo.plist @@ -0,0 +1,407 @@ + + + + + ascender + 740 + capHeight + 655 + copyright + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + descender + -260 + familyName + Intel One Mono + guidelines + + italicAngle + 0.0 + openTypeHeadFlags + + 0 + 1 + + openTypeHheaAscender + 1090 + openTypeHheaDescender + -290 + openTypeHheaLineGap + 0 + openTypeNameDesigner + Fred Shallcrass + openTypeNameDesignerURL + http://frerejones.com + openTypeNameLicense + This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL + openTypeNameLicenseURL + https://github.com/intel/intel-one-mono/blob/main/license + openTypeNameManufacturer + Frere-Jones Type LLC + openTypeNameManufacturerURL + http://frerejones.com + openTypeNamePreferredFamilyName + Intel One Mono + openTypeNamePreferredSubfamilyName + Light + openTypeNameRecords + + + encodingID + 0 + languageID + 0 + nameID + 0 + platformID + 1 + string + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + + + encodingID + 1 + languageID + 1033 + nameID + 0 + platformID + 3 + string + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + + + encodingID + 0 + languageID + 0 + nameID + 1 + platformID + 1 + string + Intel One Mono Light + + + encodingID + 1 + languageID + 1033 + nameID + 1 + platformID + 3 + string + Intel One Mono Light + + + encodingID + 0 + languageID + 0 + nameID + 2 + platformID + 1 + string + Regular + + + encodingID + 1 + languageID + 1033 + nameID + 2 + platformID + 3 + string + Regular + + + encodingID + 0 + languageID + 0 + nameID + 4 + platformID + 1 + string + Intel One Mono Light + + + encodingID + 1 + languageID + 1033 + nameID + 4 + platformID + 3 + string + Intel One Mono Light + + + encodingID + 0 + languageID + 0 + nameID + 6 + platformID + 1 + string + IntelOneMono-Light + + + encodingID + 1 + languageID + 1033 + nameID + 6 + platformID + 3 + string + IntelOneMono-Light + + + encodingID + 0 + languageID + 0 + nameID + 8 + platformID + 1 + string + Frere-Jones Type LLC + + + encodingID + 1 + languageID + 1033 + nameID + 8 + platformID + 3 + string + Frere-Jones Type LLC + + + encodingID + 0 + languageID + 0 + nameID + 9 + platformID + 1 + string + Fred Shallcrass + + + encodingID + 1 + languageID + 1033 + nameID + 9 + platformID + 3 + string + Fred Shallcrass + + + encodingID + 0 + languageID + 0 + nameID + 11 + platformID + 1 + string + http://frerejones.com + + + encodingID + 1 + languageID + 1033 + nameID + 11 + platformID + 3 + string + http://frerejones.com + + + encodingID + 0 + languageID + 0 + nameID + 12 + platformID + 1 + string + http://frerejones.com + + + encodingID + 1 + languageID + 1033 + nameID + 12 + platformID + 3 + string + http://frerejones.com + + + encodingID + 1 + languageID + 1033 + nameID + 16 + platformID + 3 + string + Intel One Mono + + + encodingID + 1 + languageID + 1033 + nameID + 17 + platformID + 3 + string + Light + + + openTypeOS2CodePageRanges + + 0 + 1 + 4 + 7 + 8 + 29 + + openTypeOS2Panose + + 2 + 11 + 4 + 9 + 2 + 2 + 3 + 2 + 2 + 4 + + openTypeOS2Selection + + 7 + 8 + + openTypeOS2StrikeoutPosition + 286 + openTypeOS2StrikeoutSize + 50 + openTypeOS2Type + + openTypeOS2TypoAscender + 1090 + openTypeOS2TypoDescender + -290 + openTypeOS2TypoLineGap + 0 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 29 + 32 + + openTypeOS2VendorID + FRJN + openTypeOS2WeightClass + 300 + openTypeOS2WidthClass + 5 + openTypeOS2WinAscent + 1090 + openTypeOS2WinDescent + 290 + postscriptBlueFuzz + 0 + postscriptBlueScale + 0.05 + postscriptBlueValues + + -15 + 0 + 460 + 475 + 655 + 670 + 710 + 725 + + postscriptDefaultWidthX + 614 + postscriptFamilyBlues + + postscriptFamilyOtherBlues + + postscriptFontName + IntelOneMono-Light + postscriptForceBold + + postscriptFullName + Intel One Mono Light + postscriptIsFixedPitch + + postscriptOtherBlues + + -245 + -230 + + postscriptStemSnapH + + 50 + + postscriptStemSnapV + + 59 + + postscriptUnderlinePosition + -75 + postscriptUnderlineThickness + 50 + styleMapFamilyName + Intel One Mono Light + styleMapStyleName + regular + styleName + Light + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 4 + xHeight + 460 + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_E_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_E_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_E_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_E_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_acute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_acute.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_breve.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_breve.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_breveacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_breveacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_breveacute.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_breveacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_brevedotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_brevedotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_brevedotbelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_brevedotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_brevegrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_brevegrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_brevegrave.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_brevegrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_brevehookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_brevehookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_brevehookabove.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_brevehookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_brevetilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_brevetilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_brevetilde.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_brevetilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_caron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_caron.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_circumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_circumflexdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_circumflexdotbelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_circumflexdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_circumflexhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_circumflexhookabove.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_circumflexhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_circumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_circumflextilde.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_circumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_dieresis.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_dieresis.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_grave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_grave.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_hookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_hookabove.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_macron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_macron.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_ogonek.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_ogonek.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_ring.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_ring.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_ring.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_ring.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_tilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/A_tilde.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/A_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/B_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/B_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/B_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/B_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/B_linebelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/B_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/B_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/B_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/C_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/C_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/C_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/C_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/C_acute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/C_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/C_acute.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/C_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/C_caron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/C_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/C_caron.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/C_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/C_cedilla.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/C_cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/C_cedilla.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/C_cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/C_circumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/C_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/C_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/C_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/C_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/C_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/C_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/C_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/D_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/D_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/D_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/D_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/D_caron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/D_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/D_caron.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/D_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/D_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/D_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/D_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/D_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/D_croat.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/D_croat.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/D_croat.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/D_croat.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/D_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/D_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/D_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/D_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/D_linebelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/D_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/D_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/D_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_acute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_acute.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_breve.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_breve.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_caron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_caron.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_circumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_circumflexdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_circumflexdotbelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_circumflexdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_circumflexhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_circumflexhookabove.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_circumflexhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_circumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_circumflextilde.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_circumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_dieresis.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_dieresis.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_grave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_grave.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_hookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_hookabove.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_macron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_macron.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_ng.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_ng.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_ng.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_ng.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_ogonek.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_ogonek.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_th.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_th.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_th.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_th.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_tilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_tilde.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_uro.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_uro.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/E_uro.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/E_uro.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/F_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/F_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/F_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/F_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/G_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/G_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/G_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/G_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/G_breve.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/G_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/G_breve.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/G_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/G_caron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/G_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/G_caron.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/G_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/G_circumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/G_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/G_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/G_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/G_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/G_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/G_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/G_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/G_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/G_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/G_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/G_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/G_macron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/G_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/G_macron.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/G_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/H_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/H_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/H_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/H_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/H_bar.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/H_bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/H_bar.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/H_bar.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/H_brevebelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/H_brevebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/H_brevebelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/H_brevebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/H_cedilla.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/H_cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/H_cedilla.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/H_cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/H_circumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/H_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/H_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/H_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/H_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/H_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/H_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/H_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_acute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_acute.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_breve.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_breve.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_caron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_caron.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_circumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_dieresis.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_dieresis.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_grave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_grave.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_hookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_hookabove.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_macron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_macron.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_ogonek.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_ogonek.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_tilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/I_tilde.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/I_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/J_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/J_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/J_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/J_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/J_circumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/J_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/J_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/J_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/K_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/K_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/K_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/K_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/K_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/K_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/K_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/K_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/K_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/K_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/K_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/K_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/K_linebelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/K_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/K_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/K_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_.dot.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_.dot.glif new file mode 100644 index 00000000..56904b1e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_.dot.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + public.objectLibs + + component0 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + component1 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + component2 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + + public.truetype.overlap + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_acute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_acute.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_caron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_caron.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_linebelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_macrondotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_macrondotbelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_macrondotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_slash.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_slash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/L_slash.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/L_slash.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/M_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/M_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/M_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/M_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/M_acute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/M_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/M_acute.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/M_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/M_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/M_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/M_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/M_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/M_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/M_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/M_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/M_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/N_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/N_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/N_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/N_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/N_acute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/N_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/N_acute.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/N_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/N_caron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/N_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/N_caron.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/N_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/N_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/N_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/N_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/N_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/N_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/N_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/N_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/N_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/N_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/N_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/N_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/N_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/N_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/N_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/N_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/N_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/N_grave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/N_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/N_grave.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/N_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/N_linebelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/N_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/N_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/N_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/N_tilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/N_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/N_tilde.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/N_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_E_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..ca763f6d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_E_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_acute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_acute.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_breve.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..7e12cf5e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_breve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_caron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_caron.glif new file mode 100644 index 00000000..5af071a0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_circumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..6a3eb8b4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_circumflexacute.glif new file mode 100644 index 00000000..78811a4c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_circumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_circumflexdotbelow.glif new file mode 100644 index 00000000..5ce7667f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_circumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_circumflexgrave.glif new file mode 100644 index 00000000..10c2e807 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_circumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_circumflexhookabove.glif new file mode 100644 index 00000000..16136d20 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_circumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_circumflextilde.glif new file mode 100644 index 00000000..68aeb395 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_circumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_dieresis.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..0a9e8725 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_dotaccent.glif new file mode 100644 index 00000000..14c297f8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_dotbelow.glif new file mode 100644 index 00000000..0ceb1922 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_grave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_grave.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_hookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_hookabove.glif new file mode 100644 index 00000000..0da85244 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_horn.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_horn.glif new file mode 100644 index 00000000..e2a7607e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_horn.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_hornacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_hornacute.glif new file mode 100644 index 00000000..a6e66066 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_hornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_horndotbelow.glif new file mode 100644 index 00000000..10cd597d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_horndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_horngrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_horngrave.glif new file mode 100644 index 00000000..23ee1fef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_horngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_hornhookabove.glif new file mode 100644 index 00000000..c9497cd7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_hornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_horntilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_horntilde.glif new file mode 100644 index 00000000..79c11284 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_horntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_hungarumlaut.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/O_hungarumlaut.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_hungarumlaut.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_macron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..ebc99b21 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_ogonek.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_ogonek.glif new file mode 100644 index 00000000..f7c20806 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_ogonek.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_slash.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..b3b5d9be --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_slash.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_tilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..91a94f52 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/O_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/P_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/P_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/P_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/P_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Q_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Q_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Q_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Q_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/R_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_acute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..f2d952e5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_caron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..d2dc80bc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..0f4055ef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_dotaccent.glif new file mode 100644 index 00000000..439ef413 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_dotbelow.glif new file mode 100644 index 00000000..9b3c5943 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_linebelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_linebelow.glif new file mode 100644 index 00000000..c3e78a70 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_macrondotbelow.glif new file mode 100644 index 00000000..25cc748c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/R_macrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/S_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_acute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..84939c1d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_caron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..16afee9b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_cedilla.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..4199758d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_chwa.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..29988857 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_chwa.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_circumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..7dad0fd1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..f0017542 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_dotbelow.glif new file mode 100644 index 00000000..3094b469 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/S_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_bar.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/T_bar.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_bar.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_caron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..23d20008 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_cedilla.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..f0995b2c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_circumflexbelow.glif new file mode 100644 index 00000000..04e62723 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_circumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..8efd5833 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_dotbelow.glif new file mode 100644 index 00000000..3d102e5d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_horn.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..9e6858d5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_horn.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_linebelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_linebelow.glif new file mode 100644 index 00000000..7c07de34 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/T_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/U_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_acute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..b0b6e168 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_breve.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..9eba3d7f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_breve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_caron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_caron.glif new file mode 100644 index 00000000..be0f3c37 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_circumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..56808f64 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_dieresis.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..c558bf10 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_dieresisacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_dieresisacute.glif new file mode 100644 index 00000000..e5cbbe3c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_dieresisacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_dieresiscaron.glif new file mode 100644 index 00000000..dc2ff1ac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_dieresiscaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_dieresisgrave.glif new file mode 100644 index 00000000..b227a449 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_dieresisgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_dieresismacron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_dieresismacron.glif new file mode 100644 index 00000000..3d8c49b3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_dieresismacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_dotbelow.glif new file mode 100644 index 00000000..d2f0ef86 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_grave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..debff763 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_hookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_hookabove.glif new file mode 100644 index 00000000..fccb10eb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_horn.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_horn.glif new file mode 100644 index 00000000..a3d25c86 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_horn.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_hornacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_hornacute.glif new file mode 100644 index 00000000..7e948009 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_hornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_horndotbelow.glif new file mode 100644 index 00000000..eb199a1c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_horndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_horngrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_horngrave.glif new file mode 100644 index 00000000..e2fae54b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_horngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_hornhookabove.glif new file mode 100644 index 00000000..fd1cf394 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_hornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_horntilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_horntilde.glif new file mode 100644 index 00000000..a348994a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_horntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..f97071b4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_macron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..f40fd627 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_ogonek.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..f7def733 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_ring.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..f5aa731d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_ring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_tilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..7a348d5c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/U_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/V_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/V_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/V_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/V_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/V_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/V_dotbelow.glif new file mode 100644 index 00000000..9d585952 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/V_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/W_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/W_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/W_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/W_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/W_acute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..e279689d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/W_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/W_circumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..0593fed6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/W_dieresis.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..a513fa2d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/W_grave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..b7532bf3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/W_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/X_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/X_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/X_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/X_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/X_dieresis.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/X_dieresis.glif new file mode 100644 index 00000000..812f5e70 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/X_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Y_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_acute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..846e3aef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_circumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..5c4451fe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_dieresis.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..051bf59a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_dotaccent.glif new file mode 100644 index 00000000..704ef311 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_dotbelow.glif new file mode 100644 index 00000000..1c53ebab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_grave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_grave.glif new file mode 100644 index 00000000..528fea8b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_hookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_hookabove.glif new file mode 100644 index 00000000..6923487f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_macron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_macron.glif new file mode 100644 index 00000000..62a98467 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_tilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_tilde.glif new file mode 100644 index 00000000..b43dfe48 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Y_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Z_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Z_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/Z_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Z_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Z_acute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..2b3a535d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Z_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Z_caron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..12b6cf12 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Z_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Z_circumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Z_circumflex.glif new file mode 100644 index 00000000..4ac0cd6f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Z_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Z_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..bd30fee0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Z_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Z_dotbelow.glif new file mode 100644 index 00000000..debeb16d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Z_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Z_linebelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Z_linebelow.glif new file mode 100644 index 00000000..4de7aa11 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/Z_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/_notdef.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/_notdef.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/_notdef.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/_notdef.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/a.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/a.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/a.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/a.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/aacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..6ec2bb3e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/aacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/abreve.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..e310ab41 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/abreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/abreveacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/abreveacute.glif new file mode 100644 index 00000000..3702a84f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/abreveacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/abrevedotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/abrevedotbelow.glif new file mode 100644 index 00000000..c068ee13 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/abrevedotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/abrevegrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/abrevegrave.glif new file mode 100644 index 00000000..f331d058 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/abrevegrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/abrevehookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/abrevehookabove.glif new file mode 100644 index 00000000..f48ec024 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/abrevehookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/abrevetilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/abrevetilde.glif new file mode 100644 index 00000000..ef1d0891 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/abrevetilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acaron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..cc1af59f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acircumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..11c405fe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acircumflexacute.glif new file mode 100644 index 00000000..79a43bad --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acircumflexdotbelow.glif new file mode 100644 index 00000000..3c43ea5c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acircumflexgrave.glif new file mode 100644 index 00000000..7d93503f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acircumflexhookabove.glif new file mode 100644 index 00000000..7358f8c3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acircumflextilde.glif new file mode 100644 index 00000000..976e0c63 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acute.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acutecmb.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acutecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acutecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acutecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acutecmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acutecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/acutecmb.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/acutecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/adieresis.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..58374846 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/adieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/adotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/adotaccent.glif new file mode 100644 index 00000000..0ece23ac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/adotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/adotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/adotbelow.glif new file mode 100644 index 00000000..7a69aeb8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/adotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ae.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ae.glif new file mode 100644 index 00000000..81c6b43e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ae.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/agrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..a6568770 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/agrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ahookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ahookabove.glif new file mode 100644 index 00000000..263e8963 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ahookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/amacron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..0bf2f142 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/amacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ampersand.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ampersand.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ampersand.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ampersand.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ampersand_ampersand.liga.glif new file mode 100644 index 00000000..a27afed7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ampersand_ampersand.liga.glif @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/aogonek.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..03434db0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/aogonek.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/apostrophemod.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/apostrophemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/apostrophemod.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/apostrophemod.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/approxequal.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/approxequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/approxequal.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/approxequal.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/aring.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/aring.glif new file mode 100644 index 00000000..144c7ed9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/aring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/asciicircum.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciicircum.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/asciicircum.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciicircum.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciicircum_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciicircum_equal.liga.glif new file mode 100644 index 00000000..688b9914 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciicircum_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/asciitilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciitilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/asciitilde.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciitilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..9dc25577 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciitilde_asciitilde.liga.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciitilde_asciitilde_greater.glif new file mode 100644 index 00000000..a10a1c02 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciitilde_asciitilde_greater.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciitilde_at.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciitilde_at.liga.glif new file mode 100644 index 00000000..8321a368 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciitilde_at.liga.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciitilde_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciitilde_greater.liga.glif new file mode 100644 index 00000000..720afdf9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciitilde_greater.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciitilde_hyphen.liga.glif new file mode 100644 index 00000000..fd5d4d49 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asciitilde_hyphen.liga.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/asterisk.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asterisk.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/asterisk.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asterisk.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asterisk_asterisk.liga.glif new file mode 100644 index 00000000..fa994cdc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asterisk_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif new file mode 100644 index 00000000..b73033c9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asterisk_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asterisk_greater.liga.glif new file mode 100644 index 00000000..4161bf75 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asterisk_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asterisk_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asterisk_slash.liga.glif new file mode 100644 index 00000000..82b419d8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/asterisk_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/at.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/at.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/at.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/at.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/atilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..2f6ec511 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/atilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/b.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/b.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/b.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/b.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/backslash.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/backslash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/backslash.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/backslash.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/backslash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/backslash_slash.liga.glif new file mode 100644 index 00000000..f5a8e157 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/backslash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/bahtthai.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bahtthai.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/bahtthai.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bahtthai.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/bar.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/bar.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar.liga.glif new file mode 100644 index 00000000..6e09a289 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_bar.liga.glif new file mode 100644 index 00000000..dc1b5564 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_bar.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_bar_greater.liga.glif new file mode 100644 index 00000000..2ba452b7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_bar_greater.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_equal.liga.glif new file mode 100644 index 00000000..926a31d3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_equal.start.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_equal.start.glif new file mode 100644 index 00000000..7c60f4fd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_greater.liga.glif new file mode 100644 index 00000000..aeb718a7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_greater.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_hyphen.liga.glif new file mode 100644 index 00000000..44940e77 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_hyphen.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_hyphen.start.glif new file mode 100644 index 00000000..4589f222 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bar_hyphen.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_braceright.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_braceright.liga.glif new file mode 100644 index 00000000..baca1948 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_braceright.liga.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bracketright.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bracketright.liga.glif new file mode 100644 index 00000000..1a950d32 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_bracketright.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_equal.liga.glif new file mode 100644 index 00000000..b53d8156 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_equal.start.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_equal.start.glif new file mode 100644 index 00000000..bca600a5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_greater.liga.glif new file mode 100644 index 00000000..76a87feb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_hyphen.liga.glif new file mode 100644 index 00000000..8a4c8bf9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_hyphen.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_hyphen.start.glif new file mode 100644 index 00000000..6d5fe6b5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bar_hyphen.start.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/blinebelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/blinebelow.glif new file mode 100644 index 00000000..bfcd2eef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/blinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/braceleft.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/braceleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/braceleft.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/braceleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/braceleft_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/braceleft_bar.liga.glif new file mode 100644 index 00000000..d68cd039 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/braceleft_bar.liga.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/braceright.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/braceright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/braceright.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/braceright.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/bracketleft.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bracketleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/bracketleft.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bracketleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bracketleft_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bracketleft_bar.liga.glif new file mode 100644 index 00000000..6a19862a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bracketleft_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/bracketright.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bracketright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/bracketright.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bracketright.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bracketright_numbersign.liga.glif new file mode 100644 index 00000000..fd5c5373 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bracketright_numbersign.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/breve.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/breve.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/breveacute.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/breveacute.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/breveacute.cap.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/breveacute.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/breveacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/breveacute.glif new file mode 100644 index 00000000..3134dc55 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/breveacute.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevebelowcmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevebelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevebelowcmb.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevebelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevecmb.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevecmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevecmb.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevegrave.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevegrave.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevegrave.cap.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevegrave.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevegrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevegrave.glif new file mode 100644 index 00000000..1953294e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevegrave.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevehook.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevehook.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevehook.cap.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevehook.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevehook.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevehook.glif new file mode 100644 index 00000000..68daec48 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevehook.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevetilde.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevetilde.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/brevetilde.cap.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevetilde.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevetilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevetilde.glif new file mode 100644 index 00000000..1e77143f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/brevetilde.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/bullet.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bullet.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/bullet.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/bullet.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/c.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/c.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/c.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/c.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/cacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..1358ca2c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/cacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/caron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/caron.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/caroncmb.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/caroncmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/caroncmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/caroncmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/caroncmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/caroncmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/caroncmb.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/caroncmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ccaron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..f44f206f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ccaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ccedilla.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..e6a1a28f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ccedilla.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ccircumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..c2aee288 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/cdotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..509a270b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/cedilla.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/cedilla.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/cedillacmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/cedillacmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/cedillacmb.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/cedillacmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/cent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/cent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/cent.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/cent.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflex.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflexacute.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflexacute.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflexacute.cap.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflexacute.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflexbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflexbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflexbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflexbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflexcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflexcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflexcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflexcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflexcmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflexcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflexcmb.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflexcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflexgrave.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflexgrave.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflexgrave.cap.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflexgrave.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflexhook.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflexhook.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflexhook.cap.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflexhook.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflexhook.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflexhook.glif new file mode 100644 index 00000000..dee4e27c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflexhook.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflextilde.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflextilde.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/circumflextilde.cap.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflextilde.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflextilde.glif new file mode 100644 index 00000000..a538d7f1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/circumflextilde.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/colon.fig.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon.fig.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/colon.fig.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon.fig.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/colon.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/colon.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon_colon.liga.glif new file mode 100644 index 00000000..f92822aa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon_colon_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon_colon_colon.liga.glif new file mode 100644 index 00000000..b91d9647 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon_colon_colon.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon_colon_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon_colon_equal.liga.glif new file mode 100644 index 00000000..b930b2d0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon_colon_equal.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon_equal.liga.glif new file mode 100644 index 00000000..571a05e8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon_greater.liga.glif new file mode 100644 index 00000000..07543ede --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon_greater.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon_less.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon_less.liga.glif new file mode 100644 index 00000000..a3220911 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/colon_less.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/comma.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/comma.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/comma.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/comma.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/commaaboverightcmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/commaaboverightcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/commaaboverightcmb.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/commaaboverightcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/commaturnedabovecmb.glif new file mode 100644 index 00000000..78f7ae2f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/commaturnedabovecmb.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/commaturnedmod.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/commaturnedmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/commaturnedmod.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/commaturnedmod.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/contents.plist b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/contents.plist new file mode 100644 index 00000000..10a2ded8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/contents.plist @@ -0,0 +1,2092 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + AE + A_E_.glif + Aacute + A_acute.glif + Abreve + A_breve.glif + Abreveacute + A_breveacute.glif + Abrevedotbelow + A_brevedotbelow.glif + Abrevegrave + A_brevegrave.glif + Abrevehookabove + A_brevehookabove.glif + Abrevetilde + A_brevetilde.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflexacute + A_circumflexacute.glif + Acircumflexdotbelow + A_circumflexdotbelow.glif + Acircumflexgrave + A_circumflexgrave.glif + Acircumflexhookabove + A_circumflexhookabove.glif + Acircumflextilde + A_circumflextilde.glif + Adieresis + A_dieresis.glif + Adotaccent + A_dotaccent.glif + Adotbelow + A_dotbelow.glif + Agrave + A_grave.glif + Ahookabove + A_hookabove.glif + Amacron + A_macron.glif + Aogonek + A_ogonek.glif + Aring + A_ring.glif + Atilde + A_tilde.glif + B + B_.glif + Blinebelow + B_linebelow.glif + C + C_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + D + D_.glif + Dcaron + D_caron.glif + Dcircumflexbelow + D_circumflexbelow.glif + Dcroat + D_croat.glif + Ddotbelow + D_dotbelow.glif + Dlinebelow + D_linebelow.glif + E + E_.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Ecircumflexacute + E_circumflexacute.glif + Ecircumflexdotbelow + E_circumflexdotbelow.glif + Ecircumflexgrave + E_circumflexgrave.glif + Ecircumflexhookabove + E_circumflexhookabove.glif + Ecircumflextilde + E_circumflextilde.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Edotbelow + E_dotbelow.glif + Egrave + E_grave.glif + Ehookabove + E_hookabove.glif + Emacron + E_macron.glif + Eng + E_ng.glif + Eogonek + E_ogonek.glif + Eth + E_th.glif + Etilde + E_tilde.glif + Euro + E_uro.glif + F + F_.glif + G + G_.glif + Gbreve + G_breve.glif + Gcaron + G_caron.glif + Gcircumflex + G_circumflex.glif + Gcommaaccent + G_commaaccent.glif + Gdotaccent + G_dotaccent.glif + Gmacron + G_macron.glif + H + H_.glif + Hbar + H_bar.glif + Hbrevebelow + H_brevebelow.glif + Hcedilla + H_cedilla.glif + Hcircumflex + H_circumflex.glif + Hdotbelow + H_dotbelow.glif + I + I_.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icaron + I_caron.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idotaccent + I_dotaccent.glif + Idotbelow + I_dotbelow.glif + Igrave + I_grave.glif + Ihookabove + I_hookabove.glif + Imacron + I_macron.glif + Iogonek + I_ogonek.glif + Itilde + I_tilde.glif + J + J_.glif + Jcircumflex + J_circumflex.glif + K + K_.glif + Kcommaaccent + K_commaaccent.glif + Kdotbelow + K_dotbelow.glif + Klinebelow + K_linebelow.glif + L + L_.glif + L.dot + L_.dot.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcircumflexbelow + L_circumflexbelow.glif + Lcommaaccent + L_commaaccent.glif + Ldotbelow + L_dotbelow.glif + Llinebelow + L_linebelow.glif + Lmacrondotbelow + L_macrondotbelow.glif + Lslash + L_slash.glif + M + M_.glif + Macute + M_acute.glif + Mdotaccent + M_dotaccent.glif + Mdotbelow + M_dotbelow.glif + N + N_.glif + Nacute + N_acute.glif + Ncaron + N_caron.glif + Ncircumflexbelow + N_circumflexbelow.glif + Ncommaaccent + N_commaaccent.glif + Ndotaccent + N_dotaccent.glif + Ndotbelow + N_dotbelow.glif + Ngrave + N_grave.glif + Nlinebelow + N_linebelow.glif + Ntilde + N_tilde.glif + O + O_.glif + OE + O_E_.glif + Oacute + O_acute.glif + Obreve + O_breve.glif + Ocaron + O_caron.glif + Ocircumflex + O_circumflex.glif + Ocircumflexacute + O_circumflexacute.glif + Ocircumflexdotbelow + O_circumflexdotbelow.glif + Ocircumflexgrave + O_circumflexgrave.glif + Ocircumflexhookabove + O_circumflexhookabove.glif + Ocircumflextilde + O_circumflextilde.glif + Odieresis + O_dieresis.glif + Odotaccent + O_dotaccent.glif + Odotbelow + O_dotbelow.glif + Ograve + O_grave.glif + Ohookabove + O_hookabove.glif + Ohorn + O_horn.glif + Ohornacute + O_hornacute.glif + Ohorndotbelow + O_horndotbelow.glif + Ohorngrave + O_horngrave.glif + Ohornhookabove + O_hornhookabove.glif + Ohorntilde + O_horntilde.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Oogonek + O_ogonek.glif + Oslash + O_slash.glif + Otilde + O_tilde.glif + P + P_.glif + Q + Q_.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Rdotaccent + R_dotaccent.glif + Rdotbelow + R_dotbelow.glif + Rlinebelow + R_linebelow.glif + Rmacrondotbelow + R_macrondotbelow.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Sdotbelow + S_dotbelow.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tcircumflexbelow + T_circumflexbelow.glif + Tcommaaccent + T_commaaccent.glif + Tdotbelow + T_dotbelow.glif + Thorn + T_horn.glif + Tlinebelow + T_linebelow.glif + U + U_.glif + Uacute + U_acute.glif + Ubreve + U_breve.glif + Ucaron + U_caron.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresisacute + U_dieresisacute.glif + Udieresiscaron + U_dieresiscaron.glif + Udieresisgrave + U_dieresisgrave.glif + Udieresismacron + U_dieresismacron.glif + Udotbelow + U_dotbelow.glif + Ugrave + U_grave.glif + Uhookabove + U_hookabove.glif + Uhorn + U_horn.glif + Uhornacute + U_hornacute.glif + Uhorndotbelow + U_horndotbelow.glif + Uhorngrave + U_horngrave.glif + Uhornhookabove + U_hornhookabove.glif + Uhorntilde + U_horntilde.glif + Uhungarumlaut + U_hungarumlaut.glif + Umacron + U_macron.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Utilde + U_tilde.glif + V + V_.glif + Vdotbelow + V_dotbelow.glif + W + W_.glif + Wacute + W_acute.glif + Wcircumflex + W_circumflex.glif + Wdieresis + W_dieresis.glif + Wgrave + W_grave.glif + X + X_.glif + Xdieresis + X_dieresis.glif + Y + Y_.glif + Yacute + Y_acute.glif + Ycircumflex + Y_circumflex.glif + Ydieresis + Y_dieresis.glif + Ydotaccent + Y_dotaccent.glif + Ydotbelow + Y_dotbelow.glif + Ygrave + Y_grave.glif + Yhookabove + Y_hookabove.glif + Ymacron + Y_macron.glif + Ytilde + Y_tilde.glif + Z + Z_.glif + Zacute + Z_acute.glif + Zcaron + Z_caron.glif + Zcircumflex + Z_circumflex.glif + Zdotaccent + Z_dotaccent.glif + Zdotbelow + Z_dotbelow.glif + Zlinebelow + Z_linebelow.glif + a + a.glif + aacute + aacute.glif + abreve + abreve.glif + abreveacute + abreveacute.glif + abrevedotbelow + abrevedotbelow.glif + abrevegrave + abrevegrave.glif + abrevehookabove + abrevehookabove.glif + abrevetilde + abrevetilde.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflexacute + acircumflexacute.glif + acircumflexdotbelow + acircumflexdotbelow.glif + acircumflexgrave + acircumflexgrave.glif + acircumflexhookabove + acircumflexhookabove.glif + acircumflextilde + acircumflextilde.glif + acute + acute.glif + acutecmb + acutecmb.glif + acutecmb.cap + acutecmb.cap.glif + adieresis + adieresis.glif + adotaccent + adotaccent.glif + adotbelow + adotbelow.glif + ae + ae.glif + agrave + agrave.glif + ahookabove + ahookabove.glif + amacron + amacron.glif + ampersand + ampersand.glif + ampersand_ampersand.liga + ampersand_ampersand.liga.glif + aogonek + aogonek.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + asciicircum + asciicircum.glif + asciicircum_equal.liga + asciicircum_equal.liga.glif + asciitilde + asciitilde.glif + asciitilde_asciitilde.liga + asciitilde_asciitilde.liga.glif + asciitilde_asciitilde_greater + asciitilde_asciitilde_greater.glif + asciitilde_at.liga + asciitilde_at.liga.glif + asciitilde_greater.liga + asciitilde_greater.liga.glif + asciitilde_hyphen.liga + asciitilde_hyphen.liga.glif + asterisk + asterisk.glif + asterisk_asterisk.liga + asterisk_asterisk.liga.glif + asterisk_asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga.glif + asterisk_greater.liga + asterisk_greater.liga.glif + asterisk_slash.liga + asterisk_slash.liga.glif + at + at.glif + atilde + atilde.glif + b + b.glif + backslash + backslash.glif + backslash_slash.liga + backslash_slash.liga.glif + bahtthai + bahtthai.glif + bar + bar.glif + bar_bar.liga + bar_bar.liga.glif + bar_bar_bar.liga + bar_bar_bar.liga.glif + bar_bar_bar_greater.liga + bar_bar_bar_greater.liga.glif + bar_bar_equal.liga + bar_bar_equal.liga.glif + bar_bar_equal.start + bar_bar_equal.start.glif + bar_bar_greater.liga + bar_bar_greater.liga.glif + bar_bar_hyphen.liga + bar_bar_hyphen.liga.glif + bar_bar_hyphen.start + bar_bar_hyphen.start.glif + bar_braceright.liga + bar_braceright.liga.glif + bar_bracketright.liga + bar_bracketright.liga.glif + bar_equal.liga + bar_equal.liga.glif + bar_equal.start + bar_equal.start.glif + bar_greater.liga + bar_greater.liga.glif + bar_hyphen.liga + bar_hyphen.liga.glif + bar_hyphen.start + bar_hyphen.start.glif + blinebelow + blinebelow.glif + braceleft + braceleft.glif + braceleft_bar.liga + braceleft_bar.liga.glif + braceright + braceright.glif + bracketleft + bracketleft.glif + bracketleft_bar.liga + bracketleft_bar.liga.glif + bracketright + bracketright.glif + bracketright_numbersign.liga + bracketright_numbersign.liga.glif + breve + breve.glif + breveacute + breveacute.glif + breveacute.cap + breveacute.cap.glif + brevebelowcmb + brevebelowcmb.glif + brevecmb + brevecmb.glif + brevecmb.cap + brevecmb.cap.glif + brevegrave + brevegrave.glif + brevegrave.cap + brevegrave.cap.glif + brevehook + brevehook.glif + brevehook.cap + brevehook.cap.glif + brevetilde + brevetilde.glif + brevetilde.cap + brevetilde.cap.glif + bullet + bullet.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caroncmb + caroncmb.glif + caroncmb.cap + caroncmb.cap.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cedillacmb + cedillacmb.glif + cent + cent.glif + circumflex + circumflex.glif + circumflexacute + circumflexacute.glif + circumflexacute.cap + circumflexacute.cap.glif + circumflexbelowcmb + circumflexbelowcmb.glif + circumflexcmb + circumflexcmb.glif + circumflexcmb.cap + circumflexcmb.cap.glif + circumflexgrave + circumflexgrave.glif + circumflexgrave.cap + circumflexgrave.cap.glif + circumflexhook + circumflexhook.glif + circumflexhook.cap + circumflexhook.cap.glif + circumflextilde + circumflextilde.glif + circumflextilde.cap + circumflextilde.cap.glif + colon + colon.glif + colon.fig + colon.fig.glif + colon_colon.liga + colon_colon.liga.glif + colon_colon_colon.liga + colon_colon_colon.liga.glif + colon_colon_equal.liga + colon_colon_equal.liga.glif + colon_equal.liga + colon_equal.liga.glif + colon_greater.liga + colon_greater.liga.glif + colon_less.liga + colon_less.liga.glif + comma + comma.glif + commaaboverightcmb + commaaboverightcmb.glif + commaturnedabovecmb + commaturnedabovecmb.glif + commaturnedmod + commaturnedmod.glif + copyright + copyright.glif + d + d.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + darkshade + darkshade.glif + dbldnhorzbxd + dbldnhorzbxd.glif + dbldnleftbxd + dbldnleftbxd.glif + dbldnrightbxd + dbldnrightbxd.glif + dblhorzbxd + dblhorzbxd.glif + dblprimemod + dblprimemod.glif + dbluphorzbxd + dbluphorzbxd.glif + dblupleftbxd + dblupleftbxd.glif + dbluprightbxd + dbluprightbxd.glif + dblvertbxd + dblvertbxd.glif + dblverthorzbxd + dblverthorzbxd.glif + dblvertleftbxd + dblvertleftbxd.glif + dblvertrightbxd + dblvertrightbxd.glif + dcaron + dcaron.glif + dcircumflexbelow + dcircumflexbelow.glif + dcroat + dcroat.glif + ddotbelow + ddotbelow.glif + degree + degree.glif + dieresis + dieresis.glif + dieresisacute + dieresisacute.glif + dieresisacute.cap + dieresisacute.cap.glif + dieresisbelowcmb + dieresisbelowcmb.glif + dieresiscaron + dieresiscaron.glif + dieresiscaron.cap + dieresiscaron.cap.glif + dieresiscmb + dieresiscmb.glif + dieresiscmb.cap + dieresiscmb.cap.glif + dieresisgrave + dieresisgrave.glif + dieresisgrave.cap + dieresisgrave.cap.glif + dieresismacron + dieresismacron.glif + dieresismacron.cap + dieresismacron.cap.glif + divide + divide.glif + dlinebelow + dlinebelow.glif + dndblhorzsngbxd + dndblhorzsngbxd.glif + dndblleftsngbxd + dndblleftsngbxd.glif + dndblrightsngbxd + dndblrightsngbxd.glif + dneighthblock + dneighthblock.glif + dnfiveeighthsblock + dnfiveeighthsblock.glif + dnhalfblock + dnhalfblock.glif + dnheavyhorzlightbxd + dnheavyhorzlightbxd.glif + dnheavyleftlightbxd + dnheavyleftlightbxd.glif + dnheavyleftuplightbxd + dnheavyleftuplightbxd.glif + dnheavyrightlightbxd + dnheavyrightlightbxd.glif + dnheavyrightuplightbxd + dnheavyrightuplightbxd.glif + dnheavyuphorzlightbxd + dnheavyuphorzlightbxd.glif + dnleftquadrant + dnleftquadrant.glif + dnlighthorzheavybxd + dnlighthorzheavybxd.glif + dnlightleftheavybxd + dnlightleftheavybxd.glif + dnlightleftupheavybxd + dnlightleftupheavybxd.glif + dnlightrightheavybxd + dnlightrightheavybxd.glif + dnlightrightupheavybxd + dnlightrightupheavybxd.glif + dnlightuphorzheavybxd + dnlightuphorzheavybxd.glif + dnquarterblock + dnquarterblock.glif + dnrightquadrant + dnrightquadrant.glif + dnseveneighthsblock + dnseveneighthsblock.glif + dnsnghorzdblbxd + dnsnghorzdblbxd.glif + dnsngleftdblbxd + dnsngleftdblbxd.glif + dnsngrightdblbxd + dnsngrightdblbxd.glif + dnthreeeighthsblock + dnthreeeighthsblock.glif + dnthreequartersblock + dnthreequartersblock.glif + dollar + dollar.glif + dollar_greater.liga + dollar_greater.liga.glif + dong + dong.glif + dotaccent + dotaccent.glif + dotaccentcmb + dotaccentcmb.glif + dotaccentcmb.cap + dotaccentcmb.cap.glif + dotbelowcmb + dotbelowcmb.glif + dotlessi + dotlessi.glif + dotlessj + dotlessj.glif + e + e.glif + eacute + eacute.glif + ebreve + ebreve.glif + ecaron + ecaron.glif + ecircumflex + ecircumflex.glif + ecircumflexacute + ecircumflexacute.glif + ecircumflexdotbelow + ecircumflexdotbelow.glif + ecircumflexgrave + ecircumflexgrave.glif + ecircumflexhookabove + ecircumflexhookabove.glif + ecircumflextilde + ecircumflextilde.glif + edieresis + edieresis.glif + edotaccent + edotaccent.glif + edotbelow + edotbelow.glif + egrave + egrave.glif + ehookabove + ehookabove.glif + eight + eight.glif + eight.den + eight.den.glif + eight.inf + eight.inf.glif + eight.num + eight.num.glif + eight.sup + eight.sup.glif + ellipsis + ellipsis.glif + emacron + emacron.glif + emdash + emdash.glif + endash + endash.glif + eng + eng.glif + eogonek + eogonek.glif + equal + equal.glif + equal.end + equal.end.glif + equal.middle + equal.middle.glif + equal.start + equal.start.glif + equal_asciitilde.liga + equal_asciitilde.liga.glif + equal_bar.end + equal_bar.end.glif + equal_bar.liga + equal_bar.liga.glif + equal_bar_bar.end + equal_bar_bar.end.glif + equal_bar_bar.liga + equal_bar_bar.liga.glif + equal_bar_bar_equal.middle + equal_bar_bar_equal.middle.glif + equal_bar_equal.middle + equal_bar_equal.middle.glif + equal_colon_equal.middle + equal_colon_equal.middle.glif + equal_equal.liga + equal_equal.liga.glif + equal_equal_equal.liga + equal_equal_equal.liga.glif + equal_exclam_equal.middle + equal_exclam_equal.middle.glif + equal_greater.end + equal_greater.end.glif + equal_greater.liga + equal_greater.liga.glif + equal_greater_equal.middle + equal_greater_equal.middle.glif + equal_greater_greater.end + equal_greater_greater.end.glif + equal_greater_greater.liga + equal_greater_greater.liga.glif + equal_greater_greater_equal.m + equal_greater_greater_equal.m.glif + equal_less.end + equal_less.end.glif + equal_less.liga + equal_less.liga.glif + equal_less_equal.middle + equal_less_equal.middle.glif + equal_less_less.end + equal_less_less.end.glif + equal_less_less.liga + equal_less_less.liga.glif + equal_less_less_equal.middle + equal_less_less_equal.middle.glif + equal_slash.end + equal_slash.end.glif + equal_slash.liga + equal_slash.liga.glif + equal_slash_equal.middle + equal_slash_equal.middle.glif + equal_slash_slash.end + equal_slash_slash.end.glif + equal_slash_slash.liga + equal_slash_slash.liga.glif + equal_slash_slash_equal.middle + equal_slash_slash_equal.middle.glif + eth + eth.glif + etilde + etilde.glif + exclam + exclam.glif + exclam_asciitilde.liga + exclam_asciitilde.liga.glif + exclam_equal.liga + exclam_equal.liga.glif + exclam_equal_equal.liga + exclam_equal_equal.liga.glif + exclam_exclam.liga + exclam_exclam.liga.glif + exclam_exclam_period.liga + exclam_exclam_period.liga.glif + exclamdown + exclamdown.glif + f + f.glif + five + five.glif + five.den + five.den.glif + five.inf + five.inf.glif + five.num + five.num.glif + five.sup + five.sup.glif + fiveeighths + fiveeighths.glif + fivesixths + fivesixths.glif + four + four.glif + four.den + four.den.glif + four.inf + four.inf.glif + four.num + four.num.glif + four.sup + four.sup.glif + fourfifths + fourfifths.glif + fracbar + fracbar.glif + fraction + fraction.glif + fullblock + fullblock.glif + g + g.glif + gbreve + gbreve.glif + gcaron + gcaron.glif + gcircumflex + gcircumflex.glif + gcommaaccent + gcommaaccent.glif + gdotaccent + gdotaccent.glif + germandbls + germandbls.glif + gmacron + gmacron.glif + grave + grave.glif + gravecmb + gravecmb.glif + gravecmb.cap + gravecmb.cap.glif + greater + greater.glif + greater_colon.liga + greater_colon.liga.glif + greater_equal + greater_equal.glif + greater_equal.liga + greater_equal.liga.glif + greater_equal.start + greater_equal.start.glif + greater_equal_greater.liga + greater_equal_greater.liga.glif + greater_greater.liga + greater_greater.liga.glif + greater_greater_equal.liga + greater_greater_equal.liga.glif + greater_greater_equal.start + greater_greater_equal.start.glif + greater_greater_greater.liga + greater_greater_greater.liga.glif + greater_greater_hyphen.liga + greater_greater_hyphen.liga.glif + greater_greater_hyphen.start + greater_greater_hyphen.start.glif + greater_hyphen.liga + greater_hyphen.liga.glif + greater_hyphen.start + greater_hyphen.start.glif + greater_hyphen_greater.liga + greater_hyphen_greater.liga.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetright + guillemetright.glif + guilsinglleft + guilsinglleft.glif + guilsinglright + guilsinglright.glif + h + h.glif + hbar + hbar.glif + hbrevebelow + hbrevebelow.glif + hcedilla + hcedilla.glif + hcircumflex + hcircumflex.glif + hdotbelow + hdotbelow.glif + heavydbldashhorzbxd + heavydbldashhorzbxd.glif + heavydbldashvertbxd + heavydbldashvertbxd.glif + heavydnbxd + heavydnbxd.glif + heavydnhorzbxd + heavydnhorzbxd.glif + heavydnleftbxd + heavydnleftbxd.glif + heavydnrightbxd + heavydnrightbxd.glif + heavyhorzbxd + heavyhorzbxd.glif + heavyleftbxd + heavyleftbxd.glif + heavyleftlightrightbxd + heavyleftlightrightbxd.glif + heavyquaddashhorzbxd + heavyquaddashhorzbxd.glif + heavyquaddashvertbxd + heavyquaddashvertbxd.glif + heavyrightbxd + heavyrightbxd.glif + heavytrpldashhorzbxd + heavytrpldashhorzbxd.glif + heavytrpldashvertbxd + heavytrpldashvertbxd.glif + heavyupbxd + heavyupbxd.glif + heavyuphorzbxd + heavyuphorzbxd.glif + heavyupleftbxd + heavyupleftbxd.glif + heavyuplightdnbxd + heavyuplightdnbxd.glif + heavyuprightbxd + heavyuprightbxd.glif + heavyvertbxd + heavyvertbxd.glif + heavyverthorzbxd + heavyverthorzbxd.glif + heavyvertleftbxd + heavyvertleftbxd.glif + heavyvertrightbxd + heavyvertrightbxd.glif + hlinebelow + hlinebelow.glif + hookcmb + hookcmb.glif + hookcmb.cap + hookcmb.cap.glif + horizontalbar + horizontalbar.glif + hungarumlaut + hungarumlaut.glif + hungarumlautcmb + hungarumlautcmb.glif + hungarumlautcmb.cap + hungarumlautcmb.cap.glif + hyphen + hyphen.glif + hyphen.end + hyphen.end.glif + hyphen.middle + hyphen.middle.glif + hyphen.start + hyphen.start.glif + hyphen_asciitilde.liga + hyphen_asciitilde.liga.glif + hyphen_bar.end + hyphen_bar.end.glif + hyphen_bar.liga + hyphen_bar.liga.glif + hyphen_bar_bar.end + hyphen_bar_bar.end.glif + hyphen_bar_bar.liga + hyphen_bar_bar.liga.glif + hyphen_bar_bar_hyphen.middle + hyphen_bar_bar_hyphen.middle.glif + hyphen_bar_hyphen.middle + hyphen_bar_hyphen.middle.glif + hyphen_greater.end + hyphen_greater.end.glif + hyphen_greater.liga + hyphen_greater.liga.glif + hyphen_greater_greater.end + hyphen_greater_greater.end.glif + hyphen_greater_greater.liga + hyphen_greater_greater.liga.glif + hyphen_greater_greater_hyphen.m + hyphen_greater_greater_hyphen.m.glif + hyphen_greater_hyphen.middle + hyphen_greater_hyphen.middle.glif + hyphen_hyphen.liga + hyphen_hyphen.liga.glif + hyphen_hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga.glif + hyphen_less.end + hyphen_less.end.glif + hyphen_less.liga + hyphen_less.liga.glif + hyphen_less_hyphen.middle + hyphen_less_hyphen.middle.glif + hyphen_less_less.end + hyphen_less_less.end.glif + hyphen_less_less.liga + hyphen_less_less.liga.glif + hyphen_less_less_hyphen.middle + hyphen_less_less_hyphen.middle.glif + i + i.glif + iacute + iacute.glif + ibreve + ibreve.glif + icaron + icaron.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idotaccent + idotaccent.glif + idotbelow + idotbelow.glif + igrave + igrave.glif + ihookabove + ihookabove.glif + imacron + imacron.glif + iogonek + iogonek.glif + itilde + itilde.glif + j + j.glif + jcaron + jcaron.glif + jcircumflex + jcircumflex.glif + k + k.glif + kcommaaccent + kcommaaccent.glif + kdotbelow + kdotbelow.glif + klinebelow + klinebelow.glif + l + l.glif + l.dot + l.dot.glif + lacute + lacute.glif + lcaron + lcaron.glif + lcircumflexbelow + lcircumflexbelow.glif + lcommaaccent + lcommaaccent.glif + ldotbelow + ldotbelow.glif + leftdnheavyrightuplightbxd + leftdnheavyrightuplightbxd.glif + lefteighthblock + lefteighthblock.glif + leftfiveeighthsblock + leftfiveeighthsblock.glif + lefthalfblock + lefthalfblock.glif + leftheavyrightdnlightbxd + leftheavyrightdnlightbxd.glif + leftheavyrightuplightbxd + leftheavyrightuplightbxd.glif + leftheavyrightvertlightbxd + leftheavyrightvertlightbxd.glif + leftlightrightdnheavybxd + leftlightrightdnheavybxd.glif + leftlightrightupheavybxd + leftlightrightupheavybxd.glif + leftlightrightvertheavybxd + leftlightrightvertheavybxd.glif + leftquarterblock + leftquarterblock.glif + leftseveneighthsblock + leftseveneighthsblock.glif + leftthreeeighthsblock + leftthreeeighthsblock.glif + leftthreequartersblock + leftthreequartersblock.glif + leftupheavyrightdnlightbxd + leftupheavyrightdnlightbxd.glif + less + less.glif + less_asciitilde.liga + less_asciitilde.liga.glif + less_asciitilde_asciitilde.liga + less_asciitilde_asciitilde.liga.glif + less_asciitilde_greater.liga + less_asciitilde_greater.liga.glif + less_asterisk.liga + less_asterisk.liga.glif + less_asterisk_greater.liga + less_asterisk_greater.liga.glif + less_bar.liga + less_bar.liga.glif + less_bar_bar.liga + less_bar_bar.liga.glif + less_bar_bar_bar.liga + less_bar_bar_bar.liga.glif + less_bar_greater.liga + less_bar_greater.liga.glif + less_colon.liga + less_colon.liga.glif + less_dollar.liga + less_dollar.liga.glif + less_dollar_greater.liga + less_dollar_greater.liga.glif + less_equal + less_equal.glif + less_equal.liga + less_equal.liga.glif + less_equal.start + less_equal.start.glif + less_equal_greater.liga + less_equal_greater.liga.glif + less_equal_less.liga + less_equal_less.liga.glif + less_exclam_hyphen_hyphen.liga + less_exclam_hyphen_hyphen.liga.glif + less_greater.liga + less_greater.liga.glif + less_hyphen.liga + less_hyphen.liga.glif + less_hyphen.start + less_hyphen.start.glif + less_hyphen_greater.liga + less_hyphen_greater.liga.glif + less_hyphen_less.liga + less_hyphen_less.liga.glif + less_less.liga + less_less.liga.glif + less_less_equal.liga + less_less_equal.liga.glif + less_less_equal.start + less_less_equal.start.glif + less_less_hyphen.liga + less_less_hyphen.liga.glif + less_less_hyphen.start + less_less_hyphen.start.glif + less_less_less.liga + less_less_less.liga.glif + less_plus.liga + less_plus.liga.glif + less_plus_greater.liga + less_plus_greater.liga.glif + less_slash.liga + less_slash.liga.glif + less_slash_greater.liga + less_slash_greater.liga.glif + lessequal + lessequal.glif + lightarcdnleftbxd + lightarcdnleftbxd.glif + lightarcdnrightbxd + lightarcdnrightbxd.glif + lightarcupleftbxd + lightarcupleftbxd.glif + lightarcuprightbxd + lightarcuprightbxd.glif + lightdbldashhorzbxd + lightdbldashhorzbxd.glif + lightdbldashvertbxd + lightdbldashvertbxd.glif + lightdiagcrossbxd + lightdiagcrossbxd.glif + lightdiagupleftdnrightbxd + lightdiagupleftdnrightbxd.glif + lightdiaguprightdnleftbxd + lightdiaguprightdnleftbxd.glif + lightdnbxd + lightdnbxd.glif + lightdnhorzbxd + lightdnhorzbxd.glif + lightdnleftbxd + lightdnleftbxd.glif + lightdnrightbxd + lightdnrightbxd.glif + lighthorzbxd + lighthorzbxd.glif + lightleftbxd + lightleftbxd.glif + lightleftheavyrightbxd + lightleftheavyrightbxd.glif + lightquaddashhorzbxd + lightquaddashhorzbxd.glif + lightquaddashvertbxd + lightquaddashvertbxd.glif + lightrightbxd + lightrightbxd.glif + lightshade + lightshade.glif + lighttrpldashhorzbxd + lighttrpldashhorzbxd.glif + lighttrpldashvertbxd + lighttrpldashvertbxd.glif + lightupbxd + lightupbxd.glif + lightupheavydnbxd + lightupheavydnbxd.glif + lightuphorzbxd + lightuphorzbxd.glif + lightupleftbxd + lightupleftbxd.glif + lightuprightbxd + lightuprightbxd.glif + lightvertbxd + lightvertbxd.glif + lightverthorzbxd + lightverthorzbxd.glif + lightvertleftbxd + lightvertleftbxd.glif + lightvertrightbxd + lightvertrightbxd.glif + ligspacer + ligspacer.glif + llinebelow + llinebelow.glif + lmacrondotbelow + lmacrondotbelow.glif + lslash + lslash.glif + m + m.glif + macron + macron.glif + macronbelowcmb + macronbelowcmb.glif + macroncmb + macroncmb.glif + macroncmb.cap + macroncmb.cap.glif + macronlowmod + macronlowmod.glif + macute + macute.glif + mdotaccent + mdotaccent.glif + mdotbelow + mdotbelow.glif + mediumshade + mediumshade.glif + middotcat + middotcat.glif + middotcat.cap + middotcat.cap.glif + minus + minus.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + naira + naira.glif + ncaron + ncaron.glif + ncircumflexbelow + ncircumflexbelow.glif + ncommaaccent + ncommaaccent.glif + ndotaccent + ndotaccent.glif + ndotbelow + ndotbelow.glif + ngrave + ngrave.glif + nine + nine.glif + nine.den + nine.den.glif + nine.inf + nine.inf.glif + nine.num + nine.num.glif + nine.sup + nine.sup.glif + nlinebelow + nlinebelow.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numbersign.end + numbersign.end.glif + numbersign.middle + numbersign.middle.glif + numbersign.start + numbersign.start.glif + numbersign_braceleft.liga + numbersign_braceleft.liga.glif + numbersign_bracketleft.liga + numbersign_bracketleft.liga.glif + numbersign_colon.liga + numbersign_colon.liga.glif + numbersign_equal.liga + numbersign_equal.liga.glif + numbersign_exclam.liga + numbersign_exclam.liga.glif + numbersign_parenleft.liga + numbersign_parenleft.liga.glif + numbersign_question.liga + numbersign_question.liga.glif + numbersign_underscore.liga + numbersign_underscore.liga.glif + numbersign_underscore_parenleft + numbersign_underscore_parenleft.glif + o + o.glif + oacute + oacute.glif + obreve + obreve.glif + ocaron + ocaron.glif + ocircumflex + ocircumflex.glif + ocircumflexacute + ocircumflexacute.glif + ocircumflexdotbelow + ocircumflexdotbelow.glif + ocircumflexgrave + ocircumflexgrave.glif + ocircumflexhookabove + ocircumflexhookabove.glif + ocircumflextilde + ocircumflextilde.glif + odieresis + odieresis.glif + odotaccent + odotaccent.glif + odotbelow + odotbelow.glif + oe + oe.glif + ogonek + ogonek.glif + ogonekcmb + ogonekcmb.glif + ograve + ograve.glif + ohookabove + ohookabove.glif + ohorn + ohorn.glif + ohornacute + ohornacute.glif + ohorndotbelow + ohorndotbelow.glif + ohorngrave + ohorngrave.glif + ohornhookabove + ohornhookabove.glif + ohorntilde + ohorntilde.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + one + one.glif + one.den + one.den.glif + one.inf + one.inf.glif + one.num + one.num.glif + one.sup + one.sup.glif + oneeighth + oneeighth.glif + onefifth + onefifth.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesixth + onesixth.glif + onethird + onethird.glif + oogonek + oogonek.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + otilde + otilde.glif + p + p.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenright + parenright.glif + percent + percent.glif + percent_percent.liga + percent_percent.liga.glif + period + period.glif + period_equal.liga + period_equal.liga.glif + period_hyphen.liga + period_hyphen.liga.glif + period_period.liga + period_period.liga.glif + period_period_equal.liga + period_period_equal.liga.glif + period_period_less.liga + period_period_less.liga.glif + period_period_period.liga + period_period_period.liga.glif + period_question.liga + period_question.liga.glif + periodcentered + periodcentered.glif + peso + peso.glif + plus + plus.glif + plus_greater.liga + plus_greater.liga.glif + plus_plus.liga + plus_plus.liga.glif + plus_plus_plus.liga + plus_plus_plus.liga.glif + plusminus + plusminus.glif + primemod + primemod.glif + published + published.glif + q + q.glif + question + question.glif + question_colon.liga + question_colon.liga.glif + question_equal.liga + question_equal.liga.glif + question_period.liga + question_period.liga.glif + question_question.liga + question_question.liga.glif + questiondown + questiondown.glif + quotedbl + quotedbl.glif + quotedblbase + quotedblbase.glif + quotedblleft + quotedblleft.glif + quotedblright + quotedblright.glif + quoteleft + quoteleft.glif + quoteright + quoteright.glif + quotesinglbase + quotesinglbase.glif + quotesingle + quotesingle.glif + r + r.glif + racute + racute.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + rdotaccent + rdotaccent.glif + rdotbelow + rdotbelow.glif + registered + registered.glif + rightdnheavyleftuplightbxd + rightdnheavyleftuplightbxd.glif + righteighthblock + righteighthblock.glif + righthalfblock + righthalfblock.glif + rightheavyleftdnlightbxd + rightheavyleftdnlightbxd.glif + rightheavyleftuplightbxd + rightheavyleftuplightbxd.glif + rightheavyleftvertlightbxd + rightheavyleftvertlightbxd.glif + rightlightleftdnheavybxd + rightlightleftdnheavybxd.glif + rightlightleftupheavybxd + rightlightleftupheavybxd.glif + rightlightleftvertheavybxd + rightlightleftvertheavybxd.glif + rightupheavyleftdnlightbxd + rightupheavyleftdnlightbxd.glif + ring + ring.glif + ringcmb + ringcmb.glif + ringcmb.cap + ringcmb.cap.glif + ringhalfleft + ringhalfleft.glif + ringhalfright + ringhalfright.glif + rlinebelow + rlinebelow.glif + rmacrondotbelow + rmacrondotbelow.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwa + schwa.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + sdotbelow + sdotbelow.glif + section + section.glif + semicolon + semicolon.glif + semicolon_semicolon.liga + semicolon_semicolon.liga.glif + servicemark + servicemark.glif + seven + seven.glif + seven.den + seven.den.glif + seven.inf + seven.inf.glif + seven.num + seven.num.glif + seven.sup + seven.sup.glif + seveneighths + seveneighths.glif + six + six.glif + six.den + six.den.glif + six.inf + six.inf.glif + six.num + six.num.glif + six.sup + six.sup.glif + slash + slash.glif + slash_asterisk.liga + slash_asterisk.liga.glif + slash_backslash.liga + slash_backslash.liga.glif + slash_equal.liga + slash_equal.liga.glif + slash_equal.start + slash_equal.start.glif + slash_greater.liga + slash_greater.liga.glif + slash_slash.liga + slash_slash.liga.glif + slash_slash_equal.liga + slash_slash_equal.liga.glif + slash_slash_equal.start + slash_slash_equal.start.glif + slash_slash_slash.liga + slash_slash_slash.liga.glif + space + space.glif + sterling + sterling.glif + t + t.glif + tbar + tbar.glif + tcaron + tcaron.glif + tcedilla + tcedilla.glif + tcircumflexbelow + tcircumflexbelow.glif + tcommaaccent + tcommaaccent.glif + tdotbelow + tdotbelow.glif + thorn + thorn.glif + three + three.glif + three.den + three.den.glif + three.inf + three.inf.glif + three.num + three.num.glif + three.sup + three.sup.glif + threeeighths + threeeighths.glif + threefifths + threefifths.glif + threequarters + threequarters.glif + tilde + tilde.glif + tildecmb + tildecmb.glif + tildecmb.cap + tildecmb.cap.glif + tlinebelow + tlinebelow.glif + trademark + trademark.glif + two + two.glif + two.den + two.den.glif + two.inf + two.inf.glif + two.num + two.num.glif + two.sup + two.sup.glif + twodotleader + twodotleader.glif + twofifths + twofifths.glif + twothirds + twothirds.glif + u + u.glif + uacute + uacute.glif + ubreve + ubreve.glif + ucaron + ucaron.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresisacute + udieresisacute.glif + udieresiscaron + udieresiscaron.glif + udieresisgrave + udieresisgrave.glif + udieresismacron + udieresismacron.glif + udotbelow + udotbelow.glif + ugrave + ugrave.glif + uhookabove + uhookabove.glif + uhorn + uhorn.glif + uhornacute + uhornacute.glif + uhorndotbelow + uhorndotbelow.glif + uhorngrave + uhorngrave.glif + uhornhookabove + uhornhookabove.glif + uhorntilde + uhorntilde.glif + uhungarumlaut + uhungarumlaut.glif + umacron + umacron.glif + underscore + underscore.glif + underscore.end + underscore.end.glif + underscore.middle + underscore.middle.glif + underscore.start + underscore.start.glif + underscore_bar_underscore.m + underscore_bar_underscore.m.glif + uni00A0 + uni00A_0.glif + uni0326 + uni0326.glif + uni1E9E + uni1E_9E_.glif + uni2011 + uni2011.glif + uni20B9 + uni20B_9.glif + uni20BA + uni20B_A_.glif + uni20BD + uni20B_D_.glif + uni2610 + uni2610.glif + uni2611 + uni2611.glif + uni2612 + uni2612.glif + uni2713 + uni2713.glif + uniA788 + uniA_788.glif + uniE0A0 + uniE_0A_0.glif + uniE0A1 + uniE_0A_1.glif + uniE0A2 + uniE_0A_2.glif + uniE0B0 + uniE_0B_0.glif + uniE0B1 + uniE_0B_1.glif + uniE0B2 + uniE_0B_2.glif + uniE0B3 + uniE_0B_3.glif + uogonek + uogonek.glif + updblhorzsngbxd + updblhorzsngbxd.glif + updblleftsngbxd + updblleftsngbxd.glif + updblrightsngbxd + updblrightsngbxd.glif + upeighthblock + upeighthblock.glif + uphalfblock + uphalfblock.glif + upheavydnhorzlightbxd + upheavydnhorzlightbxd.glif + upheavyhorzlightbxd + upheavyhorzlightbxd.glif + upheavyleftdnlightbxd + upheavyleftdnlightbxd.glif + upheavyleftlightbxd + upheavyleftlightbxd.glif + upheavyrightdnlightbxd + upheavyrightdnlightbxd.glif + upheavyrightlightbxd + upheavyrightlightbxd.glif + upleftdnleftdnrightquadrant + upleftdnleftdnrightquadrant.glif + upleftdnrightquadrant + upleftdnrightquadrant.glif + upleftquadrant + upleftquadrant.glif + upleftuprightdnleftquadrant + upleftuprightdnleftquadrant.glif + upleftuprightdnrightquadrant + upleftuprightdnrightquadrant.glif + uplightdnhorzheavybxd + uplightdnhorzheavybxd.glif + uplighthorzheavybxd + uplighthorzheavybxd.glif + uplightleftdnheavybxd + uplightleftdnheavybxd.glif + uplightleftheavybxd + uplightleftheavybxd.glif + uplightrightdnheavybxd + uplightrightdnheavybxd.glif + uplightrightheavybxd + uplightrightheavybxd.glif + uprightdnleftdnrightquadrant + uprightdnleftdnrightquadrant.glif + uprightdnleftquadrant + uprightdnleftquadrant.glif + uprightquadrant + uprightquadrant.glif + upsnghorzdblbxd + upsnghorzdblbxd.glif + upsngleftdblbxd + upsngleftdblbxd.glif + upsngrightdblbxd + upsngrightdblbxd.glif + uring + uring.glif + utilde + utilde.glif + v + v.glif + vdotbelow + vdotbelow.glif + vertdblhorzsngbxd + vertdblhorzsngbxd.glif + vertdblleftsngbxd + vertdblleftsngbxd.glif + vertdblrightsngbxd + vertdblrightsngbxd.glif + vertheavyhorzlightbxd + vertheavyhorzlightbxd.glif + vertheavyleftlightbxd + vertheavyleftlightbxd.glif + vertheavyrightlightbxd + vertheavyrightlightbxd.glif + verticallinelowmod + verticallinelowmod.glif + verticallinemod + verticallinemod.glif + vertlighthorzheavybxd + vertlighthorzheavybxd.glif + vertlightleftheavybxd + vertlightleftheavybxd.glif + vertlightrightheavybxd + vertlightrightheavybxd.glif + vertsnghorzdblbxd + vertsnghorzdblbxd.glif + vertsngleftdblbxd + vertsngleftdblbxd.glif + vertsngrightdblbxd + vertsngrightdblbxd.glif + w + w.glif + w_w_w.liga + w_w_w.liga.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wgrave + wgrave.glif + won + won.glif + x + x.glif + xdieresis + xdieresis.glif + y + y.glif + yacute + yacute.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + ydotaccent + ydotaccent.glif + ydotbelow + ydotbelow.glif + yen + yen.glif + ygrave + ygrave.glif + yhookabove + yhookabove.glif + ymacron + ymacron.glif + ytilde + ytilde.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zcircumflex + zcircumflex.glif + zdotaccent + zdotaccent.glif + zdotbelow + zdotbelow.glif + zero + zero.glif + zero.den + zero.den.glif + zero.inf + zero.inf.glif + zero.num + zero.num.glif + zero.sup + zero.sup.glif + zlinebelow + zlinebelow.glif + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/copyright.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/copyright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/copyright.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/copyright.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/d.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/d.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/d.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/d.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dagger.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dagger.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dagger.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dagger.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/daggerdbl.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/daggerdbl.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/daggerdbl.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/daggerdbl.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/darkshade.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/darkshade.glif new file mode 100644 index 00000000..a56d0f0a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/darkshade.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dbldnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dbldnhorzbxd.glif new file mode 100644 index 00000000..64ba8e60 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dbldnhorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dbldnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dbldnleftbxd.glif new file mode 100644 index 00000000..b50e4877 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dbldnleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dbldnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dbldnrightbxd.glif new file mode 100644 index 00000000..ccc51318 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dbldnrightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dblhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dblhorzbxd.glif new file mode 100644 index 00000000..63f2a9d2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dblhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dblprimemod.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dblprimemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dblprimemod.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dblprimemod.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dbluphorzbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dbluphorzbxd.glif new file mode 100644 index 00000000..aaa937ec --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dbluphorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dblupleftbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dblupleftbxd.glif new file mode 100644 index 00000000..4f812e09 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dblupleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dbluprightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dbluprightbxd.glif new file mode 100644 index 00000000..00ad7c58 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dbluprightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dblvertbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dblvertbxd.glif new file mode 100644 index 00000000..747190e6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dblvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dblverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dblverthorzbxd.glif new file mode 100644 index 00000000..10026420 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dblverthorzbxd.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dblvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dblvertleftbxd.glif new file mode 100644 index 00000000..43e6032e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dblvertleftbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dblvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dblvertrightbxd.glif new file mode 100644 index 00000000..fed2372a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dblvertrightbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dcaron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..f1cc2c61 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dcircumflexbelow.glif new file mode 100644 index 00000000..92ef65dd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dcroat.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..4c8132dc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dcroat.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ddotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ddotbelow.glif new file mode 100644 index 00000000..7171a339 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ddotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/degree.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/degree.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/degree.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/degree.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresis.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresis.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresisacute.cap.glif new file mode 100644 index 00000000..bdb26378 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresisacute.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresisacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..bc11dec5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresisbelowcmb.glif new file mode 100644 index 00000000..55c6718f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresisbelowcmb.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresiscaron.cap.glif new file mode 100644 index 00000000..a79baa44 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresiscaron.cap.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresiscaron.glif new file mode 100644 index 00000000..9488a703 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresiscaron.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresiscmb.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresiscmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresiscmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresiscmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresiscmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresiscmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dieresiscmb.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresiscmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresisgrave.cap.glif new file mode 100644 index 00000000..7ccb9ede --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresisgrave.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresisgrave.glif new file mode 100644 index 00000000..8fd7b77f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresisgrave.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresismacron.cap.glif new file mode 100644 index 00000000..6eb9c0c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresismacron.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresismacron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresismacron.glif new file mode 100644 index 00000000..cea68e84 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dieresismacron.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/divide.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/divide.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/divide.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/divide.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dlinebelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dlinebelow.glif new file mode 100644 index 00000000..b883d02f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dndblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dndblhorzsngbxd.glif new file mode 100644 index 00000000..521358dc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dndblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dndblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dndblleftsngbxd.glif new file mode 100644 index 00000000..7c921f32 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dndblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dndblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dndblrightsngbxd.glif new file mode 100644 index 00000000..6e0a3d52 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dndblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dneighthblock.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dneighthblock.glif new file mode 100644 index 00000000..f9382474 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dneighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnfiveeighthsblock.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnfiveeighthsblock.glif new file mode 100644 index 00000000..6d6b327e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnhalfblock.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnhalfblock.glif new file mode 100644 index 00000000..5cb2299a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnhalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnheavyhorzlightbxd.glif new file mode 100644 index 00000000..a3854e77 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnheavyleftlightbxd.glif new file mode 100644 index 00000000..eaf42e33 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnheavyleftuplightbxd.glif new file mode 100644 index 00000000..57fb9dc6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnheavyrightlightbxd.glif new file mode 100644 index 00000000..69f72386 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnheavyrightuplightbxd.glif new file mode 100644 index 00000000..003ffe4a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnheavyuphorzlightbxd.glif new file mode 100644 index 00000000..e2e9f646 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnheavyuphorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnleftquadrant.glif new file mode 100644 index 00000000..0f752b04 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnlighthorzheavybxd.glif new file mode 100644 index 00000000..ef6b466b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnlighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnlightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnlightleftheavybxd.glif new file mode 100644 index 00000000..c93e0f11 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnlightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnlightleftupheavybxd.glif new file mode 100644 index 00000000..581ada1d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnlightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnlightrightheavybxd.glif new file mode 100644 index 00000000..825b45ac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnlightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnlightrightupheavybxd.glif new file mode 100644 index 00000000..a1440525 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnlightuphorzheavybxd.glif new file mode 100644 index 00000000..ab739647 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnlightuphorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnquarterblock.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnquarterblock.glif new file mode 100644 index 00000000..5dc81108 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnrightquadrant.glif new file mode 100644 index 00000000..012bd532 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnrightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnseveneighthsblock.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnseveneighthsblock.glif new file mode 100644 index 00000000..a47c62d6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnsnghorzdblbxd.glif new file mode 100644 index 00000000..94e46c47 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnsngleftdblbxd.glif new file mode 100644 index 00000000..d5138065 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnsngrightdblbxd.glif new file mode 100644 index 00000000..84853a30 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnthreeeighthsblock.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnthreeeighthsblock.glif new file mode 100644 index 00000000..e54a10a3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnthreequartersblock.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnthreequartersblock.glif new file mode 100644 index 00000000..e7b739c3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dnthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dollar.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dollar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dollar.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dollar.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dollar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dollar_greater.liga.glif new file mode 100644 index 00000000..53fe7cc2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dollar_greater.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dong.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dong.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dong.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dong.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dotaccentcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dotaccentcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dotaccentcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dotaccentcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dotaccentcmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dotaccentcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dotaccentcmb.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dotaccentcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dotbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dotbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dotbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dotbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dotlessi.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dotlessi.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/dotlessi.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dotlessi.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dotlessj.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dotlessj.glif new file mode 100644 index 00000000..b9676922 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/dotlessj.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/e.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/e.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/e.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/e.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..52dfa8c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ebreve.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..bd560fd6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ebreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecaron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..ef9eb414 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecircumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..2ac4ea80 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecircumflexacute.glif new file mode 100644 index 00000000..2af7d68d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecircumflexdotbelow.glif new file mode 100644 index 00000000..c98cb466 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecircumflexgrave.glif new file mode 100644 index 00000000..3f06d5a8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecircumflexhookabove.glif new file mode 100644 index 00000000..f5ef32a9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecircumflextilde.glif new file mode 100644 index 00000000..e8545ce2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ecircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/edieresis.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..23246012 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/edieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/edotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..c211ffb6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/edotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/edotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/edotbelow.glif new file mode 100644 index 00000000..43307427 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/edotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/egrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..981228a6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/egrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ehookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ehookabove.glif new file mode 100644 index 00000000..a002ec64 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ehookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eight.den.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eight.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eight.den.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eight.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eight.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eight.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eight.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eight.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eight.inf.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eight.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eight.inf.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eight.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eight.num.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eight.num.glif new file mode 100644 index 00000000..b8fc65b8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eight.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eight.sup.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eight.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/eight.sup.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eight.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ellipsis.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ellipsis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ellipsis.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ellipsis.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/emacron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..81d274da --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/emacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/emdash.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/emdash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/emdash.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/emdash.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/endash.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/endash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/endash.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/endash.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eng.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eng.glif new file mode 100644 index 00000000..f633f031 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eng.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eogonek.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..4026fd44 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eogonek.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal.end.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal.end.glif new file mode 100644 index 00000000..f9278400 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/equal.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/equal.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal.middle.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal.middle.glif new file mode 100644 index 00000000..08469830 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal.start.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal.start.glif new file mode 100644 index 00000000..ea943abb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_asciitilde.liga.glif new file mode 100644 index 00000000..d06f2a6e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_asciitilde.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_bar.end.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_bar.end.glif new file mode 100644 index 00000000..8cd5427c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_bar.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_bar.liga.glif new file mode 100644 index 00000000..4dfebd51 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_bar.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_bar_bar.end.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_bar_bar.end.glif new file mode 100644 index 00000000..e4d44ae0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_bar_bar.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_bar_bar.liga.glif new file mode 100644 index 00000000..8f53b73f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_bar_bar.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_bar_bar_equal.middle.glif new file mode 100644 index 00000000..e53f4c0d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_bar_bar_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_bar_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_bar_equal.middle.glif new file mode 100644 index 00000000..91a400e2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_bar_equal.middle.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_colon_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_colon_equal.middle.glif new file mode 100644 index 00000000..fb3ddb48 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_colon_equal.middle.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_equal.liga.glif new file mode 100644 index 00000000..4c40e574 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_equal.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_equal_equal.liga.glif new file mode 100644 index 00000000..0502b9e4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_equal_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_exclam_equal.middle.glif new file mode 100644 index 00000000..c4fe097f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_exclam_equal.middle.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_greater.end.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_greater.end.glif new file mode 100644 index 00000000..5dea69d8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_greater.end.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_greater.liga.glif new file mode 100644 index 00000000..bb7d3337 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_greater_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_greater_equal.middle.glif new file mode 100644 index 00000000..747dcb47 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_greater_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_greater_greater.end.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_greater_greater.end.glif new file mode 100644 index 00000000..de1f974d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_greater_greater.end.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_greater_greater.liga.glif new file mode 100644 index 00000000..d93514f5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_greater_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_greater_greater_equal.m.glif new file mode 100644 index 00000000..b7474fa2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_greater_greater_equal.m.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_less.end.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_less.end.glif new file mode 100644 index 00000000..0303e05c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_less.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_less.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_less.liga.glif new file mode 100644 index 00000000..02b4f932 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_less.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_less_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_less_equal.middle.glif new file mode 100644 index 00000000..43ec3614 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_less_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_less_less.end.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_less_less.end.glif new file mode 100644 index 00000000..98c9c510 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_less_less.end.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_less_less.liga.glif new file mode 100644 index 00000000..b71f997a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_less_less.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_less_less_equal.middle.glif new file mode 100644 index 00000000..e878cb29 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_less_less_equal.middle.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_slash.end.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_slash.end.glif new file mode 100644 index 00000000..4eba653a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_slash.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_slash.liga.glif new file mode 100644 index 00000000..fcd97588 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_slash.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_slash_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_slash_equal.middle.glif new file mode 100644 index 00000000..1b80f189 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_slash_equal.middle.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_slash_slash.end.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_slash_slash.end.glif new file mode 100644 index 00000000..e26ec9e9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_slash_slash.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_slash_slash.liga.glif new file mode 100644 index 00000000..1f18d885 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_slash_slash.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_slash_slash_equal.middle.glif new file mode 100644 index 00000000..977e0dff --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/equal_slash_slash_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eth.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eth.glif new file mode 100644 index 00000000..3e641821 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/eth.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/etilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/etilde.glif new file mode 100644 index 00000000..e1399a0e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/etilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/exclam.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/exclam.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/exclam.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/exclam.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/exclam_asciitilde.liga.glif new file mode 100644 index 00000000..c0e1c338 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/exclam_asciitilde.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/exclam_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/exclam_equal.liga.glif new file mode 100644 index 00000000..c1016da1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/exclam_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/exclam_equal_equal.liga.glif new file mode 100644 index 00000000..560174ca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/exclam_equal_equal.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/exclam_exclam.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/exclam_exclam.liga.glif new file mode 100644 index 00000000..92766d8a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/exclam_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/exclam_exclam_period.liga.glif new file mode 100644 index 00000000..11d9559b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/exclam_exclam_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/exclamdown.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/exclamdown.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/exclamdown.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/exclamdown.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/f.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/f.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/f.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/f.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/five.den.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/five.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/five.den.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/five.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/five.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/five.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/five.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/five.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/five.inf.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/five.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/five.inf.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/five.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/five.num.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/five.num.glif new file mode 100644 index 00000000..1e32166f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/five.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/five.sup.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/five.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/five.sup.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/five.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/fiveeighths.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/fiveeighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/fiveeighths.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/fiveeighths.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/fivesixths.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/fivesixths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/fivesixths.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/fivesixths.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/four.den.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/four.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/four.den.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/four.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/four.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/four.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/four.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/four.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/four.inf.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/four.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/four.inf.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/four.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/four.num.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/four.num.glif new file mode 100644 index 00000000..62ef719b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/four.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/four.sup.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/four.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/four.sup.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/four.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/fourfifths.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/fourfifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/fourfifths.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/fourfifths.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/fracbar.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/fracbar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/fracbar.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/fracbar.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/fraction.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/fraction.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/fraction.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/fraction.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/fullblock.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/fullblock.glif new file mode 100644 index 00000000..c0d56679 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/fullblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/g.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/g.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/g.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/g.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gbreve.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..f142f0df --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gbreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gcaron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gcaron.glif new file mode 100644 index 00000000..52b707bd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gcircumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..811fb639 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..112a9ba5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gdotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..e49df7e0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/germandbls.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..69e61541 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/germandbls.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gmacron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gmacron.glif new file mode 100644 index 00000000..41bdd865 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gmacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/grave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/grave.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gravecmb.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gravecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gravecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gravecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gravecmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gravecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/gravecmb.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/gravecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/greater.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/greater.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_colon.liga.glif new file mode 100644 index 00000000..019b4571 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_equal.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_equal.glif new file mode 100644 index 00000000..8078c5a1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_equal.liga.glif new file mode 100644 index 00000000..d17e031d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_equal.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_equal.start.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_equal.start.glif new file mode 100644 index 00000000..ee12e183 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_equal.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_equal_greater.liga.glif new file mode 100644 index 00000000..467daafc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_equal_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_greater.liga.glif new file mode 100644 index 00000000..9abe077b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_greater_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_greater_equal.liga.glif new file mode 100644 index 00000000..a6b26ab1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_greater_equal.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_greater_equal.start.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_greater_equal.start.glif new file mode 100644 index 00000000..fb304ef9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_greater_equal.start.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_greater_greater.liga.glif new file mode 100644 index 00000000..ec3f5fa3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_greater_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_greater_hyphen.liga.glif new file mode 100644 index 00000000..013aee55 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_greater_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_greater_hyphen.start.glif new file mode 100644 index 00000000..c130fb75 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_greater_hyphen.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_hyphen.liga.glif new file mode 100644 index 00000000..5fa9581f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_hyphen.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_hyphen.start.glif new file mode 100644 index 00000000..c93a0abe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_hyphen.start.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_hyphen_greater.liga.glif new file mode 100644 index 00000000..12ce7bf4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greater_hyphen_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/greaterequal.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greaterequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/greaterequal.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/greaterequal.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/guillemetleft.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/guillemetleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/guillemetleft.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/guillemetleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/guillemetright.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/guillemetright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/guillemetright.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/guillemetright.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/guilsinglleft.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/guilsinglleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/guilsinglleft.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/guilsinglleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/guilsinglright.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/guilsinglright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/guilsinglright.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/guilsinglright.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/h.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/h.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/h.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/h.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hbar.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..a4e1abcf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hbar.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hbrevebelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hbrevebelow.glif new file mode 100644 index 00000000..321c2fc5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hbrevebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hcedilla.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hcedilla.glif new file mode 100644 index 00000000..9de18948 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hcedilla.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hcircumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..ce6d5951 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hdotbelow.glif new file mode 100644 index 00000000..cbc5ac0b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavydbldashhorzbxd.glif new file mode 100644 index 00000000..1297d774 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavydbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavydbldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavydbldashvertbxd.glif new file mode 100644 index 00000000..c8cf9abd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavydbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavydnbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavydnbxd.glif new file mode 100644 index 00000000..435bb820 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavydnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavydnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavydnhorzbxd.glif new file mode 100644 index 00000000..751d3ccf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavydnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavydnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavydnleftbxd.glif new file mode 100644 index 00000000..37dbaf7e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavydnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavydnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavydnrightbxd.glif new file mode 100644 index 00000000..58264c0e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavydnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyhorzbxd.glif new file mode 100644 index 00000000..4b3bc2a0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyhorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyleftbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyleftbxd.glif new file mode 100644 index 00000000..76b1b8ba --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyleftlightrightbxd.glif new file mode 100644 index 00000000..5b11b136 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyleftlightrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyquaddashhorzbxd.glif new file mode 100644 index 00000000..2daa0594 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyquaddashvertbxd.glif new file mode 100644 index 00000000..5440f402 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyrightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyrightbxd.glif new file mode 100644 index 00000000..b89b2bee --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavytrpldashhorzbxd.glif new file mode 100644 index 00000000..73125c17 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavytrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavytrpldashvertbxd.glif new file mode 100644 index 00000000..c74b5948 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavytrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyupbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyupbxd.glif new file mode 100644 index 00000000..61783fe7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyuphorzbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyuphorzbxd.glif new file mode 100644 index 00000000..6fa146ae --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyupleftbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyupleftbxd.glif new file mode 100644 index 00000000..390d96ed --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyuplightdnbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyuplightdnbxd.glif new file mode 100644 index 00000000..44b43680 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyuplightdnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyuprightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyuprightbxd.glif new file mode 100644 index 00000000..ec6022fe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyvertbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyvertbxd.glif new file mode 100644 index 00000000..0285a4d5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyverthorzbxd.glif new file mode 100644 index 00000000..3fecfaa8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyvertleftbxd.glif new file mode 100644 index 00000000..bd61d260 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyvertrightbxd.glif new file mode 100644 index 00000000..26513ee2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/heavyvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hlinebelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hlinebelow.glif new file mode 100644 index 00000000..dcb5fa6a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hookcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hookcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hookcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hookcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hookcmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hookcmb.glif new file mode 100644 index 00000000..a7d9afbd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hookcmb.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/horizontalbar.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/horizontalbar.glif new file mode 100644 index 00000000..ef4b3086 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/horizontalbar.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hungarumlaut.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hungarumlaut.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hungarumlaut.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hungarumlautcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hungarumlautcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hungarumlautcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hungarumlautcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hungarumlautcmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hungarumlautcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hungarumlautcmb.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hungarumlautcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen.end.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen.end.glif new file mode 100644 index 00000000..d6819476 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hyphen.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/hyphen.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen.middle.glif new file mode 100644 index 00000000..5cae5cc7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen.start.glif new file mode 100644 index 00000000..27012254 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_asciitilde.liga.glif new file mode 100644 index 00000000..567381c1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_asciitilde.liga.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_bar.end.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_bar.end.glif new file mode 100644 index 00000000..bc6faa0b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_bar.end.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_bar.liga.glif new file mode 100644 index 00000000..178fb82f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_bar.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_bar_bar.end.glif new file mode 100644 index 00000000..073414f8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_bar_bar.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_bar_bar.liga.glif new file mode 100644 index 00000000..49e7514d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_bar_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif new file mode 100644 index 00000000..661fbd14 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_bar_hyphen.middle.glif new file mode 100644 index 00000000..2d0d9c49 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_bar_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_greater.end.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_greater.end.glif new file mode 100644 index 00000000..c97721f3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_greater.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_greater.liga.glif new file mode 100644 index 00000000..d65dd0d6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_greater.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_greater_greater.end.glif new file mode 100644 index 00000000..9200af8f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_greater_greater.end.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_greater_greater.liga.glif new file mode 100644 index 00000000..13edf3da --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_greater_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif new file mode 100644 index 00000000..aa74c02c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_greater_hyphen.middle.glif new file mode 100644 index 00000000..b66b8e73 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_greater_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_hyphen.liga.glif new file mode 100644 index 00000000..4c49ab56 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_hyphen.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..52fb755c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_less.end.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_less.end.glif new file mode 100644 index 00000000..668935a3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_less.end.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_less.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_less.liga.glif new file mode 100644 index 00000000..07f9c29e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_less.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_less_hyphen.middle.glif new file mode 100644 index 00000000..4b2387b5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_less_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_less_less.end.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_less_less.end.glif new file mode 100644 index 00000000..f5e562ec --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_less_less.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_less_less.liga.glif new file mode 100644 index 00000000..a4211f77 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_less_less.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_less_less_hyphen.middle.glif new file mode 100644 index 00000000..6a2b8062 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/hyphen_less_less_hyphen.middle.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/i.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/i.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/i.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/i.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/iacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..6c35b468 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/iacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ibreve.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..b87825a9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ibreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/icaron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/icaron.glif new file mode 100644 index 00000000..4728b70a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/icaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/icircumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..7c4b1f81 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/icircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/idieresis.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..8e6ff019 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/idieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/idotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/idotaccent.glif new file mode 100644 index 00000000..ef883f98 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/idotaccent.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/idotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/idotbelow.glif new file mode 100644 index 00000000..0b0d760a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/idotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/igrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..3a9ceed0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/igrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ihookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ihookabove.glif new file mode 100644 index 00000000..75721d6f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ihookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/imacron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..0dd3c5cb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/imacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/iogonek.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..9c7e42bb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/iogonek.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/itilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..87383742 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/itilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/j.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/j.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/j.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/j.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/jcaron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/jcaron.glif new file mode 100644 index 00000000..dbc8d0e1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/jcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/jcircumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..de5fd04b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/k.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/k.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/k.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/k.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/kcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..5dad0931 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/kdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/kdotbelow.glif new file mode 100644 index 00000000..be867cce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/kdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/klinebelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/klinebelow.glif new file mode 100644 index 00000000..8ae03991 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/klinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/l.dot.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/l.dot.glif new file mode 100644 index 00000000..d8633117 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/l.dot.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/l.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/l.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/l.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/l.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..c54e9145 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/layerinfo.plist b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/layerinfo.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/layerinfo.plist rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/layerinfo.plist diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lcaron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..ca4c3976 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lcircumflexbelow.glif new file mode 100644 index 00000000..2261b7b2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..682b4642 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ldotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ldotbelow.glif new file mode 100644 index 00000000..b3e40737 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ldotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftdnheavyrightuplightbxd.glif new file mode 100644 index 00000000..5d6b051e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftdnheavyrightuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lefteighthblock.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lefteighthblock.glif new file mode 100644 index 00000000..bd0981c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lefteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftfiveeighthsblock.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftfiveeighthsblock.glif new file mode 100644 index 00000000..1db3b143 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lefthalfblock.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lefthalfblock.glif new file mode 100644 index 00000000..7ad2b780 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lefthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftheavyrightdnlightbxd.glif new file mode 100644 index 00000000..4559317b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftheavyrightuplightbxd.glif new file mode 100644 index 00000000..982efdde --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftheavyrightvertlightbxd.glif new file mode 100644 index 00000000..e7a0aaa1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftheavyrightvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftlightrightdnheavybxd.glif new file mode 100644 index 00000000..e6209aab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftlightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftlightrightupheavybxd.glif new file mode 100644 index 00000000..306cb4a8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftlightrightvertheavybxd.glif new file mode 100644 index 00000000..2768ff56 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftlightrightvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftquarterblock.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftquarterblock.glif new file mode 100644 index 00000000..0a473fc6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftseveneighthsblock.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftseveneighthsblock.glif new file mode 100644 index 00000000..e6dd7d1a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftthreeeighthsblock.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftthreeeighthsblock.glif new file mode 100644 index 00000000..c6bf4e61 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftthreequartersblock.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftthreequartersblock.glif new file mode 100644 index 00000000..75cb3ef3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftupheavyrightdnlightbxd.glif new file mode 100644 index 00000000..4c8a7ceb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/leftupheavyrightdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/less.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/less.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_asciitilde.liga.glif new file mode 100644 index 00000000..d05b4587 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_asciitilde.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..82ce8577 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_asciitilde_asciitilde.liga.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_asciitilde_greater.liga.glif new file mode 100644 index 00000000..a35e9129 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_asciitilde_greater.liga.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_asterisk.liga.glif new file mode 100644 index 00000000..f855718f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_asterisk_greater.liga.glif new file mode 100644 index 00000000..e3204627 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_asterisk_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_bar.liga.glif new file mode 100644 index 00000000..5b60b5bb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_bar.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_bar_bar.liga.glif new file mode 100644 index 00000000..ebf9f3f4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_bar_bar.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_bar_bar_bar.liga.glif new file mode 100644 index 00000000..c98f4d4b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_bar_bar_bar.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_bar_greater.liga.glif new file mode 100644 index 00000000..a04f24d7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_bar_greater.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_colon.liga.glif new file mode 100644 index 00000000..94a1e377 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_dollar.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_dollar.liga.glif new file mode 100644 index 00000000..2a723b22 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_dollar.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_dollar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_dollar_greater.liga.glif new file mode 100644 index 00000000..a95b4fc9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_dollar_greater.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_equal.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_equal.glif new file mode 100644 index 00000000..f2c4022b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_equal.liga.glif new file mode 100644 index 00000000..37b2378f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_equal.start.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_equal.start.glif new file mode 100644 index 00000000..b54a9959 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_equal.start.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_equal_greater.liga.glif new file mode 100644 index 00000000..8b32b3bb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_equal_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_equal_less.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_equal_less.liga.glif new file mode 100644 index 00000000..789cc121 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_equal_less.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..446b6fa7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_greater.liga.glif new file mode 100644 index 00000000..899b1dc6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_greater.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_hyphen.liga.glif new file mode 100644 index 00000000..91fb1c09 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_hyphen.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_hyphen.start.glif new file mode 100644 index 00000000..92071316 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_hyphen.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_hyphen_greater.liga.glif new file mode 100644 index 00000000..87b18135 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_hyphen_greater.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_hyphen_less.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_hyphen_less.liga.glif new file mode 100644 index 00000000..b405786f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_hyphen_less.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_less.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_less.liga.glif new file mode 100644 index 00000000..4bbc8055 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_less.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_less_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_less_equal.liga.glif new file mode 100644 index 00000000..f88d3017 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_less_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_less_equal.start.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_less_equal.start.glif new file mode 100644 index 00000000..d50e5695 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_less_equal.start.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_less_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_less_hyphen.liga.glif new file mode 100644 index 00000000..50fa7732 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_less_hyphen.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_less_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_less_hyphen.start.glif new file mode 100644 index 00000000..cf54ffcf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_less_hyphen.start.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_less_less.liga.glif new file mode 100644 index 00000000..0bc0122e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_less_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_plus.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_plus.liga.glif new file mode 100644 index 00000000..4faf5922 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_plus.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_plus_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_plus_greater.liga.glif new file mode 100644 index 00000000..3f842213 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_plus_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_slash.liga.glif new file mode 100644 index 00000000..f34ecb19 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_slash.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_slash_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_slash_greater.liga.glif new file mode 100644 index 00000000..aeaf9f20 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/less_slash_greater.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/lessequal.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lessequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/lessequal.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lessequal.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightarcdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightarcdnleftbxd.glif new file mode 100644 index 00000000..1d484f20 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightarcdnleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightarcdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightarcdnrightbxd.glif new file mode 100644 index 00000000..05076814 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightarcdnrightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightarcupleftbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightarcupleftbxd.glif new file mode 100644 index 00000000..64031d10 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightarcupleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightarcuprightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightarcuprightbxd.glif new file mode 100644 index 00000000..a092d3cc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightarcuprightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdbldashhorzbxd.glif new file mode 100644 index 00000000..86ccb4a4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdbldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdbldashvertbxd.glif new file mode 100644 index 00000000..f3dd394c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdiagcrossbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdiagcrossbxd.glif new file mode 100644 index 00000000..92d48845 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdiagcrossbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdiagupleftdnrightbxd.glif new file mode 100644 index 00000000..4d1910e3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdiagupleftdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdiaguprightdnleftbxd.glif new file mode 100644 index 00000000..4f1ebbad --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdiaguprightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdnbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdnbxd.glif new file mode 100644 index 00000000..d7b1d597 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdnhorzbxd.glif new file mode 100644 index 00000000..75d596a4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdnleftbxd.glif new file mode 100644 index 00000000..cc658d9a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdnrightbxd.glif new file mode 100644 index 00000000..3f4b8435 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lighthorzbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lighthorzbxd.glif new file mode 100644 index 00000000..635fe349 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lighthorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightleftbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightleftbxd.glif new file mode 100644 index 00000000..0298983b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightleftheavyrightbxd.glif new file mode 100644 index 00000000..bf08f76b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightleftheavyrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightquaddashhorzbxd.glif new file mode 100644 index 00000000..dbd95fe1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightquaddashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightquaddashvertbxd.glif new file mode 100644 index 00000000..606ecd0e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightrightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightrightbxd.glif new file mode 100644 index 00000000..939651ae --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightshade.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightshade.glif new file mode 100644 index 00000000..0e5291b7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightshade.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lighttrpldashhorzbxd.glif new file mode 100644 index 00000000..5e548fb2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lighttrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lighttrpldashvertbxd.glif new file mode 100644 index 00000000..2ea00890 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lighttrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightupbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightupbxd.glif new file mode 100644 index 00000000..923bfa74 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightupheavydnbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightupheavydnbxd.glif new file mode 100644 index 00000000..2924c44f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightupheavydnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightuphorzbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightuphorzbxd.glif new file mode 100644 index 00000000..ca9dead9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightupleftbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightupleftbxd.glif new file mode 100644 index 00000000..58579aff --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightuprightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightuprightbxd.glif new file mode 100644 index 00000000..ce034691 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightvertbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightvertbxd.glif new file mode 100644 index 00000000..ec92eb1c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightverthorzbxd.glif new file mode 100644 index 00000000..00c6ac2b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightvertleftbxd.glif new file mode 100644 index 00000000..957b2f48 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightvertrightbxd.glif new file mode 100644 index 00000000..faf59d73 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lightvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ligspacer.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ligspacer.glif new file mode 100644 index 00000000..aaf0214e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ligspacer.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/llinebelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/llinebelow.glif new file mode 100644 index 00000000..e948d48f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/llinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lmacrondotbelow.glif new file mode 100644 index 00000000..d75e2965 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lmacrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lslash.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..dedb8c37 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/lslash.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/m.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/m.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/m.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/m.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/macron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/macron.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/macronbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/macronbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/macronbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/macronbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/macroncmb.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/macroncmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/macroncmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/macroncmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/macroncmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/macroncmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/macroncmb.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/macroncmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/macronlowmod.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/macronlowmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/macronlowmod.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/macronlowmod.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/macute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/macute.glif new file mode 100644 index 00000000..3ed5f455 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/macute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/mdotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/mdotaccent.glif new file mode 100644 index 00000000..8e7bd82d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/mdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/mdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/mdotbelow.glif new file mode 100644 index 00000000..ecb83f72 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/mdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/mediumshade.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/mediumshade.glif new file mode 100644 index 00000000..37be9904 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/mediumshade.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/middotcat.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/middotcat.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/middotcat.cap.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/middotcat.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/middotcat.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/middotcat.glif new file mode 100644 index 00000000..adc4d0c1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/middotcat.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/minus.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/minus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/minus.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/minus.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/mu.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/mu.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/mu.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/mu.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/multiply.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/multiply.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/multiply.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/multiply.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/n.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/n.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/n.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/n.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/nacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..ef3f6092 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/nacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/naira.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/naira.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/naira.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/naira.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ncaron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..e28ca9bd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ncaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ncircumflexbelow.glif new file mode 100644 index 00000000..4068663c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ncircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ncommaaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..8a88be65 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ndotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ndotaccent.glif new file mode 100644 index 00000000..92650cfd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ndotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ndotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ndotbelow.glif new file mode 100644 index 00000000..247555b0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ngrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ngrave.glif new file mode 100644 index 00000000..dc1c7837 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/nine.den.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/nine.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/nine.den.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/nine.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/nine.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/nine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/nine.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/nine.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/nine.inf.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/nine.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/nine.inf.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/nine.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/nine.num.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/nine.num.glif new file mode 100644 index 00000000..36a7e399 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/nine.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/nine.sup.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/nine.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/nine.sup.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/nine.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/nlinebelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/nlinebelow.glif new file mode 100644 index 00000000..ca2f59e5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/nlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/notequal.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/notequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/notequal.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/notequal.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ntilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..66cda983 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign.end.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign.end.glif new file mode 100644 index 00000000..c7df123d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign.end.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/numbersign.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/numbersign.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign.middle.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign.middle.glif new file mode 100644 index 00000000..036477ac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign.start.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign.start.glif new file mode 100644 index 00000000..593bb987 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign.start.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_braceleft.liga.glif new file mode 100644 index 00000000..a897351f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_braceleft.liga.glif @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_bracketleft.liga.glif new file mode 100644 index 00000000..631b28ba --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_bracketleft.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_colon.liga.glif new file mode 100644 index 00000000..f5084f7e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_colon.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_equal.liga.glif new file mode 100644 index 00000000..da180282 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_equal.liga.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_exclam.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_exclam.liga.glif new file mode 100644 index 00000000..a5077402 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_parenleft.liga.glif new file mode 100644 index 00000000..0319b8a0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_parenleft.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_question.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_question.liga.glif new file mode 100644 index 00000000..1ddf82f2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_underscore.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_underscore.liga.glif new file mode 100644 index 00000000..6bd15545 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_underscore.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_underscore_parenleft.glif new file mode 100644 index 00000000..f1d0a13a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/numbersign_underscore_parenleft.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/o.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/o.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/o.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/o.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/oacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..03550f50 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/oacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/obreve.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..6f103a35 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/obreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocaron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocaron.glif new file mode 100644 index 00000000..14d5f183 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocircumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..eda210a4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocircumflexacute.glif new file mode 100644 index 00000000..6960a74b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocircumflexdotbelow.glif new file mode 100644 index 00000000..4fac7a3e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocircumflexgrave.glif new file mode 100644 index 00000000..474f822f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocircumflexhookabove.glif new file mode 100644 index 00000000..0f89a1e3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocircumflextilde.glif new file mode 100644 index 00000000..d56b145d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ocircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/odieresis.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..30227154 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/odieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/odotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/odotaccent.glif new file mode 100644 index 00000000..d6b6f476 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/odotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/odotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/odotbelow.glif new file mode 100644 index 00000000..59c1de4c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/odotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/oe.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/oe.glif new file mode 100644 index 00000000..70bc6c7c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/oe.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ogonek.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ogonek.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ogonekcmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ogonekcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ogonekcmb.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ogonekcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ograve.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..8dbc8574 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ograve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohookabove.glif new file mode 100644 index 00000000..1d0ba12a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohorn.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohorn.glif new file mode 100644 index 00000000..3d71c939 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohorn.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohornacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohornacute.glif new file mode 100644 index 00000000..db1ac6e1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohorndotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohorndotbelow.glif new file mode 100644 index 00000000..aea32dcd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohorndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohorngrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohorngrave.glif new file mode 100644 index 00000000..4b1344fe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohorngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohornhookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohornhookabove.glif new file mode 100644 index 00000000..153e0418 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohorntilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohorntilde.glif new file mode 100644 index 00000000..c377e78d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohorntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..75d64db0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/omacron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..67fad8ad --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/omacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/one.den.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/one.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/one.den.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/one.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/one.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/one.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/one.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/one.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/one.inf.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/one.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/one.inf.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/one.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/one.num.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/one.num.glif new file mode 100644 index 00000000..33b01843 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/one.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/one.sup.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/one.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/one.sup.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/one.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/oneeighth.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/oneeighth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/oneeighth.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/oneeighth.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/onefifth.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/onefifth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/onefifth.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/onefifth.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/onehalf.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/onehalf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/onehalf.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/onehalf.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/onequarter.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/onequarter.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/onequarter.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/onequarter.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/onesixth.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/onesixth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/onesixth.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/onesixth.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/onethird.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/onethird.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/onethird.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/onethird.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/oogonek.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/oogonek.glif new file mode 100644 index 00000000..f36d795f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/oogonek.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ordfeminine.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ordfeminine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ordfeminine.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ordfeminine.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ordmasculine.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ordmasculine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ordmasculine.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ordmasculine.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/oslash.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..62cd3647 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/oslash.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/otilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..0d5b24e6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/otilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/p.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/p.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/p.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/p.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/paragraph.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/paragraph.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/paragraph.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/paragraph.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/parenleft.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/parenleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/parenleft.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/parenleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/parenright.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/parenright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/parenright.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/parenright.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/percent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/percent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/percent.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/percent.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/percent_percent.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/percent_percent.liga.glif new file mode 100644 index 00000000..5abf794b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/percent_percent.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/period.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/period.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_equal.liga.glif new file mode 100644 index 00000000..cdbe5fbb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_hyphen.liga.glif new file mode 100644 index 00000000..21effe00 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_period.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_period.liga.glif new file mode 100644 index 00000000..7040f36f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_period_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_period_equal.liga.glif new file mode 100644 index 00000000..b2052c45 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_period_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_period_less.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_period_less.liga.glif new file mode 100644 index 00000000..10eb7b3d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_period_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_period_period.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_period_period.liga.glif new file mode 100644 index 00000000..0495ed42 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_period_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_question.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_question.liga.glif new file mode 100644 index 00000000..64e98fba --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/period_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/periodcentered.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/periodcentered.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/periodcentered.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/periodcentered.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/peso.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/peso.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/peso.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/peso.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/plus.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/plus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/plus.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/plus.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/plus_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/plus_greater.liga.glif new file mode 100644 index 00000000..be748e20 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/plus_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/plus_plus.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/plus_plus.liga.glif new file mode 100644 index 00000000..418144bf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/plus_plus.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/plus_plus_plus.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/plus_plus_plus.liga.glif new file mode 100644 index 00000000..d24d13ee --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/plus_plus_plus.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/plusminus.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/plusminus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/plusminus.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/plusminus.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/primemod.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/primemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/primemod.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/primemod.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/published.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/published.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/published.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/published.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/q.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/q.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/q.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/q.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/question.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/question.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/question.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/question.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/question_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/question_colon.liga.glif new file mode 100644 index 00000000..bc6aa95c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/question_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/question_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/question_equal.liga.glif new file mode 100644 index 00000000..72956003 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/question_equal.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/question_period.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/question_period.liga.glif new file mode 100644 index 00000000..a50382ca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/question_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/question_question.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/question_question.liga.glif new file mode 100644 index 00000000..47df2d1f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/question_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/questiondown.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/questiondown.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/questiondown.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/questiondown.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/quotedbl.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/quotedbl.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/quotedbl.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/quotedbl.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/quotedblbase.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/quotedblbase.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/quotedblbase.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/quotedblbase.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/quotedblleft.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/quotedblleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/quotedblleft.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/quotedblleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/quotedblright.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/quotedblright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/quotedblright.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/quotedblright.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/quoteleft.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/quoteleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/quoteleft.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/quoteleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/quoteright.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/quoteright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/quoteright.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/quoteright.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/quotesinglbase.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/quotesinglbase.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/quotesinglbase.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/quotesinglbase.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/quotesingle.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/quotesingle.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/quotesingle.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/quotesingle.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/r.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/r.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/r.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/r.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/racute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/racute.glif new file mode 100644 index 00000000..c9dfa490 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/racute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rcaron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..3aed1f96 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..469c3240 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rdotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rdotaccent.glif new file mode 100644 index 00000000..215cba07 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rdotbelow.glif new file mode 100644 index 00000000..e47dbefd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/registered.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/registered.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/registered.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/registered.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightdnheavyleftuplightbxd.glif new file mode 100644 index 00000000..76e5e713 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightdnheavyleftuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/righteighthblock.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/righteighthblock.glif new file mode 100644 index 00000000..ee46a32d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/righteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/righthalfblock.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/righthalfblock.glif new file mode 100644 index 00000000..9f3ba315 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/righthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightheavyleftdnlightbxd.glif new file mode 100644 index 00000000..b094d43b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightheavyleftuplightbxd.glif new file mode 100644 index 00000000..a5cf6c07 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightheavyleftvertlightbxd.glif new file mode 100644 index 00000000..38379bf6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightheavyleftvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightlightleftdnheavybxd.glif new file mode 100644 index 00000000..b6a03102 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightlightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightlightleftupheavybxd.glif new file mode 100644 index 00000000..45fbd28d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightlightleftvertheavybxd.glif new file mode 100644 index 00000000..d9ec934c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightlightleftvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightupheavyleftdnlightbxd.glif new file mode 100644 index 00000000..8d951bff --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rightupheavyleftdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ring.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ring.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ring.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ring.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ringcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ringcmb.cap.glif new file mode 100644 index 00000000..83cd9a50 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ringcmb.cap.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ringcmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ringcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ringcmb.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ringcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ringhalfleft.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ringhalfleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ringhalfleft.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ringhalfleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ringhalfright.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ringhalfright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/ringhalfright.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ringhalfright.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rlinebelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rlinebelow.glif new file mode 100644 index 00000000..2897bc87 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rmacrondotbelow.glif new file mode 100644 index 00000000..e7ac8cbf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/rmacrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/s.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/s.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/s.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/s.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/sacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..d4bb4f85 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/sacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/scaron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..8115c750 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/scaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/scedilla.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..e5bd9030 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/scedilla.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/schwa.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/schwa.glif new file mode 100644 index 00000000..92014613 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/schwa.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/scircumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..1b6101a0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/scircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/scommaaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..f1f9486a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/sdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/sdotbelow.glif new file mode 100644 index 00000000..788f7e3b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/sdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/section.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/section.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/section.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/section.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/semicolon.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/semicolon.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/semicolon.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/semicolon.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/semicolon_semicolon.liga.glif new file mode 100644 index 00000000..d21923b8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/semicolon_semicolon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/servicemark.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/servicemark.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/servicemark.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/servicemark.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/seven.den.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/seven.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/seven.den.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/seven.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/seven.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/seven.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/seven.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/seven.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/seven.inf.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/seven.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/seven.inf.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/seven.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/seven.num.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/seven.num.glif new file mode 100644 index 00000000..16a9c596 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/seven.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/seven.sup.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/seven.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/seven.sup.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/seven.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/seveneighths.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/seveneighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/seveneighths.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/seveneighths.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/six.den.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/six.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/six.den.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/six.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/six.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/six.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/six.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/six.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/six.inf.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/six.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/six.inf.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/six.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/six.num.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/six.num.glif new file mode 100644 index 00000000..50b656e5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/six.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/six.sup.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/six.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/six.sup.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/six.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/slash.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/slash.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_asterisk.liga.glif new file mode 100644 index 00000000..ae23ebb3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_backslash.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_backslash.liga.glif new file mode 100644 index 00000000..3aae1fbb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_backslash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_equal.liga.glif new file mode 100644 index 00000000..9e0247aa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_equal.start.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_equal.start.glif new file mode 100644 index 00000000..2ff994f3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_greater.liga.glif new file mode 100644 index 00000000..cf208bd7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_slash.liga.glif new file mode 100644 index 00000000..2bc4a71a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_slash_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_slash_equal.liga.glif new file mode 100644 index 00000000..41408bc9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_slash_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_slash_equal.start.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_slash_equal.start.glif new file mode 100644 index 00000000..09451ae5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_slash_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_slash_slash.liga.glif new file mode 100644 index 00000000..3f943989 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/slash_slash_slash.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/space.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/space.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/space.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/space.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/sterling.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/sterling.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/sterling.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/sterling.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/t.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/t.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/t.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/t.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tbar.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..e820dded --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tbar.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tcaron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..b4273737 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tcedilla.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..db639de0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tcedilla.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tcircumflexbelow.glif new file mode 100644 index 00000000..bbc463d1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..12f01242 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tdotbelow.glif new file mode 100644 index 00000000..cc580d68 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/thorn.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..9f458465 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/thorn.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/three.den.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/three.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/three.den.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/three.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/three.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/three.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/three.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/three.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/three.inf.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/three.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/three.inf.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/three.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/three.num.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/three.num.glif new file mode 100644 index 00000000..cfc019ee --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/three.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/three.sup.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/three.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/three.sup.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/three.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/threeeighths.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/threeeighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/threeeighths.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/threeeighths.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/threefifths.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/threefifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/threefifths.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/threefifths.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/threequarters.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/threequarters.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/threequarters.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/threequarters.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tilde.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tildecmb.cap.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tildecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tildecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tildecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tildecmb.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tildecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/tildecmb.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tildecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tlinebelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tlinebelow.glif new file mode 100644 index 00000000..7769d010 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/tlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/trademark.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/trademark.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/trademark.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/trademark.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/two.den.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/two.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/two.den.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/two.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/two.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/two.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/two.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/two.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/two.inf.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/two.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/two.inf.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/two.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/two.num.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/two.num.glif new file mode 100644 index 00000000..631bd1e0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/two.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/two.sup.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/two.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/two.sup.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/two.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/twodotleader.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/twodotleader.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/twodotleader.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/twodotleader.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/twofifths.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/twofifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/twofifths.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/twofifths.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/twothirds.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/twothirds.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/twothirds.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/twothirds.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/u.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/u.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/u.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/u.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..4a05ee93 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ubreve.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..241a5d13 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ubreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ucaron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ucaron.glif new file mode 100644 index 00000000..65cbba98 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ucaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ucircumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..62078457 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/udieresis.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..4b52d390 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/udieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/udieresisacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/udieresisacute.glif new file mode 100644 index 00000000..65f5fa2e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/udieresisacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/udieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/udieresiscaron.glif new file mode 100644 index 00000000..13e0f8c7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/udieresiscaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/udieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/udieresisgrave.glif new file mode 100644 index 00000000..9d58aafb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/udieresisgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/udieresismacron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/udieresismacron.glif new file mode 100644 index 00000000..d5fed35d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/udieresismacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/udotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/udotbelow.glif new file mode 100644 index 00000000..b960182b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/udotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ugrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..456e40f9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ugrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhookabove.glif new file mode 100644 index 00000000..287b3c6c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhorn.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhorn.glif new file mode 100644 index 00000000..ad7f3708 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhorn.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhornacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhornacute.glif new file mode 100644 index 00000000..cd126a99 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhorndotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhorndotbelow.glif new file mode 100644 index 00000000..aae3410f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhorndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhorngrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhorngrave.glif new file mode 100644 index 00000000..370cda65 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhorngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhornhookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhornhookabove.glif new file mode 100644 index 00000000..5fa24200 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhorntilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhorntilde.glif new file mode 100644 index 00000000..938cc6a6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhorntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..ec131c5f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/umacron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..b9b8efde --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/umacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/underscore.end.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/underscore.end.glif new file mode 100644 index 00000000..f8ba409e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/underscore.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/underscore.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/underscore.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/underscore.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/underscore.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/underscore.middle.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/underscore.middle.glif new file mode 100644 index 00000000..d4d0f7c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/underscore.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/underscore.start.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/underscore.start.glif new file mode 100644 index 00000000..158ff53f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/underscore.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/underscore_bar_underscore.m.glif new file mode 100644 index 00000000..c487a0a9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/underscore_bar_underscore.m.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uni00A_0.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni00A_0.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uni00A_0.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni00A_0.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uni0326.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni0326.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uni0326.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni0326.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni1E_9E_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni1E_9E_.glif new file mode 100644 index 00000000..80201ab3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni1E_9E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni2011.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni2011.glif new file mode 100644 index 00000000..33e0d4b6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni2011.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uni20B_9.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni20B_9.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uni20B_9.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni20B_9.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uni20B_A_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni20B_A_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uni20B_A_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni20B_A_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uni20B_D_.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni20B_D_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uni20B_D_.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni20B_D_.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni2610.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni2610.glif new file mode 100644 index 00000000..4def6986 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni2610.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni2611.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni2611.glif new file mode 100644 index 00000000..b0c9291a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni2611.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni2612.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni2612.glif new file mode 100644 index 00000000..d43307ce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni2612.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni2713.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni2713.glif new file mode 100644 index 00000000..51076c90 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uni2713.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uniA_788.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniA_788.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/uniA_788.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniA_788.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0A_0.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0A_0.glif new file mode 100644 index 00000000..49cb2f65 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0A_0.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0A_1.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0A_1.glif new file mode 100644 index 00000000..60fc84f2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0A_1.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0A_2.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0A_2.glif new file mode 100644 index 00000000..b4482921 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0A_2.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0B_0.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0B_0.glif new file mode 100644 index 00000000..4ef8ce00 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0B_0.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0B_1.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0B_1.glif new file mode 100644 index 00000000..20618515 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0B_1.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0B_2.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0B_2.glif new file mode 100644 index 00000000..d8af7faf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0B_2.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0B_3.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0B_3.glif new file mode 100644 index 00000000..07d2c4a8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uniE_0B_3.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uogonek.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..55cf81fa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uogonek.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/updblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/updblhorzsngbxd.glif new file mode 100644 index 00000000..c536b5d1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/updblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/updblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/updblleftsngbxd.glif new file mode 100644 index 00000000..cd50461d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/updblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/updblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/updblrightsngbxd.glif new file mode 100644 index 00000000..caf6bad1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/updblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upeighthblock.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upeighthblock.glif new file mode 100644 index 00000000..edbfe3c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upeighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uphalfblock.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uphalfblock.glif new file mode 100644 index 00000000..f6006f81 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uphalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upheavydnhorzlightbxd.glif new file mode 100644 index 00000000..a7b1d4bf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upheavydnhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upheavyhorzlightbxd.glif new file mode 100644 index 00000000..eb4dd81b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upheavyleftdnlightbxd.glif new file mode 100644 index 00000000..9cbf59b0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upheavyleftlightbxd.glif new file mode 100644 index 00000000..7ed4ced9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upheavyrightdnlightbxd.glif new file mode 100644 index 00000000..8452dad4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upheavyrightlightbxd.glif new file mode 100644 index 00000000..a5bf10f5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upleftdnleftdnrightquadrant.glif new file mode 100644 index 00000000..e0bdb776 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upleftdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upleftdnrightquadrant.glif new file mode 100644 index 00000000..6ca0f95d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upleftdnrightquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upleftquadrant.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upleftquadrant.glif new file mode 100644 index 00000000..9ab84ae1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upleftuprightdnleftquadrant.glif new file mode 100644 index 00000000..68671562 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upleftuprightdnleftquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upleftuprightdnrightquadrant.glif new file mode 100644 index 00000000..a20ceb2d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upleftuprightdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uplightdnhorzheavybxd.glif new file mode 100644 index 00000000..647b2b2d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uplightdnhorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uplighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uplighthorzheavybxd.glif new file mode 100644 index 00000000..6d690bbf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uplighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uplightleftdnheavybxd.glif new file mode 100644 index 00000000..f815bfcd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uplightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uplightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uplightleftheavybxd.glif new file mode 100644 index 00000000..8e2b67ad --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uplightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uplightrightdnheavybxd.glif new file mode 100644 index 00000000..24fe5f8a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uplightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uplightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uplightrightheavybxd.glif new file mode 100644 index 00000000..5ced40e5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uplightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uprightdnleftdnrightquadrant.glif new file mode 100644 index 00000000..4211b39d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uprightdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uprightdnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uprightdnleftquadrant.glif new file mode 100644 index 00000000..aea6004b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uprightdnleftquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uprightquadrant.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uprightquadrant.glif new file mode 100644 index 00000000..245dc1dd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uprightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upsnghorzdblbxd.glif new file mode 100644 index 00000000..587bfa20 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upsngleftdblbxd.glif new file mode 100644 index 00000000..d6216ce7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upsngrightdblbxd.glif new file mode 100644 index 00000000..c9113237 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/upsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uring.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uring.glif new file mode 100644 index 00000000..eddb2dfa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/uring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/utilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..523d20bb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/utilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/v.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/v.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/v.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/v.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vdotbelow.glif new file mode 100644 index 00000000..93a9c351 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertdblhorzsngbxd.glif new file mode 100644 index 00000000..7747c1b8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertdblhorzsngbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertdblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertdblleftsngbxd.glif new file mode 100644 index 00000000..e40bec15 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertdblleftsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertdblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertdblrightsngbxd.glif new file mode 100644 index 00000000..6d405c18 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertdblrightsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertheavyhorzlightbxd.glif new file mode 100644 index 00000000..975d75b0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertheavyhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertheavyleftlightbxd.glif new file mode 100644 index 00000000..fb1396ce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertheavyleftlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertheavyrightlightbxd.glif new file mode 100644 index 00000000..838b9c9a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertheavyrightlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/verticallinelowmod.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/verticallinelowmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/verticallinelowmod.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/verticallinelowmod.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/verticallinemod.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/verticallinemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/verticallinemod.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/verticallinemod.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertlighthorzheavybxd.glif new file mode 100644 index 00000000..cd66d18c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertlighthorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertlightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertlightleftheavybxd.glif new file mode 100644 index 00000000..97b1edd0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertlightleftheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertlightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertlightrightheavybxd.glif new file mode 100644 index 00000000..209ee774 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertlightrightheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertsnghorzdblbxd.glif new file mode 100644 index 00000000..7426d105 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertsnghorzdblbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertsngleftdblbxd.glif new file mode 100644 index 00000000..088799e5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertsngleftdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertsngrightdblbxd.glif new file mode 100644 index 00000000..5f3058a7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/vertsngrightdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/w.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/w.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/w.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/w.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/w_w_w.liga.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/w_w_w.liga.glif new file mode 100644 index 00000000..c1a74880 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/w_w_w.liga.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/wacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..8be47257 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/wacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/wcircumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..6c5ed098 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/wdieresis.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..48780a49 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/wdieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/wgrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..ac0dfb13 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/wgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/won.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/won.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/won.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/won.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/x.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/x.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/x.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/x.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/xdieresis.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/xdieresis.glif new file mode 100644 index 00000000..d72e89c4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/xdieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/y.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/y.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/y.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/y.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/yacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..5c8c4081 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/yacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ycircumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..1ceea23a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ydieresis.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..c224c922 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ydieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ydotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ydotaccent.glif new file mode 100644 index 00000000..65c93c2e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ydotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ydotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ydotbelow.glif new file mode 100644 index 00000000..123f7706 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ydotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/yen.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/yen.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/yen.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/yen.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ygrave.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ygrave.glif new file mode 100644 index 00000000..1bde8ee0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ygrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/yhookabove.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/yhookabove.glif new file mode 100644 index 00000000..117d67b4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/yhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ymacron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ymacron.glif new file mode 100644 index 00000000..07b1e435 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ymacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ytilde.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ytilde.glif new file mode 100644 index 00000000..bb89b49c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/ytilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/z.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/z.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/z.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/z.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zacute.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..2245dfa8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zcaron.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..d96b0ea6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zcircumflex.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zcircumflex.glif new file mode 100644 index 00000000..f8c328ad --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zdotaccent.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..ea3c654e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zdotbelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zdotbelow.glif new file mode 100644 index 00000000..d2554bdf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zero.den.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zero.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zero.den.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zero.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zero.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zero.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zero.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zero.glif diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zero.inf.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zero.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zero.inf.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zero.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zero.num.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zero.num.glif new file mode 100644 index 00000000..79b7d898 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zero.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zero.sup.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zero.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/glyphs/zero.sup.glif rename to sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zero.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zlinebelow.glif b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zlinebelow.glif new file mode 100644 index 00000000..094273d1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/glyphs/zlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/layercontents.plist b/sources/instances/truetype/IntelOneMono-Light.ufo/layercontents.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/layercontents.plist rename to sources/instances/truetype/IntelOneMono-Light.ufo/layercontents.plist diff --git a/sources/instances/truetype/IntelOneMono-Light.ufo/lib.plist b/sources/instances/truetype/IntelOneMono-Light.ufo/lib.plist new file mode 100644 index 00000000..3b3b5b25 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Light.ufo/lib.plist @@ -0,0 +1,1649 @@ + + + + + com.typemytype.robofont.compileSettings.autohint + 0 + com.typemytype.robofont.compileSettings.checkOutlines + + com.typemytype.robofont.compileSettings.createDummyDSIG + + com.typemytype.robofont.compileSettings.decompose + + com.typemytype.robofont.compileSettings.generateFormat + 1 + com.typemytype.robofont.compileSettings.layerName + foreground + com.typemytype.robofont.compileSettings.releaseMode + 1 + com.typemytype.robofont.italicSlantOffset + 0 + com.typemytype.robofont.segmentType + curve + com.typemytype.robofont.shouldAddPointsInSplineConversion + 1 + public.glyphOrder + + .notdef + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + S + T + U + V + W + X + Y + Z + a + b + c + d + e + f + g + h + i + j + k + l + m + n + o + p + q + r + s + t + u + v + w + x + y + z + period + comma + colon + semicolon + question + exclam + questiondown + exclamdown + ellipsis + twodotleader + quotedblleft + quotedblright + quotedblbase + quoteleft + quoteright + quotesinglbase + guillemetleft + guillemetright + guilsinglleft + guilsinglright + parenleft + parenright + bracketleft + bracketright + braceleft + braceright + slash + backslash + bar + hyphen + endash + emdash + periodcentered + bullet + underscore + ampersand + at + published + copyright + registered + servicemark + trademark + asterisk + dagger + daggerdbl + section + paragraph + zero + one + two + three + four + five + six + seven + eight + nine + colon.fig + plus + divide + minus + equal + notequal + asciitilde + approxequal + multiply + less + greater + lessequal + greaterequal + plusminus + asciicircum + mu + numbersign + percent + quotedbl + quotesingle + ordfeminine + ordmasculine + degree + dollar + sterling + yen + Euro + naira + peso + uni20BA + uni20BD + uni20B9 + bahtthai + won + cent + dong + onehalf + onethird + twothirds + onequarter + threequarters + onefifth + twofifths + threefifths + fourfifths + onesixth + fivesixths + oneeighth + threeeighths + fiveeighths + seveneighths + zero.sup + one.sup + two.sup + three.sup + four.sup + five.sup + six.sup + seven.sup + eight.sup + nine.sup + zero.inf + one.inf + two.inf + three.inf + four.inf + five.inf + six.inf + seven.inf + eight.inf + nine.inf + primemod + dblprimemod + commaturnedmod + apostrophemod + ringhalfleft + ringhalfright + verticallinemod + verticallinelowmod + acute + hungarumlaut + grave + circumflex + caron + breve + tilde + macron + dieresis + dotaccent + ring + uniA788 + macronlowmod + cedilla + ogonek + Aacute + Agrave + Acircumflex + Acircumflexdotbelow + Acircumflexacute + Acircumflexgrave + Acircumflexhookabove + Acircumflextilde + Acaron + Abreve + Abrevedotbelow + Abreveacute + Abrevegrave + Abrevehookabove + Abrevetilde + Atilde + Amacron + Adieresis + Adotaccent + Aring + Ahookabove + Adotbelow + Aogonek + AE + Blinebelow + Cacute + Ccircumflex + Ccaron + Cdotaccent + Ccedilla + Dcaron + Dcircumflexbelow + Dlinebelow + Ddotbelow + Dcroat + Eacute + Egrave + Ecircumflex + Ecircumflexdotbelow + Ecircumflexacute + Ecircumflexgrave + Ecircumflexhookabove + Ecircumflextilde + Ecaron + Ebreve + Etilde + Emacron + Edieresis + Edotaccent + Ehookabove + Edotbelow + Eogonek + Gcircumflex + Gcaron + Gbreve + Gmacron + Gdotaccent + Gcommaaccent + Hcircumflex + Hbrevebelow + Hdotbelow + Hcedilla + Hbar + Iacute + Igrave + Icircumflex + Icaron + Ibreve + Itilde + Imacron + Idieresis + Idotaccent + Ihookabove + Idotbelow + Iogonek + Jcircumflex + Klinebelow + Kcommaaccent + Kdotbelow + Lacute + Lcaron + Lcommaaccent + Lcircumflexbelow + Llinebelow + Lmacrondotbelow + Ldotbelow + L.dot + Lslash + Macute + Mdotaccent + Mdotbelow + Nacute + Ngrave + Ncaron + Ntilde + Ndotaccent + Ncircumflexbelow + Ncommaaccent + Ndotbelow + Nlinebelow + Eng + Oacute + Ohungarumlaut + Ograve + Ocircumflex + Ocircumflexdotbelow + Ocircumflexacute + Ocircumflexgrave + Ocircumflexhookabove + Ocircumflextilde + Ocaron + Obreve + Otilde + Omacron + Odieresis + Odotaccent + Ohookabove + Odotbelow + Oogonek + Oslash + OE + Ohorn + Ohornacute + Ohorngrave + Ohorntilde + Ohornhookabove + Ohorndotbelow + Racute + Rcaron + Rdotaccent + Rmacrondotbelow + Rcommaaccent + Rdotbelow + Rlinebelow + Sacute + Scircumflex + Scaron + Scommaaccent + Sdotbelow + Scedilla + uni1E9E + Tcaron + Tcircumflexbelow + Tcommaaccent + Tdotbelow + Tlinebelow + Tcedilla + Tbar + Uacute + Uhungarumlaut + Ugrave + Ucircumflex + Ucaron + Ubreve + Utilde + Umacron + Udieresis + Udieresisacute + Udieresisgrave + Udieresiscaron + Udieresismacron + Uring + Uhookabove + Udotbelow + Uogonek + Uhorn + Uhornacute + Uhorngrave + Uhorntilde + Uhornhookabove + Uhorndotbelow + Vdotbelow + Wacute + Wgrave + Wcircumflex + Wdieresis + Xdieresis + Yacute + Ygrave + Ycircumflex + Ytilde + Ymacron + Ydieresis + Ydotaccent + Yhookabove + Ydotbelow + Zacute + Zcircumflex + Zcaron + Zdotaccent + Zdotbelow + Zlinebelow + Eth + Thorn + Schwa + aacute + agrave + acircumflex + acircumflexdotbelow + acircumflexacute + acircumflexgrave + acircumflexhookabove + acircumflextilde + acaron + abreve + abrevedotbelow + abreveacute + abrevegrave + abrevehookabove + abrevetilde + atilde + amacron + adieresis + adotaccent + aring + ahookabove + adotbelow + aogonek + ae + blinebelow + cacute + ccircumflex + ccaron + cdotaccent + ccedilla + dcaron + dcircumflexbelow + dlinebelow + ddotbelow + dcroat + eacute + egrave + ecircumflex + ecircumflexdotbelow + ecircumflexacute + ecircumflexgrave + ecircumflexhookabove + ecircumflextilde + ecaron + ebreve + etilde + emacron + edieresis + edotaccent + ehookabove + edotbelow + eogonek + gcircumflex + gcaron + gbreve + gmacron + gdotaccent + gcommaaccent + hcircumflex + hbrevebelow + hlinebelow + hdotbelow + hcedilla + hbar + dotlessi + iacute + igrave + icircumflex + icaron + ibreve + itilde + imacron + idieresis + idotaccent + ihookabove + idotbelow + iogonek + dotlessj + jcircumflex + jcaron + klinebelow + kcommaaccent + kdotbelow + lacute + lcaron + lcommaaccent + lcircumflexbelow + llinebelow + lmacrondotbelow + ldotbelow + l.dot + lslash + macute + mdotaccent + mdotbelow + nacute + ngrave + ncaron + ntilde + ndotaccent + ncircumflexbelow + ncommaaccent + ndotbelow + nlinebelow + eng + oacute + ohungarumlaut + ograve + ocircumflex + ocircumflexdotbelow + ocircumflexacute + ocircumflexgrave + ocircumflexhookabove + ocircumflextilde + ocaron + obreve + otilde + omacron + odieresis + odotaccent + ohookabove + odotbelow + oogonek + oslash + oe + ohorn + ohornacute + ohorngrave + ohorntilde + ohornhookabove + ohorndotbelow + racute + rcaron + rdotaccent + rmacrondotbelow + rcommaaccent + rdotbelow + rlinebelow + sacute + scircumflex + scaron + scommaaccent + sdotbelow + scedilla + germandbls + tcaron + tcircumflexbelow + tcommaaccent + tdotbelow + tlinebelow + tcedilla + tbar + uacute + uhungarumlaut + ugrave + ucircumflex + ucaron + ubreve + utilde + umacron + udieresis + udieresisacute + udieresisgrave + udieresiscaron + udieresismacron + uring + uhookabove + udotbelow + uogonek + uhorn + uhornacute + uhorngrave + uhorntilde + uhornhookabove + uhorndotbelow + vdotbelow + wacute + wgrave + wcircumflex + wdieresis + xdieresis + yacute + ygrave + ycircumflex + ytilde + ymacron + ydieresis + ydotaccent + yhookabove + ydotbelow + zacute + zcircumflex + zcaron + zdotaccent + zdotbelow + zlinebelow + eth + thorn + schwa + space + uni00A0 + zero.num + one.num + two.num + three.num + four.num + five.num + six.num + seven.num + eight.num + nine.num + fraction + fracbar + zero.den + one.den + two.den + three.den + four.den + five.den + six.den + seven.den + eight.den + nine.den + uni2011 + horizontalbar + middotcat + middotcat.cap + acutecmb + hungarumlautcmb + gravecmb + commaaboverightcmb + circumflexcmb + caroncmb + brevecmb + tildecmb + macroncmb + dieresiscmb + dotaccentcmb + ringcmb + commaturnedabovecmb + hookcmb + circumflexbelowcmb + brevebelowcmb + macronbelowcmb + dieresisbelowcmb + dotbelowcmb + uni0326 + cedillacmb + ogonekcmb + dieresisacute + dieresisgrave + dieresiscaron + dieresismacron + breveacute + brevegrave + brevehook + brevetilde + circumflexacute + circumflexgrave + circumflexhook + circumflextilde + acutecmb.cap + hungarumlautcmb.cap + gravecmb.cap + circumflexcmb.cap + caroncmb.cap + brevecmb.cap + tildecmb.cap + macroncmb.cap + dieresiscmb.cap + dotaccentcmb.cap + ringcmb.cap + hookcmb.cap + dieresisacute.cap + dieresisgrave.cap + dieresiscaron.cap + dieresismacron.cap + breveacute.cap + brevegrave.cap + brevehook.cap + brevetilde.cap + circumflexacute.cap + circumflexgrave.cap + circumflexhook.cap + circumflextilde.cap + lighthorzbxd + heavyhorzbxd + lightvertbxd + heavyvertbxd + lighttrpldashhorzbxd + heavytrpldashhorzbxd + lighttrpldashvertbxd + heavytrpldashvertbxd + lightquaddashhorzbxd + heavyquaddashhorzbxd + lightquaddashvertbxd + heavyquaddashvertbxd + lightdnrightbxd + dnlightrightheavybxd + dnheavyrightlightbxd + heavydnrightbxd + lightdnleftbxd + dnlightleftheavybxd + dnheavyleftlightbxd + heavydnleftbxd + lightuprightbxd + uplightrightheavybxd + upheavyrightlightbxd + heavyuprightbxd + lightupleftbxd + uplightleftheavybxd + upheavyleftlightbxd + heavyupleftbxd + lightvertrightbxd + vertlightrightheavybxd + upheavyrightdnlightbxd + dnheavyrightuplightbxd + vertheavyrightlightbxd + dnlightrightupheavybxd + uplightrightdnheavybxd + heavyvertrightbxd + lightvertleftbxd + vertlightleftheavybxd + upheavyleftdnlightbxd + dnheavyleftuplightbxd + vertheavyleftlightbxd + dnlightleftupheavybxd + uplightleftdnheavybxd + heavyvertleftbxd + lightdnhorzbxd + leftheavyrightdnlightbxd + rightheavyleftdnlightbxd + dnlighthorzheavybxd + dnheavyhorzlightbxd + rightlightleftdnheavybxd + leftlightrightdnheavybxd + heavydnhorzbxd + lightuphorzbxd + leftheavyrightuplightbxd + rightheavyleftuplightbxd + uplighthorzheavybxd + upheavyhorzlightbxd + rightlightleftupheavybxd + leftlightrightupheavybxd + heavyuphorzbxd + lightverthorzbxd + leftheavyrightvertlightbxd + rightheavyleftvertlightbxd + vertlighthorzheavybxd + upheavydnhorzlightbxd + dnheavyuphorzlightbxd + vertheavyhorzlightbxd + leftupheavyrightdnlightbxd + rightupheavyleftdnlightbxd + leftdnheavyrightuplightbxd + rightdnheavyleftuplightbxd + dnlightuphorzheavybxd + uplightdnhorzheavybxd + rightlightleftvertheavybxd + leftlightrightvertheavybxd + heavyverthorzbxd + lightdbldashhorzbxd + heavydbldashhorzbxd + lightdbldashvertbxd + heavydbldashvertbxd + dblhorzbxd + dblvertbxd + dnsngrightdblbxd + dndblrightsngbxd + dbldnrightbxd + dnsngleftdblbxd + dndblleftsngbxd + dbldnleftbxd + upsngrightdblbxd + updblrightsngbxd + dbluprightbxd + upsngleftdblbxd + updblleftsngbxd + dblupleftbxd + vertsngrightdblbxd + vertdblrightsngbxd + dblvertrightbxd + vertsngleftdblbxd + vertdblleftsngbxd + dblvertleftbxd + dnsnghorzdblbxd + dndblhorzsngbxd + dbldnhorzbxd + upsnghorzdblbxd + updblhorzsngbxd + dbluphorzbxd + vertsnghorzdblbxd + vertdblhorzsngbxd + dblverthorzbxd + lightarcdnrightbxd + lightarcdnleftbxd + lightarcupleftbxd + lightarcuprightbxd + lightdiaguprightdnleftbxd + lightdiagupleftdnrightbxd + lightdiagcrossbxd + lightleftbxd + lightupbxd + lightrightbxd + lightdnbxd + heavyleftbxd + heavyupbxd + heavyrightbxd + heavydnbxd + lightleftheavyrightbxd + lightupheavydnbxd + heavyleftlightrightbxd + heavyuplightdnbxd + uphalfblock + dneighthblock + dnquarterblock + dnthreeeighthsblock + dnhalfblock + dnfiveeighthsblock + dnthreequartersblock + dnseveneighthsblock + fullblock + leftseveneighthsblock + leftthreequartersblock + leftfiveeighthsblock + lefthalfblock + leftthreeeighthsblock + leftquarterblock + lefteighthblock + righthalfblock + lightshade + mediumshade + darkshade + upeighthblock + righteighthblock + dnleftquadrant + dnrightquadrant + upleftquadrant + upleftdnleftdnrightquadrant + upleftdnrightquadrant + upleftuprightdnleftquadrant + upleftuprightdnrightquadrant + uprightquadrant + uprightdnleftquadrant + uprightdnleftdnrightquadrant + ligspacer + equal.start + equal.middle + equal.end + hyphen.start + hyphen.middle + hyphen.end + underscore.start + underscore.middle + underscore.end + numbersign.start + numbersign.middle + numbersign.end + period_equal.liga + period_period_equal.liga + period_hyphen.liga + colon_equal.liga + equal_equal.liga + exclam_equal.liga + equal_equal_equal.liga + exclam_equal_equal.liga + less_hyphen_less.liga + less_less_hyphen.liga + less_hyphen.liga + less_hyphen_greater.liga + hyphen_greater.liga + hyphen_greater_greater.liga + greater_hyphen_greater.liga + less_equal_less.liga + less_less_equal.liga + less_equal_greater.liga + equal_greater.liga + less_equal.liga + equal_greater_greater.liga + greater_equal_greater.liga + greater_equal.liga + greater_greater_equal.liga + greater_greater_hyphen.liga + greater_hyphen.liga + less_asciitilde_greater.liga + hyphen_less.liga + hyphen_less_less.liga + equal_less.liga + equal_less_less.liga + less_asciitilde_asciitilde.liga + less_asciitilde.liga + asciitilde_asciitilde.liga + asciitilde_greater.liga + asciitilde_asciitilde_greater + less_exclam_hyphen_hyphen.liga + slash_equal.liga + hyphen_bar.liga + bar_hyphen.liga + bar_equal.liga + hyphen_bar_bar.liga + bar_bar_hyphen.liga + equal_bar_bar.liga + bar_bar_equal.liga + equal_bar.liga + slash_slash_equal.liga + equal_slash.liga + equal_slash_slash.liga + equal_colon_equal.middle + equal_exclam_equal.middle + underscore_bar_underscore.m + hyphen_bar_hyphen.middle + equal_bar_equal.middle + hyphen_greater_hyphen.middle + hyphen_greater_greater_hyphen.m + equal_slash_slash_equal.middle + equal_slash_equal.middle + hyphen_bar_bar_hyphen.middle + equal_bar_bar_equal.middle + hyphen_less_hyphen.middle + hyphen_less_less_hyphen.middle + equal_greater_equal.middle + equal_less_equal.middle + equal_greater_greater_equal.m + equal_less_less_equal.middle + less_hyphen.start + greater_hyphen.start + bar_hyphen.start + less_equal.start + greater_equal.start + bar_equal.start + slash_equal.start + slash_slash_equal.start + less_less_hyphen.start + greater_greater_hyphen.start + bar_bar_hyphen.start + less_less_equal.start + greater_greater_equal.start + bar_bar_equal.start + hyphen_less.end + hyphen_greater.end + hyphen_bar.end + equal_less.end + equal_greater.end + equal_bar.end + hyphen_less_less.end + hyphen_greater_greater.end + hyphen_bar_bar.end + equal_less_less.end + equal_greater_greater.end + equal_bar_bar.end + equal_slash.end + equal_slash_slash.end + less_less_less.liga + less_less.liga + less_equal + less_greater.liga + greater_equal + greater_greater.liga + greater_greater_greater.liga + braceleft_bar.liga + bracketleft_bar.liga + less_colon.liga + colon_less.liga + greater_colon.liga + colon_greater.liga + bar_braceright.liga + bar_bracketright.liga + less_bar_bar_bar.liga + less_bar_bar.liga + less_bar.liga + less_bar_greater.liga + bar_greater.liga + bar_bar_greater.liga + bar_bar_bar_greater.liga + less_dollar.liga + less_dollar_greater.liga + dollar_greater.liga + less_plus.liga + less_plus_greater.liga + plus_greater.liga + less_asterisk.liga + less_asterisk_greater.liga + asterisk_greater.liga + slash_asterisk.liga + asterisk_slash.liga + slash_slash_slash.liga + slash_slash.liga + less_slash.liga + less_slash_greater.liga + slash_greater.liga + semicolon_semicolon.liga + colon_colon.liga + colon_colon_colon.liga + period_period.liga + period_period_period.liga + period_period_less.liga + exclam_exclam.liga + question_question.liga + percent_percent.liga + ampersand_ampersand.liga + bar_bar.liga + question_period.liga + question_colon.liga + plus_plus.liga + plus_plus_plus.liga + hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga + asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga + equal_asciitilde.liga + exclam_asciitilde.liga + asciitilde_hyphen.liga + w_w_w.liga + hyphen_asciitilde.liga + asciitilde_at.liga + asciicircum_equal.liga + question_equal.liga + numbersign_exclam.liga + numbersign_equal.liga + numbersign_colon.liga + numbersign_braceleft.liga + numbersign_bracketleft.liga + bracketright_numbersign.liga + numbersign_parenleft.liga + numbersign_question.liga + numbersign_underscore.liga + numbersign_underscore_parenleft + backslash_slash.liga + bar_bar_bar.liga + colon_colon_equal.liga + exclam_exclam_period.liga + period_question.liga + slash_backslash.liga + uniE0A0 + uniE0A1 + uniE0A2 + uniE0B0 + uniE0B1 + uniE0B2 + uniE0B3 + uni2610 + uni2611 + uni2612 + uni2713 + + public.postscriptNames + + Abreveacute + uni1EAE + Abrevedotbelow + uni1EB6 + Abrevegrave + uni1EB0 + Abrevehookabove + uni1EB2 + Abrevetilde + uni1EB4 + Acaron + uni01CD + Acircumflexacute + uni1EA4 + Acircumflexdotbelow + uni1EAC + Acircumflexgrave + uni1EA6 + Acircumflexhookabove + uni1EA8 + Acircumflextilde + uni1EAA + Adotaccent + uni0226 + Adotbelow + uni1EA0 + Ahookabove + uni1EA2 + Blinebelow + uni1E06 + Dcircumflexbelow + uni1E12 + Ddotbelow + uni1E0C + Dlinebelow + uni1E0E + Ecircumflexacute + uni1EBE + Ecircumflexdotbelow + uni1EC6 + Ecircumflexgrave + uni1EC0 + Ecircumflexhookabove + uni1EC2 + Ecircumflextilde + uni1EC4 + Edotbelow + uni1EB8 + Ehookabove + uni1EBA + Etilde + uni1EBC + Gcommaaccent + uni0122 + Gmacron + uni1E20 + Hbrevebelow + uni1E2A + Hcedilla + uni1E28 + Hdotbelow + uni1E24 + Icaron + uni01CF + Idotbelow + uni1ECA + Ihookabove + uni1EC8 + Kcommaaccent + uni0136 + Kdotbelow + uni1E32 + Klinebelow + uni1E34 + L.dot + Ldot + Lcircumflexbelow + uni1E3C + Lcommaaccent + uni013B + Ldotbelow + uni1E36 + Llinebelow + uni1E3A + Lmacrondotbelow + uni1E38 + Macute + uni1E3E + Mdotaccent + uni1E40 + Mdotbelow + uni1E42 + Ncircumflexbelow + uni1E4A + Ncommaaccent + uni0145 + Ndotaccent + uni1E44 + Ndotbelow + uni1E46 + Ngrave + uni01F8 + Nlinebelow + uni1E48 + Ocaron + uni01D1 + Ocircumflexacute + uni1ED0 + Ocircumflexdotbelow + uni1ED8 + Ocircumflexgrave + uni1ED2 + Ocircumflexhookabove + uni1ED4 + Ocircumflextilde + uni1ED6 + Odotaccent + uni022E + Odotbelow + uni1ECC + Ohookabove + uni1ECE + Ohornacute + uni1EDA + Ohorndotbelow + uni1EE2 + Ohorngrave + uni1EDC + Ohornhookabove + uni1EDE + Ohorntilde + uni1EE0 + Oogonek + uni01EA + Rcommaaccent + uni0156 + Rdotaccent + uni1E58 + Rdotbelow + uni1E5A + Rlinebelow + uni1E5E + Rmacrondotbelow + uni1E5C + Scedilla + uni015E + Schwa + uni018F + Scommaaccent + uni0218 + Sdotbelow + uni1E62 + Tcedilla + uni0162 + Tcircumflexbelow + uni1E70 + Tcommaaccent + uni021A + Tdotbelow + uni1E6C + Tlinebelow + uni1E6E + Ucaron + uni01D3 + Udieresisacute + uni01D7 + Udieresiscaron + uni01D9 + Udieresisgrave + uni01DB + Udieresismacron + uni01D5 + Udotbelow + uni1EE4 + Uhookabove + uni1EE6 + Uhornacute + uni1EE8 + Uhorndotbelow + uni1EF0 + Uhorngrave + uni1EEA + Uhornhookabove + uni1EEC + Uhorntilde + uni1EEE + Vdotbelow + uni1E7E + Xdieresis + uni1E8C + Ydotaccent + uni1E8E + Ydotbelow + uni1EF4 + Yhookabove + uni1EF6 + Ymacron + uni0232 + Ytilde + uni1EF8 + Zcircumflex + uni1E90 + Zdotbelow + uni1E92 + Zlinebelow + uni1E94 + abreveacute + uni1EAF + abrevedotbelow + uni1EB7 + abrevegrave + uni1EB1 + abrevehookabove + uni1EB3 + abrevetilde + uni1EB5 + acaron + uni01CE + acircumflexacute + uni1EA5 + acircumflexdotbelow + uni1EAD + acircumflexgrave + uni1EA7 + acircumflexhookabove + uni1EA9 + acircumflextilde + uni1EAB + acutecmb + uni0301 + acutecmb.cap + uni0301.cap + adotaccent + uni0227 + adotbelow + uni1EA1 + ahookabove + uni1EA3 + apostrophemod + uni02BC + bahtthai + uni0E3F + blinebelow + uni1E07 + breveacute + uni02D80301 + breveacute.cap + uni02D80301.cap + brevebelowcmb + uni032E + brevecmb + uni0306 + brevecmb.cap + uni0306.cap + brevegrave + uni02D80300 + brevegrave.cap + uni02D80300.cap + brevehook + uni02D80309 + brevehook.cap + uni02D80309.cap + brevetilde + uni02D80303 + brevetilde.cap + uni02D80303.cap + caroncmb + uni030C + caroncmb.cap + uni030C.cap + cedillacmb + uni0327 + circumflexacute + uni02C60301 + circumflexacute.cap + uni02C60301.cap + circumflexbelowcmb + uni032D + circumflexcmb + uni0302 + circumflexcmb.cap + uni0302.cap + circumflexgrave + uni02C60300 + circumflexgrave.cap + uni02C60300.cap + circumflexhook + uni02C60309 + circumflexhook.cap + uni02C60309.cap + circumflextilde + uni02C60303 + circumflextilde.cap + uni02C60303.cap + commaaboverightcmb + uni0315 + commaturnedabovecmb + uni0312 + commaturnedmod + uni02BB + dblprimemod + uni02BA + dcircumflexbelow + uni1E13 + ddotbelow + uni1E0D + dieresisacute + uni00A80301 + dieresisacute.cap + uni00A80301.cap + dieresisbelowcmb + uni0324 + dieresiscaron + uni00A8030C + dieresiscaron.cap + uni00A8030C.cap + dieresiscmb + uni0308 + dieresiscmb.cap + uni0308.cap + dieresisgrave + uni00A80300 + dieresisgrave.cap + uni00A80300.cap + dieresismacron + uni00A80304 + dieresismacron.cap + uni00A80304.cap + dlinebelow + uni1E0F + dotaccentcmb + uni0307 + dotaccentcmb.cap + uni0307.cap + dotbelowcmb + uni0323 + dotlessj + uni0237 + ecircumflexacute + uni1EBF + ecircumflexdotbelow + uni1EC7 + ecircumflexgrave + uni1EC1 + ecircumflexhookabove + uni1EC3 + ecircumflextilde + uni1EC5 + edotbelow + uni1EB9 + ehookabove + uni1EBB + etilde + uni1EBD + gcommaaccent + uni0123 + gmacron + uni1E21 + gravecmb + uni0300 + gravecmb.cap + uni0300.cap + guillemetleft + uni00AB + guillemetright + uni00BB + hbrevebelow + uni1E2B + hcedilla + uni1E29 + hdotbelow + uni1E25 + hlinebelow + uni1E96 + hookcmb + uni0309 + hookcmb.cap + uni0309.cap + horizontalbar + uni2015 + hungarumlautcmb + uni030B + hungarumlautcmb.cap + uni030B.cap + icaron + uni01D0 + idotaccent + i.dot + idotbelow + uni1ECB + ihookabove + uni1EC9 + jcaron + uni01F0 + kcommaaccent + uni0137 + kdotbelow + uni1E33 + klinebelow + uni1E35 + l.dot + ldot + lcircumflexbelow + uni1E3D + lcommaaccent + uni013C + ldotbelow + uni1E37 + llinebelow + uni1E3B + lmacrondotbelow + uni1E39 + macronbelowcmb + uni0331 + macroncmb + uni0304 + macroncmb.cap + uni0304.cap + macronlowmod + uni02CD + macute + uni1E3F + mdotaccent + uni1E41 + mdotbelow + uni1E43 + naira + uni20A6 + ncircumflexbelow + uni1E4B + ncommaaccent + uni0146 + ndotaccent + uni1E45 + ndotbelow + uni1E47 + ngrave + uni01F9 + nlinebelow + uni1E49 + ocaron + uni01D2 + ocircumflexacute + uni1ED1 + ocircumflexdotbelow + uni1ED9 + ocircumflexgrave + uni1ED3 + ocircumflexhookabove + uni1ED5 + ocircumflextilde + uni1ED7 + odotaccent + uni022F + odotbelow + uni1ECD + ogonekcmb + uni0328 + ohookabove + uni1ECF + ohornacute + uni1EDB + ohorndotbelow + uni1EE3 + ohorngrave + uni1EDD + ohornhookabove + uni1EDF + ohorntilde + uni1EE1 + oogonek + uni01EB + peso + uni20B1 + primemod + uni02B9 + published + uni2117 + rcommaaccent + uni0157 + rdotaccent + uni1E59 + rdotbelow + uni1E5B + ringcmb + uni030A + ringcmb.cap + uni030A.cap + ringhalfleft + uni02BF + ringhalfright + uni02BE + rlinebelow + uni1E5F + rmacrondotbelow + uni1E5D + scedilla + uni015F + schwa + uni0259 + scommaaccent + uni0219 + sdotbelow + uni1E63 + servicemark + uni2120 + tcedilla + uni0163 + tcircumflexbelow + uni1E71 + tcommaaccent + uni021B + tdotbelow + uni1E6D + tildecmb + uni0303 + tildecmb.cap + uni0303.cap + tlinebelow + uni1E6F + twodotleader + uni2025 + ucaron + uni01D4 + udieresisacute + uni01D8 + udieresiscaron + uni01DA + udieresisgrave + uni01DC + udieresismacron + uni01D6 + udotbelow + uni1EE5 + uhookabove + uni1EE7 + uhornacute + uni1EE9 + uhorndotbelow + uni1EF1 + uhorngrave + uni1EEB + uhornhookabove + uni1EED + uhorntilde + uni1EEF + uni1E9E + uni1E9E + vdotbelow + uni1E7F + verticallinelowmod + uni02CC + verticallinemod + uni02C8 + won + uni20A9 + xdieresis + uni1E8D + ydotaccent + uni1E8F + ydotbelow + uni1EF5 + yhookabove + uni1EF7 + ymacron + uni0233 + ytilde + uni1EF9 + zcircumflex + uni1E91 + zdotbelow + uni1E93 + zlinebelow + uni1E95 + + + diff --git a/sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/metainfo.plist b/sources/instances/truetype/IntelOneMono-Light.ufo/metainfo.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-Light-quadratic.ufo/metainfo.plist rename to sources/instances/truetype/IntelOneMono-Light.ufo/metainfo.plist diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/features.fea b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/features.fea deleted file mode 100644 index 237879b6..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/features.fea +++ /dev/null @@ -1,368 +0,0 @@ -# ---------------------------- -# INTEL ONE MONO OPENTYPE CODE -# ---------------------------- - -# ---------------- -# Language Systems -# ---------------- - -languagesystem DFLT dflt; -languagesystem latn dflt; -languagesystem latn TRK; -languagesystem latn AZE; -languagesystem latn CRT; -languagesystem latn CAT; - - -# ------- -# Classes -# ------- - -# Base Letters -@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; -@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; - -# Figures -@fig = [zero one two three four five six seven eight nine]; -@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; -@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; -@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; -@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; - -# Marks Above -@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; -@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; - -# Marks Below -@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; - - -# --------------- -# Localized Forms -# --------------- - -feature locl { - script latn; - language TRK; - lookup iTurkish { - sub i by idotaccent; - } iTurkish; - language AZE; - lookup iTurkish; - language CRT; - lookup iTurkish; - language CAT; - sub l periodcentered' l by middotcat; - sub L periodcentered' L by middotcat.cap; - # try fusing them - sub L middotcat.cap by L.dot; - sub L middotcat by L.dot; - sub l middotcat by l.dot; -} locl; - - -# --------------------------------- -# Glyph Composition / Decomposition -# --------------------------------- - -feature ccmp { - - # Decompose unicode lowercase characters whose uppercase counterparts have no unicode. - lookup Decomp { - sub hlinebelow by h macronlowmod; - sub jcaron by j caron; - } Decomp; - - # Replace double above accents by combined drawings. - lookup DblMarks { - sub dieresiscmb acutecmb by dieresisacute; - sub dieresiscmb gravecmb by dieresisgrave; - sub dieresiscmb caroncmb by dieresiscaron; - sub dieresiscmb macroncmb by dieresismacron; - sub brevecmb acutecmb by breveacute; - sub brevecmb gravecmb by brevegrave; - sub brevecmb hookcmb by brevehook; - sub brevecmb tildecmb by brevetilde; - sub circumflexcmb acutecmb by circumflexacute; - sub circumflexcmb gravecmb by circumflexgrave; - sub circumflexcmb hookcmb by circumflexhook; - sub circumflexcmb tildecmb by circumflextilde; - # capital forms - sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; - sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; - sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; - sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; - sub brevecmb.cap acutecmb.cap by breveacute.cap; - sub brevecmb.cap gravecmb.cap by brevegrave.cap; - sub brevecmb.cap hookcmb.cap by brevehook.cap; - sub brevecmb.cap tildecmb.cap by brevetilde.cap; - sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; - sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; - sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; - sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; - } DblMarks; - - # Replace combining marks that follow a uppercase letter by their uppercase form - lookup CapitalMarks { - sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; - sub [@ltrUC] [@lcMarks]' by [@ucMarks]; - } CapitalMarks; - - # Replace letters with dotless counterparts when followed by a combining mark - lookup Dotless { - sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; - sub [i j]' [@lcMarks] by [dotlessi dotlessj]; - } Dotless; - - # Replace e ogonek with pre-drawn eogonek - lookup eogonek { - sub e ogonekcmb by eogonek; - } eogonek; - -} ccmp; - - -# ---------- -# Numerators -# ---------- - -feature numr { - sub @fig by @figNum; -} numr; - -# ------------ -# Denominators -# ------------ - -feature dnom { - sub @fig by @figDen; -} dnom; - -# ----------- -# Superscript -# ----------- - -feature sups { - sub @fig by @figSup; -} sups; - -# --------------------- -# Subscript & Inferiors -# --------------------- - -feature subs { - sub @fig by @figInf; -} subs; - -feature sinf { - sub @fig by @figInf; -} sinf; - - -# --------------------- -# Contextual Alternates -# --------------------- - -feature calt { - # shifts colon to align with math symbols when used together - - sub colon' [plus equal greater less hyphen] by colon.fig; - sub [plus equal less greater hyphen] colon' by colon.fig; - - sub colon' [colon colon.fig] by colon.fig; - sub colon.fig colon' by colon.fig; - -} calt; - - -# -------------- -# Stylistic Sets -# -------------- - -feature ss11 { - featureNames { - name "Raised Colon (Figures Only)"; # Windows English - name 1 0 0 "Raised Colon (Figures Only)"; # Mac English - }; - lookup FigureColonContextual { - sub @fig colon' @fig by colon.fig; - } FigureColonContextual; -} ss11; - -feature ss12 { - featureNames { - name "Raised Colon (Global)"; # Windows English - name 1 0 0 "Raised Colon (Global)"; # Mac English - }; - lookup FigureColon { - sub colon by colon.fig; - } FigureColon; -} ss12; - - -# -------------------- -# Stylistic Alternates -# -------------------- - -feature salt { - lookup FigureColon; # SS12 -} salt; - - -# --------------------------------------------------------------------- -# MARK | Generated: November 23, 2022 - 02:37:54 PM by 'markFeature.py' -# --------------------------------------------------------------------- - -markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; -markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; -markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; -markClass [cedillacmb] @mark_belowcedilla; -markClass [ogonekcmb] @mark_belowogonek; - -feature mark { - - lookup aboveLC{ - pos base [a] mark @mark_aboveLC; - pos base [c] mark @mark_aboveLC; - pos base [dotlessi] mark @mark_aboveLC; - pos base [dotlessj] mark @mark_aboveLC; - pos base [e] mark @mark_aboveLC; - pos base [eogonek] mark @mark_aboveLC; - pos base [g] mark @mark_aboveLC; - pos base [m] mark @mark_aboveLC; - pos base [n] mark @mark_aboveLC; - pos base [o] mark @mark_aboveLC; - pos base [p] mark @mark_aboveLC; - pos base [s] mark @mark_aboveLC; - pos base [u] mark @mark_aboveLC; - pos base [z] mark @mark_aboveLC; - } aboveLC; - - lookup aboveUC{ - pos base [A] mark @mark_aboveUC; - pos base [C] mark @mark_aboveUC; - pos base [E] mark @mark_aboveUC; - pos base [Eogonek] mark @mark_aboveUC; - pos base [G] mark @mark_aboveUC; - pos base [I] mark @mark_aboveUC; - pos base [J] mark @mark_aboveUC; - pos base [M] mark @mark_aboveUC; - pos base [N] mark @mark_aboveUC; - pos base [O] mark @mark_aboveUC; - pos base [P] mark @mark_aboveUC; - pos base [S] mark @mark_aboveUC; - pos base [U] mark @mark_aboveUC; - pos base [Z] mark @mark_aboveUC; - } aboveUC; - - lookup below{ - pos base [C] mark @mark_below; - pos base [Dcroat] mark @mark_below; - pos base [E] mark @mark_below; - pos base [H] mark @mark_below; - pos base [I] mark @mark_below; - pos base [O] mark @mark_below; - pos base [S] mark @mark_below; - pos base [U] mark @mark_below; - pos base [X] mark @mark_below; - pos base [Z] mark @mark_below; - pos base [c] mark @mark_below; - pos base [dcroat] mark @mark_below; - pos base [dotlessi] mark @mark_below; - pos base [e] mark @mark_below; - pos base [h] mark @mark_below; - pos base [o] mark @mark_below; - pos base [s] mark @mark_below; - pos base [u] mark @mark_below; - pos base [x] mark @mark_below; - pos base [z] mark @mark_below; - } below; - - lookup belowcedilla{ - pos base [Z] mark @mark_belowcedilla; - pos base [z] mark @mark_belowcedilla; - } belowcedilla; - - lookup belowogonek{ - pos base [A] mark @mark_belowogonek; - pos base [E] mark @mark_belowogonek; - pos base [I] mark @mark_belowogonek; - pos base [O] mark @mark_belowogonek; - pos base [U] mark @mark_belowogonek; - pos base [a] mark @mark_belowogonek; - pos base [dotlessi] mark @mark_belowogonek; - pos base [e] mark @mark_belowogonek; - pos base [o] mark @mark_belowogonek; - pos base [u] mark @mark_belowogonek; - } belowogonek; - -} mark; - -@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; -@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; - -table GDEF { - GlyphClassDef @BASES,,@MARKS,; -} GDEF; - - -# -------------- -# All Alternates -# -------------- - -feature aalt { - sub germandbls from [germandbls uni1E9E]; - sub uni1E9E from [uni1E9E germandbls]; - sub colon from [colon colon.fig]; - sub colon.fig from [colon.fig colon]; - sub eight from [eight eight.den eight.sup eight.num eight.inf]; - sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; - sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; - sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; - sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; - sub five from [five five.inf five.num five.den five.sup]; - sub five.sup from [five.sup five five.inf five.num five.den]; - sub five.den from [five.den five.sup five five.inf five.num]; - sub five.num from [five.num five.den five.sup five five.inf]; - sub five.inf from [five.inf five.num five.den five.sup five]; - sub four from [four four.sup four.num four.den four.inf]; - sub four.inf from [four.inf four four.sup four.num four.den]; - sub four.den from [four.den four.inf four four.sup four.num]; - sub four.num from [four.num four.den four.inf four four.sup]; - sub four.sup from [four.sup four.num four.den four.inf four]; - sub nine from [nine nine.den nine.inf nine.num nine.sup]; - sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; - sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; - sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; - sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; - sub one from [one one.den one.num one.inf one.sup]; - sub one.sup from [one.sup one one.den one.num one.inf]; - sub one.inf from [one.inf one.sup one one.den one.num]; - sub one.num from [one.num one.inf one.sup one one.den]; - sub one.den from [one.den one.num one.inf one.sup one]; - sub seven from [seven seven.inf seven.num seven.sup seven.den]; - sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; - sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; - sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; - sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; - sub six from [six six.num six.sup six.den six.inf]; - sub six.inf from [six.inf six six.num six.sup six.den]; - sub six.den from [six.den six.inf six six.num six.sup]; - sub six.sup from [six.sup six.den six.inf six six.num]; - sub six.num from [six.num six.sup six.den six.inf six]; - sub three from [three three.inf three.den three.num three.sup]; - sub three.sup from [three.sup three three.inf three.den three.num]; - sub three.num from [three.num three.sup three three.inf three.den]; - sub three.den from [three.den three.num three.sup three three.inf]; - sub three.inf from [three.inf three.den three.num three.sup three]; - sub two from [two two.inf two.sup two.num two.den]; - sub two.den from [two.den two two.inf two.sup two.num]; - sub two.num from [two.num two.den two two.inf two.sup]; - sub two.sup from [two.sup two.num two.den two two.inf]; - sub two.inf from [two.inf two.sup two.num two.den two]; - sub zero from [zero zero.sup zero.num zero.den zero.inf]; - sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; - sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; - sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; - sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; -} aalt; diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/fontinfo.plist b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/fontinfo.plist deleted file mode 100644 index 523af41d..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/fontinfo.plist +++ /dev/null @@ -1,407 +0,0 @@ - - - - - ascender - 740 - capHeight - 655 - copyright - Copyright 2023 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) - descender - -260 - familyName - Intel One Mono - guidelines - - italicAngle - -16.0 - openTypeHeadFlags - - 0 - 1 - - openTypeHheaAscender - 1090 - openTypeHheaDescender - -290 - openTypeHheaLineGap - 0 - openTypeNameDesigner - Fred Shallcrass - openTypeNameDesignerURL - http://frerejones.com - openTypeNameLicense - This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL - openTypeNameLicenseURL - https://github.com/intel/intel-one-mono/blob/main/license - openTypeNameManufacturer - Frere-Jones Type LLC - openTypeNameManufacturerURL - http://frerejones.com - openTypeNamePreferredFamilyName - Intel One Mono - openTypeNamePreferredSubfamilyName - Light Italic - openTypeNameRecords - - - encodingID - 0 - languageID - 0 - nameID - 0 - platformID - 1 - string - (C) 2023 Intel Corporation - - - encodingID - 1 - languageID - 1033 - nameID - 0 - platformID - 3 - string - (C) 2023 Intel Corporation - - - encodingID - 0 - languageID - 0 - nameID - 1 - platformID - 1 - string - Intel One Mono Light - - - encodingID - 1 - languageID - 1033 - nameID - 1 - platformID - 3 - string - Intel One Mono Light - - - encodingID - 0 - languageID - 0 - nameID - 2 - platformID - 1 - string - Italic - - - encodingID - 1 - languageID - 1033 - nameID - 2 - platformID - 3 - string - Italic - - - encodingID - 0 - languageID - 0 - nameID - 4 - platformID - 1 - string - Intel One Mono Light Italic - - - encodingID - 1 - languageID - 1033 - nameID - 4 - platformID - 3 - string - Intel One Mono Light Italic - - - encodingID - 0 - languageID - 0 - nameID - 6 - platformID - 1 - string - IntelOneMono-LightItalic - - - encodingID - 1 - languageID - 1033 - nameID - 6 - platformID - 3 - string - IntelOneMono-LightItalic - - - encodingID - 0 - languageID - 0 - nameID - 8 - platformID - 1 - string - Frere-Jones Type LLC - - - encodingID - 1 - languageID - 1033 - nameID - 8 - platformID - 3 - string - Frere-Jones Type LLC - - - encodingID - 0 - languageID - 0 - nameID - 9 - platformID - 1 - string - Fred Shallcrass - - - encodingID - 1 - languageID - 1033 - nameID - 9 - platformID - 3 - string - Fred Shallcrass - - - encodingID - 0 - languageID - 0 - nameID - 11 - platformID - 1 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 11 - platformID - 3 - string - http://frerejones.com - - - encodingID - 0 - languageID - 0 - nameID - 12 - platformID - 1 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 12 - platformID - 3 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 16 - platformID - 3 - string - Intel One Mono - - - encodingID - 1 - languageID - 1033 - nameID - 17 - platformID - 3 - string - Light Italic - - - openTypeOS2CodePageRanges - - 0 - 1 - 4 - 7 - 8 - 29 - - openTypeOS2Panose - - 2 - 11 - 4 - 9 - 2 - 2 - 3 - 9 - 2 - 4 - - openTypeOS2Selection - - 7 - 8 - - openTypeOS2StrikeoutPosition - 286 - openTypeOS2StrikeoutSize - 50 - openTypeOS2Type - - openTypeOS2TypoAscender - 1090 - openTypeOS2TypoDescender - -290 - openTypeOS2TypoLineGap - 0 - openTypeOS2UnicodeRanges - - 0 - 1 - 2 - 29 - 32 - - openTypeOS2VendorID - FRJN - openTypeOS2WeightClass - 300 - openTypeOS2WidthClass - 5 - openTypeOS2WinAscent - 1090 - openTypeOS2WinDescent - 290 - postscriptBlueFuzz - 0 - postscriptBlueScale - 0.05 - postscriptBlueValues - - -15 - 0 - 460 - 475 - 655 - 670 - 710 - 725 - - postscriptDefaultWidthX - 614 - postscriptFamilyBlues - - postscriptFamilyOtherBlues - - postscriptFontName - IntelOneMono-LightItalic - postscriptForceBold - - postscriptFullName - Intel One Mono Light Italic - postscriptIsFixedPitch - - postscriptOtherBlues - - -245 - -230 - - postscriptStemSnapH - - 50 - - postscriptStemSnapV - - 57 - - postscriptUnderlinePosition - -75 - postscriptUnderlineThickness - 50 - styleMapFamilyName - Intel One Mono Light - styleMapStyleName - italic - styleName - Light Italic - unitsPerEm - 1000 - versionMajor - 1 - versionMinor - 3 - xHeight - 460 - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_.dot.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_.dot.glif deleted file mode 100644 index 6c2d2946..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_.dot.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_E_.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_E_.glif deleted file mode 100644 index 91b2ea0a..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_E_.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_breve.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_breve.glif deleted file mode 100644 index 14b74742..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_breve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_caron.glif deleted file mode 100644 index 05b3adbd..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_circumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_circumflex.glif deleted file mode 100644 index 1c933dba..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_circumflexacute.glif deleted file mode 100644 index f932198c..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_circumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_circumflexdotbelow.glif deleted file mode 100644 index e2da52ad..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_circumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_circumflexgrave.glif deleted file mode 100644 index 59bf2717..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_circumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_circumflexhookabove.glif deleted file mode 100644 index d65609e0..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_circumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_circumflextilde.glif deleted file mode 100644 index 170a46f0..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_circumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_dieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_dieresis.glif deleted file mode 100644 index 4acbf2e6..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_dotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_dotaccent.glif deleted file mode 100644 index c19a13a5..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_dotbelow.glif deleted file mode 100644 index 534ef041..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_hookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_hookabove.glif deleted file mode 100644 index d9ca0314..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_horn.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_horn.glif deleted file mode 100644 index 803fa66c..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_horn.glif +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_hornacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_hornacute.glif deleted file mode 100644 index f21d6fa3..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_hornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_horndotbelow.glif deleted file mode 100644 index 61b2f796..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_horndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_horngrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_horngrave.glif deleted file mode 100644 index 17464492..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_horngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_hornhookabove.glif deleted file mode 100644 index 91d74164..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_hornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_horntilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_horntilde.glif deleted file mode 100644 index f2430080..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_horntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_macron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_macron.glif deleted file mode 100644 index abb01c12..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_ogonek.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_ogonek.glif deleted file mode 100644 index ef3a6908..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_ogonek.glif +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_slash.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_slash.glif deleted file mode 100644 index 5b0a169f..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_slash.glif +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_tilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_tilde.glif deleted file mode 100644 index d4c33de9..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_acute.glif deleted file mode 100644 index c449b912..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_caron.glif deleted file mode 100644 index 76961c57..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_commaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_commaaccent.glif deleted file mode 100644 index da835900..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_dotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_dotaccent.glif deleted file mode 100644 index e9be080a..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_dotbelow.glif deleted file mode 100644 index 38d4d9d1..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_linebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_linebelow.glif deleted file mode 100644 index cae0a0a7..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_macrondotbelow.glif deleted file mode 100644 index c3f4f480..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_macrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_acute.glif deleted file mode 100644 index 153d22c3..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_caron.glif deleted file mode 100644 index 729120df..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_cedilla.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_cedilla.glif deleted file mode 100644 index c51b16f7..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_cedilla.glif +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_chwa.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_chwa.glif deleted file mode 100644 index dcf09953..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_chwa.glif +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_circumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_circumflex.glif deleted file mode 100644 index 018d767d..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_commaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_commaaccent.glif deleted file mode 100644 index 0c4ce879..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_dotbelow.glif deleted file mode 100644 index 7bebb2c1..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_caron.glif deleted file mode 100644 index d38f26c0..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_cedilla.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_cedilla.glif deleted file mode 100644 index 4fafa27d..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_cedilla.glif +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_circumflexbelow.glif deleted file mode 100644 index e61163f7..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_circumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_commaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_commaaccent.glif deleted file mode 100644 index 0208bcc5..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_dotbelow.glif deleted file mode 100644 index e93b1dc3..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_horn.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_horn.glif deleted file mode 100644 index 41917d3d..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_horn.glif +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_linebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_linebelow.glif deleted file mode 100644 index 034c54ec..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_acute.glif deleted file mode 100644 index 37dd3ebd..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_breve.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_breve.glif deleted file mode 100644 index 33fa7a47..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_breve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_caron.glif deleted file mode 100644 index c16d807f..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_circumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_circumflex.glif deleted file mode 100644 index a790e335..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_dieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_dieresis.glif deleted file mode 100644 index a6d22fd5..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_dieresisacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_dieresisacute.glif deleted file mode 100644 index ce10b66d..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_dieresisacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_dieresiscaron.glif deleted file mode 100644 index da612539..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_dieresiscaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_dieresisgrave.glif deleted file mode 100644 index 877c3631..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_dieresisgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_dieresismacron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_dieresismacron.glif deleted file mode 100644 index 7ad542b1..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_dieresismacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_dotbelow.glif deleted file mode 100644 index 00dcf823..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_grave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_grave.glif deleted file mode 100644 index a5ae168f..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_hookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_hookabove.glif deleted file mode 100644 index 65ced7a0..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_horn.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_horn.glif deleted file mode 100644 index 9333cb1e..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_horn.glif +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_hornacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_hornacute.glif deleted file mode 100644 index 14489b76..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_hornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_horndotbelow.glif deleted file mode 100644 index 7a4adb1d..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_horndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_horngrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_horngrave.glif deleted file mode 100644 index dad2d04c..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_horngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_hornhookabove.glif deleted file mode 100644 index fe5624cc..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_hornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_horntilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_horntilde.glif deleted file mode 100644 index 1822b4fa..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_horntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_hungarumlaut.glif deleted file mode 100644 index 2fb78f3e..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_hungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_macron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_macron.glif deleted file mode 100644 index f0eb5564..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_ogonek.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_ogonek.glif deleted file mode 100644 index 2468d63e..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_ogonek.glif +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_ring.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_ring.glif deleted file mode 100644 index 757598ba..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_ring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_tilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_tilde.glif deleted file mode 100644 index 52835fdf..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/V_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/V_dotbelow.glif deleted file mode 100644 index c4163b5b..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/V_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/W_acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/W_acute.glif deleted file mode 100644 index 06753034..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/W_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/W_circumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/W_circumflex.glif deleted file mode 100644 index d51dcbeb..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/W_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/W_dieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/W_dieresis.glif deleted file mode 100644 index a1dbedd3..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/W_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/W_grave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/W_grave.glif deleted file mode 100644 index 2809da4b..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/W_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/X_dieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/X_dieresis.glif deleted file mode 100644 index b0987408..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/X_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_acute.glif deleted file mode 100644 index 7d65af08..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_circumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_circumflex.glif deleted file mode 100644 index c5e3ca7c..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_dieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_dieresis.glif deleted file mode 100644 index ea646b6e..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_dotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_dotaccent.glif deleted file mode 100644 index d59b2bf1..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_dotbelow.glif deleted file mode 100644 index e6bf8cef..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_grave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_grave.glif deleted file mode 100644 index 3cf27fc4..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_hookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_hookabove.glif deleted file mode 100644 index dcbc9c93..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_macron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_macron.glif deleted file mode 100644 index 90e1a070..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_tilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_tilde.glif deleted file mode 100644 index abf28289..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Z_acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Z_acute.glif deleted file mode 100644 index ceb80f30..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Z_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Z_caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Z_caron.glif deleted file mode 100644 index 19c6c068..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Z_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Z_circumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Z_circumflex.glif deleted file mode 100644 index a0a028e0..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Z_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Z_dotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Z_dotaccent.glif deleted file mode 100644 index ffb5af8e..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Z_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Z_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Z_dotbelow.glif deleted file mode 100644 index 3dbeff53..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Z_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Z_linebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Z_linebelow.glif deleted file mode 100644 index 939a5dca..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Z_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/aacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/aacute.glif deleted file mode 100644 index d75b4277..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/aacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/abreve.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/abreve.glif deleted file mode 100644 index 78da48c8..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/abreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/abreveacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/abreveacute.glif deleted file mode 100644 index 4e384177..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/abreveacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/abrevedotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/abrevedotbelow.glif deleted file mode 100644 index 255e2bea..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/abrevedotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/abrevegrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/abrevegrave.glif deleted file mode 100644 index 413f0626..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/abrevegrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/abrevehookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/abrevehookabove.glif deleted file mode 100644 index 63e5d07d..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/abrevehookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/abrevetilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/abrevetilde.glif deleted file mode 100644 index 3bbb1796..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/abrevetilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acaron.glif deleted file mode 100644 index 096fb5f5..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acircumflex.glif deleted file mode 100644 index 308143d4..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acircumflexacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acircumflexacute.glif deleted file mode 100644 index 62987f07..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acircumflexdotbelow.glif deleted file mode 100644 index 44f08924..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acircumflexgrave.glif deleted file mode 100644 index 69d9cae1..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acircumflexhookabove.glif deleted file mode 100644 index 3f1eccb5..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acircumflextilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acircumflextilde.glif deleted file mode 100644 index 8de203a2..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/adieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/adieresis.glif deleted file mode 100644 index e7d6d4f9..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/adieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/adotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/adotaccent.glif deleted file mode 100644 index 101f8024..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/adotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/adotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/adotbelow.glif deleted file mode 100644 index fb860dfc..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/adotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ae.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ae.glif deleted file mode 100644 index 0842f943..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ae.glif +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/agrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/agrave.glif deleted file mode 100644 index 36f0f491..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/agrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ahookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ahookabove.glif deleted file mode 100644 index 1b06ca16..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ahookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/amacron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/amacron.glif deleted file mode 100644 index 6ab7e831..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/amacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/aogonek.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/aogonek.glif deleted file mode 100644 index e0fa7480..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/aogonek.glif +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/aring.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/aring.glif deleted file mode 100644 index 51a885d9..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/aring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/atilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/atilde.glif deleted file mode 100644 index c7140942..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/atilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/blinebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/blinebelow.glif deleted file mode 100644 index 54d7feae..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/blinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/breveacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/breveacute.glif deleted file mode 100644 index 5ec4ef96..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/breveacute.glif +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevegrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevegrave.glif deleted file mode 100644 index 8e2c8876..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevegrave.glif +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevehook.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevehook.glif deleted file mode 100644 index bbd1a06d..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevehook.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevetilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevetilde.glif deleted file mode 100644 index ad60f476..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevetilde.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/cacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/cacute.glif deleted file mode 100644 index 361dc585..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/cacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ccaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ccaron.glif deleted file mode 100644 index f4200cbc..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ccaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ccedilla.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ccedilla.glif deleted file mode 100644 index c3e12ecd..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ccedilla.glif +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ccircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ccircumflex.glif deleted file mode 100644 index 7f4e4c13..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ccircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/cdotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/cdotaccent.glif deleted file mode 100644 index 9d96b521..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/cdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflexhook.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflexhook.glif deleted file mode 100644 index dc03d5a6..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflexhook.glif +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflextilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflextilde.glif deleted file mode 100644 index b2f77120..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflextilde.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/commaturnedabovecmb.glif deleted file mode 100644 index e1e43aa4..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/commaturnedabovecmb.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/contents.plist b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/contents.plist deleted file mode 100644 index 9b3fa25c..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/contents.plist +++ /dev/null @@ -1,1374 +0,0 @@ - - - - - .notdef - _notdef.glif - A - A_.glif - AE - A_E_.glif - Aacute - A_acute.glif - Abreve - A_breve.glif - Abreveacute - A_breveacute.glif - Abrevedotbelow - A_brevedotbelow.glif - Abrevegrave - A_brevegrave.glif - Abrevehookabove - A_brevehookabove.glif - Abrevetilde - A_brevetilde.glif - Acaron - A_caron.glif - Acircumflex - A_circumflex.glif - Acircumflexacute - A_circumflexacute.glif - Acircumflexdotbelow - A_circumflexdotbelow.glif - Acircumflexgrave - A_circumflexgrave.glif - Acircumflexhookabove - A_circumflexhookabove.glif - Acircumflextilde - A_circumflextilde.glif - Adieresis - A_dieresis.glif - Adotaccent - A_dotaccent.glif - Adotbelow - A_dotbelow.glif - Agrave - A_grave.glif - Ahookabove - A_hookabove.glif - Amacron - A_macron.glif - Aogonek - A_ogonek.glif - Aring - A_ring.glif - Atilde - A_tilde.glif - B - B_.glif - Blinebelow - B_linebelow.glif - C - C_.glif - Cacute - C_acute.glif - Ccaron - C_caron.glif - Ccedilla - C_cedilla.glif - Ccircumflex - C_circumflex.glif - Cdotaccent - C_dotaccent.glif - D - D_.glif - Dcaron - D_caron.glif - Dcircumflexbelow - D_circumflexbelow.glif - Dcroat - D_croat.glif - Ddotbelow - D_dotbelow.glif - Dlinebelow - D_linebelow.glif - E - E_.glif - Eacute - E_acute.glif - Ebreve - E_breve.glif - Ecaron - E_caron.glif - Ecircumflex - E_circumflex.glif - Ecircumflexacute - E_circumflexacute.glif - Ecircumflexdotbelow - E_circumflexdotbelow.glif - Ecircumflexgrave - E_circumflexgrave.glif - Ecircumflexhookabove - E_circumflexhookabove.glif - Ecircumflextilde - E_circumflextilde.glif - Edieresis - E_dieresis.glif - Edotaccent - E_dotaccent.glif - Edotbelow - E_dotbelow.glif - Egrave - E_grave.glif - Ehookabove - E_hookabove.glif - Emacron - E_macron.glif - Eng - E_ng.glif - Eogonek - E_ogonek.glif - Eth - E_th.glif - Etilde - E_tilde.glif - Euro - E_uro.glif - F - F_.glif - G - G_.glif - Gbreve - G_breve.glif - Gcaron - G_caron.glif - Gcircumflex - G_circumflex.glif - Gcommaaccent - G_commaaccent.glif - Gdotaccent - G_dotaccent.glif - Gmacron - G_macron.glif - H - H_.glif - Hbar - H_bar.glif - Hbrevebelow - H_brevebelow.glif - Hcedilla - H_cedilla.glif - Hcircumflex - H_circumflex.glif - Hdotbelow - H_dotbelow.glif - I - I_.glif - Iacute - I_acute.glif - Ibreve - I_breve.glif - Icaron - I_caron.glif - Icircumflex - I_circumflex.glif - Idieresis - I_dieresis.glif - Idotaccent - I_dotaccent.glif - Idotbelow - I_dotbelow.glif - Igrave - I_grave.glif - Ihookabove - I_hookabove.glif - Imacron - I_macron.glif - Iogonek - I_ogonek.glif - Itilde - I_tilde.glif - J - J_.glif - Jcircumflex - J_circumflex.glif - K - K_.glif - Kcommaaccent - K_commaaccent.glif - Kdotbelow - K_dotbelow.glif - Klinebelow - K_linebelow.glif - L - L_.glif - L.dot - L_.dot.glif - Lacute - L_acute.glif - Lcaron - L_caron.glif - Lcircumflexbelow - L_circumflexbelow.glif - Lcommaaccent - L_commaaccent.glif - Ldotbelow - L_dotbelow.glif - Llinebelow - L_linebelow.glif - Lmacrondotbelow - L_macrondotbelow.glif - Lslash - L_slash.glif - M - M_.glif - Macute - M_acute.glif - Mdotaccent - M_dotaccent.glif - Mdotbelow - M_dotbelow.glif - N - N_.glif - Nacute - N_acute.glif - Ncaron - N_caron.glif - Ncircumflexbelow - N_circumflexbelow.glif - Ncommaaccent - N_commaaccent.glif - Ndotaccent - N_dotaccent.glif - Ndotbelow - N_dotbelow.glif - Ngrave - N_grave.glif - Nlinebelow - N_linebelow.glif - Ntilde - N_tilde.glif - O - O_.glif - OE - O_E_.glif - Oacute - O_acute.glif - Obreve - O_breve.glif - Ocaron - O_caron.glif - Ocircumflex - O_circumflex.glif - Ocircumflexacute - O_circumflexacute.glif - Ocircumflexdotbelow - O_circumflexdotbelow.glif - Ocircumflexgrave - O_circumflexgrave.glif - Ocircumflexhookabove - O_circumflexhookabove.glif - Ocircumflextilde - O_circumflextilde.glif - Odieresis - O_dieresis.glif - Odotaccent - O_dotaccent.glif - Odotbelow - O_dotbelow.glif - Ograve - O_grave.glif - Ohookabove - O_hookabove.glif - Ohorn - O_horn.glif - Ohornacute - O_hornacute.glif - Ohorndotbelow - O_horndotbelow.glif - Ohorngrave - O_horngrave.glif - Ohornhookabove - O_hornhookabove.glif - Ohorntilde - O_horntilde.glif - Ohungarumlaut - O_hungarumlaut.glif - Omacron - O_macron.glif - Oogonek - O_ogonek.glif - Oslash - O_slash.glif - Otilde - O_tilde.glif - P - P_.glif - Q - Q_.glif - R - R_.glif - Racute - R_acute.glif - Rcaron - R_caron.glif - Rcommaaccent - R_commaaccent.glif - Rdotaccent - R_dotaccent.glif - Rdotbelow - R_dotbelow.glif - Rlinebelow - R_linebelow.glif - Rmacrondotbelow - R_macrondotbelow.glif - S - S_.glif - Sacute - S_acute.glif - Scaron - S_caron.glif - Scedilla - S_cedilla.glif - Schwa - S_chwa.glif - Scircumflex - S_circumflex.glif - Scommaaccent - S_commaaccent.glif - Sdotbelow - S_dotbelow.glif - T - T_.glif - Tbar - T_bar.glif - Tcaron - T_caron.glif - Tcedilla - T_cedilla.glif - Tcircumflexbelow - T_circumflexbelow.glif - Tcommaaccent - T_commaaccent.glif - Tdotbelow - T_dotbelow.glif - Thorn - T_horn.glif - Tlinebelow - T_linebelow.glif - U - U_.glif - Uacute - U_acute.glif - Ubreve - U_breve.glif - Ucaron - U_caron.glif - Ucircumflex - U_circumflex.glif - Udieresis - U_dieresis.glif - Udieresisacute - U_dieresisacute.glif - Udieresiscaron - U_dieresiscaron.glif - Udieresisgrave - U_dieresisgrave.glif - Udieresismacron - U_dieresismacron.glif - Udotbelow - U_dotbelow.glif - Ugrave - U_grave.glif - Uhookabove - U_hookabove.glif - Uhorn - U_horn.glif - Uhornacute - U_hornacute.glif - Uhorndotbelow - U_horndotbelow.glif - Uhorngrave - U_horngrave.glif - Uhornhookabove - U_hornhookabove.glif - Uhorntilde - U_horntilde.glif - Uhungarumlaut - U_hungarumlaut.glif - Umacron - U_macron.glif - Uogonek - U_ogonek.glif - Uring - U_ring.glif - Utilde - U_tilde.glif - V - V_.glif - Vdotbelow - V_dotbelow.glif - W - W_.glif - Wacute - W_acute.glif - Wcircumflex - W_circumflex.glif - Wdieresis - W_dieresis.glif - Wgrave - W_grave.glif - X - X_.glif - Xdieresis - X_dieresis.glif - Y - Y_.glif - Yacute - Y_acute.glif - Ycircumflex - Y_circumflex.glif - Ydieresis - Y_dieresis.glif - Ydotaccent - Y_dotaccent.glif - Ydotbelow - Y_dotbelow.glif - Ygrave - Y_grave.glif - Yhookabove - Y_hookabove.glif - Ymacron - Y_macron.glif - Ytilde - Y_tilde.glif - Z - Z_.glif - Zacute - Z_acute.glif - Zcaron - Z_caron.glif - Zcircumflex - Z_circumflex.glif - Zdotaccent - Z_dotaccent.glif - Zdotbelow - Z_dotbelow.glif - Zlinebelow - Z_linebelow.glif - a - a.glif - aacute - aacute.glif - abreve - abreve.glif - abreveacute - abreveacute.glif - abrevedotbelow - abrevedotbelow.glif - abrevegrave - abrevegrave.glif - abrevehookabove - abrevehookabove.glif - abrevetilde - abrevetilde.glif - acaron - acaron.glif - acircumflex - acircumflex.glif - acircumflexacute - acircumflexacute.glif - acircumflexdotbelow - acircumflexdotbelow.glif - acircumflexgrave - acircumflexgrave.glif - acircumflexhookabove - acircumflexhookabove.glif - acircumflextilde - acircumflextilde.glif - acute - acute.glif - acutecmb - acutecmb.glif - acutecmb.cap - acutecmb.cap.glif - adieresis - adieresis.glif - adotaccent - adotaccent.glif - adotbelow - adotbelow.glif - ae - ae.glif - agrave - agrave.glif - ahookabove - ahookabove.glif - amacron - amacron.glif - ampersand - ampersand.glif - aogonek - aogonek.glif - apostrophemod - apostrophemod.glif - approxequal - approxequal.glif - aring - aring.glif - asciicircum - asciicircum.glif - asciitilde - asciitilde.glif - asterisk - asterisk.glif - at - at.glif - atilde - atilde.glif - b - b.glif - backslash - backslash.glif - bahtthai - bahtthai.glif - bar - bar.glif - blinebelow - blinebelow.glif - braceleft - braceleft.glif - braceright - braceright.glif - bracketleft - bracketleft.glif - bracketright - bracketright.glif - breve - breve.glif - breveacute - breveacute.glif - breveacute.cap - breveacute.cap.glif - brevebelowcmb - brevebelowcmb.glif - brevecmb - brevecmb.glif - brevecmb.cap - brevecmb.cap.glif - brevegrave - brevegrave.glif - brevegrave.cap - brevegrave.cap.glif - brevehook - brevehook.glif - brevehook.cap - brevehook.cap.glif - brevetilde - brevetilde.glif - brevetilde.cap - brevetilde.cap.glif - bullet - bullet.glif - c - c.glif - cacute - cacute.glif - caron - caron.glif - caroncmb - caroncmb.glif - caroncmb.cap - caroncmb.cap.glif - ccaron - ccaron.glif - ccedilla - ccedilla.glif - ccircumflex - ccircumflex.glif - cdotaccent - cdotaccent.glif - cedilla - cedilla.glif - cedillacmb - cedillacmb.glif - cent - cent.glif - circumflex - circumflex.glif - circumflexacute - circumflexacute.glif - circumflexacute.cap - circumflexacute.cap.glif - circumflexbelowcmb - circumflexbelowcmb.glif - circumflexcmb - circumflexcmb.glif - circumflexcmb.cap - circumflexcmb.cap.glif - circumflexgrave - circumflexgrave.glif - circumflexgrave.cap - circumflexgrave.cap.glif - circumflexhook - circumflexhook.glif - circumflexhook.cap - circumflexhook.cap.glif - circumflextilde - circumflextilde.glif - circumflextilde.cap - circumflextilde.cap.glif - colon - colon.glif - colon.fig - colon.fig.glif - comma - comma.glif - commaaboverightcmb - commaaboverightcmb.glif - commaturnedabovecmb - commaturnedabovecmb.glif - commaturnedmod - commaturnedmod.glif - copyright - copyright.glif - d - d.glif - dagger - dagger.glif - daggerdbl - daggerdbl.glif - dblprimemod - dblprimemod.glif - dcaron - dcaron.glif - dcircumflexbelow - dcircumflexbelow.glif - dcroat - dcroat.glif - ddotbelow - ddotbelow.glif - degree - degree.glif - dieresis - dieresis.glif - dieresisacute - dieresisacute.glif - dieresisacute.cap - dieresisacute.cap.glif - dieresisbelowcmb - dieresisbelowcmb.glif - dieresiscaron - dieresiscaron.glif - dieresiscaron.cap - dieresiscaron.cap.glif - dieresiscmb - dieresiscmb.glif - dieresiscmb.cap - dieresiscmb.cap.glif - dieresisgrave - dieresisgrave.glif - dieresisgrave.cap - dieresisgrave.cap.glif - dieresismacron - dieresismacron.glif - dieresismacron.cap - dieresismacron.cap.glif - divide - divide.glif - dlinebelow - dlinebelow.glif - dollar - dollar.glif - dong - dong.glif - dotaccent - dotaccent.glif - dotaccentcmb - dotaccentcmb.glif - dotaccentcmb.cap - dotaccentcmb.cap.glif - dotbelowcmb - dotbelowcmb.glif - dotlessi - dotlessi.glif - dotlessj - dotlessj.glif - e - e.glif - eacute - eacute.glif - ebreve - ebreve.glif - ecaron - ecaron.glif - ecircumflex - ecircumflex.glif - ecircumflexacute - ecircumflexacute.glif - ecircumflexdotbelow - ecircumflexdotbelow.glif - ecircumflexgrave - ecircumflexgrave.glif - ecircumflexhookabove - ecircumflexhookabove.glif - ecircumflextilde - ecircumflextilde.glif - edieresis - edieresis.glif - edotaccent - edotaccent.glif - edotbelow - edotbelow.glif - egrave - egrave.glif - ehookabove - ehookabove.glif - eight - eight.glif - eight.den - eight.den.glif - eight.inf - eight.inf.glif - eight.num - eight.num.glif - eight.sup - eight.sup.glif - ellipsis - ellipsis.glif - emacron - emacron.glif - emdash - emdash.glif - endash - endash.glif - eng - eng.glif - eogonek - eogonek.glif - equal - equal.glif - eth - eth.glif - etilde - etilde.glif - exclam - exclam.glif - exclamdown - exclamdown.glif - f - f.glif - five - five.glif - five.den - five.den.glif - five.inf - five.inf.glif - five.num - five.num.glif - five.sup - five.sup.glif - fiveeighths - fiveeighths.glif - fivesixths - fivesixths.glif - four - four.glif - four.den - four.den.glif - four.inf - four.inf.glif - four.num - four.num.glif - four.sup - four.sup.glif - fourfifths - fourfifths.glif - fracbar - fracbar.glif - fraction - fraction.glif - g - g.glif - gbreve - gbreve.glif - gcaron - gcaron.glif - gcircumflex - gcircumflex.glif - gcommaaccent - gcommaaccent.glif - gdotaccent - gdotaccent.glif - germandbls - germandbls.glif - gmacron - gmacron.glif - grave - grave.glif - gravecmb - gravecmb.glif - gravecmb.cap - gravecmb.cap.glif - greater - greater.glif - greaterequal - greaterequal.glif - guillemetleft - guillemetleft.glif - guillemetright - guillemetright.glif - guilsinglleft - guilsinglleft.glif - guilsinglright - guilsinglright.glif - h - h.glif - hbar - hbar.glif - hbrevebelow - hbrevebelow.glif - hcedilla - hcedilla.glif - hcircumflex - hcircumflex.glif - hdotbelow - hdotbelow.glif - hlinebelow - hlinebelow.glif - hookcmb - hookcmb.glif - hookcmb.cap - hookcmb.cap.glif - horizontalbar - horizontalbar.glif - hungarumlaut - hungarumlaut.glif - hungarumlautcmb - hungarumlautcmb.glif - hungarumlautcmb.cap - hungarumlautcmb.cap.glif - hyphen - hyphen.glif - i - i.glif - iacute - iacute.glif - ibreve - ibreve.glif - icaron - icaron.glif - icircumflex - icircumflex.glif - idieresis - idieresis.glif - idotaccent - idotaccent.glif - idotbelow - idotbelow.glif - igrave - igrave.glif - ihookabove - ihookabove.glif - imacron - imacron.glif - iogonek - iogonek.glif - itilde - itilde.glif - j - j.glif - jcaron - jcaron.glif - jcircumflex - jcircumflex.glif - k - k.glif - kcommaaccent - kcommaaccent.glif - kdotbelow - kdotbelow.glif - klinebelow - klinebelow.glif - l - l.glif - l.dot - l.dot.glif - lacute - lacute.glif - lcaron - lcaron.glif - lcircumflexbelow - lcircumflexbelow.glif - lcommaaccent - lcommaaccent.glif - ldotbelow - ldotbelow.glif - less - less.glif - lessequal - lessequal.glif - llinebelow - llinebelow.glif - lmacrondotbelow - lmacrondotbelow.glif - lslash - lslash.glif - m - m.glif - macron - macron.glif - macronbelowcmb - macronbelowcmb.glif - macroncmb - macroncmb.glif - macroncmb.cap - macroncmb.cap.glif - macronlowmod - macronlowmod.glif - macute - macute.glif - mdotaccent - mdotaccent.glif - mdotbelow - mdotbelow.glif - middotcat - middotcat.glif - middotcat.cap - middotcat.cap.glif - minus - minus.glif - mu - mu.glif - multiply - multiply.glif - n - n.glif - nacute - nacute.glif - naira - naira.glif - ncaron - ncaron.glif - ncircumflexbelow - ncircumflexbelow.glif - ncommaaccent - ncommaaccent.glif - ndotaccent - ndotaccent.glif - ndotbelow - ndotbelow.glif - ngrave - ngrave.glif - nine - nine.glif - nine.den - nine.den.glif - nine.inf - nine.inf.glif - nine.num - nine.num.glif - nine.sup - nine.sup.glif - nlinebelow - nlinebelow.glif - notequal - notequal.glif - ntilde - ntilde.glif - numbersign - numbersign.glif - o - o.glif - oacute - oacute.glif - obreve - obreve.glif - ocaron - ocaron.glif - ocircumflex - ocircumflex.glif - ocircumflexacute - ocircumflexacute.glif - ocircumflexdotbelow - ocircumflexdotbelow.glif - ocircumflexgrave - ocircumflexgrave.glif - ocircumflexhookabove - ocircumflexhookabove.glif - ocircumflextilde - ocircumflextilde.glif - odieresis - odieresis.glif - odotaccent - odotaccent.glif - odotbelow - odotbelow.glif - oe - oe.glif - ogonek - ogonek.glif - ogonekcmb - ogonekcmb.glif - ograve - ograve.glif - ohookabove - ohookabove.glif - ohorn - ohorn.glif - ohornacute - ohornacute.glif - ohorndotbelow - ohorndotbelow.glif - ohorngrave - ohorngrave.glif - ohornhookabove - ohornhookabove.glif - ohorntilde - ohorntilde.glif - ohungarumlaut - ohungarumlaut.glif - omacron - omacron.glif - one - one.glif - one.den - one.den.glif - one.inf - one.inf.glif - one.num - one.num.glif - one.sup - one.sup.glif - oneeighth - oneeighth.glif - onefifth - onefifth.glif - onehalf - onehalf.glif - onequarter - onequarter.glif - onesixth - onesixth.glif - onethird - onethird.glif - oogonek - oogonek.glif - ordfeminine - ordfeminine.glif - ordmasculine - ordmasculine.glif - oslash - oslash.glif - otilde - otilde.glif - p - p.glif - paragraph - paragraph.glif - parenleft - parenleft.glif - parenright - parenright.glif - percent - percent.glif - period - period.glif - periodcentered - periodcentered.glif - peso - peso.glif - plus - plus.glif - plusminus - plusminus.glif - primemod - primemod.glif - published - published.glif - q - q.glif - question - question.glif - questiondown - questiondown.glif - quotedbl - quotedbl.glif - quotedblbase - quotedblbase.glif - quotedblleft - quotedblleft.glif - quotedblright - quotedblright.glif - quoteleft - quoteleft.glif - quoteright - quoteright.glif - quotesinglbase - quotesinglbase.glif - quotesingle - quotesingle.glif - r - r.glif - racute - racute.glif - rcaron - rcaron.glif - rcommaaccent - rcommaaccent.glif - rdotaccent - rdotaccent.glif - rdotbelow - rdotbelow.glif - registered - registered.glif - ring - ring.glif - ringcmb - ringcmb.glif - ringcmb.cap - ringcmb.cap.glif - ringhalfleft - ringhalfleft.glif - ringhalfright - ringhalfright.glif - rlinebelow - rlinebelow.glif - rmacrondotbelow - rmacrondotbelow.glif - s - s.glif - sacute - sacute.glif - scaron - scaron.glif - scedilla - scedilla.glif - schwa - schwa.glif - scircumflex - scircumflex.glif - scommaaccent - scommaaccent.glif - sdotbelow - sdotbelow.glif - section - section.glif - semicolon - semicolon.glif - servicemark - servicemark.glif - seven - seven.glif - seven.den - seven.den.glif - seven.inf - seven.inf.glif - seven.num - seven.num.glif - seven.sup - seven.sup.glif - seveneighths - seveneighths.glif - six - six.glif - six.den - six.den.glif - six.inf - six.inf.glif - six.num - six.num.glif - six.sup - six.sup.glif - slash - slash.glif - space - space.glif - sterling - sterling.glif - t - t.glif - tbar - tbar.glif - tcaron - tcaron.glif - tcedilla - tcedilla.glif - tcircumflexbelow - tcircumflexbelow.glif - tcommaaccent - tcommaaccent.glif - tdotbelow - tdotbelow.glif - thorn - thorn.glif - three - three.glif - three.den - three.den.glif - three.inf - three.inf.glif - three.num - three.num.glif - three.sup - three.sup.glif - threeeighths - threeeighths.glif - threefifths - threefifths.glif - threequarters - threequarters.glif - tilde - tilde.glif - tildecmb - tildecmb.glif - tildecmb.cap - tildecmb.cap.glif - tlinebelow - tlinebelow.glif - trademark - trademark.glif - two - two.glif - two.den - two.den.glif - two.inf - two.inf.glif - two.num - two.num.glif - two.sup - two.sup.glif - twodotleader - twodotleader.glif - twofifths - twofifths.glif - twothirds - twothirds.glif - u - u.glif - uacute - uacute.glif - ubreve - ubreve.glif - ucaron - ucaron.glif - ucircumflex - ucircumflex.glif - udieresis - udieresis.glif - udieresisacute - udieresisacute.glif - udieresiscaron - udieresiscaron.glif - udieresisgrave - udieresisgrave.glif - udieresismacron - udieresismacron.glif - udotbelow - udotbelow.glif - ugrave - ugrave.glif - uhookabove - uhookabove.glif - uhorn - uhorn.glif - uhornacute - uhornacute.glif - uhorndotbelow - uhorndotbelow.glif - uhorngrave - uhorngrave.glif - uhornhookabove - uhornhookabove.glif - uhorntilde - uhorntilde.glif - uhungarumlaut - uhungarumlaut.glif - umacron - umacron.glif - underscore - underscore.glif - uni00A0 - uni00A_0.glif - uni0326 - uni0326.glif - uni1E9E - uni1E_9E_.glif - uni2011 - uni2011.glif - uni20B9 - uni20B_9.glif - uni20BA - uni20B_A_.glif - uni20BD - uni20B_D_.glif - uniA788 - uniA_788.glif - uogonek - uogonek.glif - uring - uring.glif - utilde - utilde.glif - v - v.glif - vdotbelow - vdotbelow.glif - verticallinelowmod - verticallinelowmod.glif - verticallinemod - verticallinemod.glif - w - w.glif - wacute - wacute.glif - wcircumflex - wcircumflex.glif - wdieresis - wdieresis.glif - wgrave - wgrave.glif - won - won.glif - x - x.glif - xdieresis - xdieresis.glif - y - y.glif - yacute - yacute.glif - ycircumflex - ycircumflex.glif - ydieresis - ydieresis.glif - ydotaccent - ydotaccent.glif - ydotbelow - ydotbelow.glif - yen - yen.glif - ygrave - ygrave.glif - yhookabove - yhookabove.glif - ymacron - ymacron.glif - ytilde - ytilde.glif - z - z.glif - zacute - zacute.glif - zcaron - zcaron.glif - zcircumflex - zcircumflex.glif - zdotaccent - zdotaccent.glif - zdotbelow - zdotbelow.glif - zero - zero.glif - zero.den - zero.den.glif - zero.inf - zero.inf.glif - zero.num - zero.num.glif - zero.sup - zero.sup.glif - zlinebelow - zlinebelow.glif - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dcaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dcaron.glif deleted file mode 100644 index d87ab7e7..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dcircumflexbelow.glif deleted file mode 100644 index 99254642..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dcroat.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dcroat.glif deleted file mode 100644 index 92553202..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dcroat.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ddotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ddotbelow.glif deleted file mode 100644 index 23c0b3fa..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ddotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresisacute.cap.glif deleted file mode 100644 index 31b6cf68..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresisacute.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresisacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresisacute.glif deleted file mode 100644 index 52a4d261..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresisacute.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresisbelowcmb.glif deleted file mode 100644 index e7bad8fb..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresisbelowcmb.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresiscaron.cap.glif deleted file mode 100644 index 1d5aefd1..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresiscaron.cap.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresiscaron.glif deleted file mode 100644 index c8b62939..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresiscaron.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresisgrave.cap.glif deleted file mode 100644 index 95bd5e76..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresisgrave.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresisgrave.glif deleted file mode 100644 index bc8c9fff..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresisgrave.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresismacron.cap.glif deleted file mode 100644 index 84ab6549..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresismacron.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresismacron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresismacron.glif deleted file mode 100644 index d853b1b3..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresismacron.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dlinebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dlinebelow.glif deleted file mode 100644 index f8089f98..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dotlessj.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dotlessj.glif deleted file mode 100644 index 1e2dec5b..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dotlessj.glif +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eacute.glif deleted file mode 100644 index 40b65bd8..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ebreve.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ebreve.glif deleted file mode 100644 index 61efc8a9..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ebreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecaron.glif deleted file mode 100644 index d90792c5..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecircumflex.glif deleted file mode 100644 index 4f32c9f0..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecircumflexacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecircumflexacute.glif deleted file mode 100644 index fba6ae58..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecircumflexdotbelow.glif deleted file mode 100644 index 340291b6..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecircumflexgrave.glif deleted file mode 100644 index b6913a6e..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecircumflexhookabove.glif deleted file mode 100644 index 63f3918e..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecircumflextilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecircumflextilde.glif deleted file mode 100644 index ecf0611d..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ecircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/edieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/edieresis.glif deleted file mode 100644 index 8796b5a9..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/edieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/edotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/edotaccent.glif deleted file mode 100644 index 58d527e1..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/edotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/edotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/edotbelow.glif deleted file mode 100644 index 4045106e..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/edotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/egrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/egrave.glif deleted file mode 100644 index 5e24108b..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/egrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ehookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ehookabove.glif deleted file mode 100644 index 3f9d22b4..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ehookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eight.num.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eight.num.glif deleted file mode 100644 index 81f07dcc..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eight.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/emacron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/emacron.glif deleted file mode 100644 index d44b0a78..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/emacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eng.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eng.glif deleted file mode 100644 index 581721fa..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eng.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eogonek.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eogonek.glif deleted file mode 100644 index f810ecb5..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eogonek.glif +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eth.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eth.glif deleted file mode 100644 index d0c682ee..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eth.glif +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/etilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/etilde.glif deleted file mode 100644 index 296cb825..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/etilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/five.num.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/five.num.glif deleted file mode 100644 index 72178220..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/five.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/four.num.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/four.num.glif deleted file mode 100644 index 5e556b65..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/four.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gbreve.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gbreve.glif deleted file mode 100644 index bd7f976e..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gbreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gcaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gcaron.glif deleted file mode 100644 index fedbf134..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gcircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gcircumflex.glif deleted file mode 100644 index aa27f802..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gcommaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gcommaaccent.glif deleted file mode 100644 index cb36b054..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gdotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gdotaccent.glif deleted file mode 100644 index 1e221947..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/germandbls.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/germandbls.glif deleted file mode 100644 index 310b248e..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/germandbls.glif +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gmacron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gmacron.glif deleted file mode 100644 index 8618f3ee..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gmacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hbar.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hbar.glif deleted file mode 100644 index 76bda69d..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hbar.glif +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hbrevebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hbrevebelow.glif deleted file mode 100644 index f7d7e090..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hbrevebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hcedilla.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hcedilla.glif deleted file mode 100644 index fb7deb3d..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hcedilla.glif +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hcircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hcircumflex.glif deleted file mode 100644 index 6804ea80..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hdotbelow.glif deleted file mode 100644 index e0551f00..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hlinebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hlinebelow.glif deleted file mode 100644 index 015e499a..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hookcmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hookcmb.glif deleted file mode 100644 index 710c1d62..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hookcmb.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/horizontalbar.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/horizontalbar.glif deleted file mode 100644 index 19ce9f0d..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/horizontalbar.glif +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/iacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/iacute.glif deleted file mode 100644 index dcf6d676..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/iacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ibreve.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ibreve.glif deleted file mode 100644 index 14bb494d..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ibreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/icaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/icaron.glif deleted file mode 100644 index 46c758d4..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/icaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/icircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/icircumflex.glif deleted file mode 100644 index 56d79348..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/icircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/idieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/idieresis.glif deleted file mode 100644 index 6a5df25f..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/idieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/idotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/idotaccent.glif deleted file mode 100644 index 03a06266..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/idotaccent.glif +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/idotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/idotbelow.glif deleted file mode 100644 index a771154b..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/idotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/igrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/igrave.glif deleted file mode 100644 index 6723b8a7..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/igrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ihookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ihookabove.glif deleted file mode 100644 index 18690b70..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ihookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/imacron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/imacron.glif deleted file mode 100644 index 2c733fe1..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/imacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/iogonek.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/iogonek.glif deleted file mode 100644 index ee007e96..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/iogonek.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/itilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/itilde.glif deleted file mode 100644 index 71163931..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/itilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/jcaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/jcaron.glif deleted file mode 100644 index 7d9a2a80..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/jcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/jcircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/jcircumflex.glif deleted file mode 100644 index f74fc5c8..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/jcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/kcommaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/kcommaaccent.glif deleted file mode 100644 index 9fb64759..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/kcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/kdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/kdotbelow.glif deleted file mode 100644 index 95575c63..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/kdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/klinebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/klinebelow.glif deleted file mode 100644 index 8800b5d0..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/klinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/l.dot.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/l.dot.glif deleted file mode 100644 index d40e93ec..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/l.dot.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/lacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/lacute.glif deleted file mode 100644 index 3db42121..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/lacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/lcaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/lcaron.glif deleted file mode 100644 index 35d893dd..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/lcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/lcircumflexbelow.glif deleted file mode 100644 index 24d0feda..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/lcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/lcommaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/lcommaaccent.glif deleted file mode 100644 index 6e14d1b3..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/lcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ldotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ldotbelow.glif deleted file mode 100644 index 0741f492..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ldotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/llinebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/llinebelow.glif deleted file mode 100644 index 3743bbd6..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/llinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/lmacrondotbelow.glif deleted file mode 100644 index 960b63db..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/lmacrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/lslash.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/lslash.glif deleted file mode 100644 index 61307810..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/lslash.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/macute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/macute.glif deleted file mode 100644 index 11cd18da..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/macute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/mdotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/mdotaccent.glif deleted file mode 100644 index f185be08..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/mdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/mdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/mdotbelow.glif deleted file mode 100644 index cb17b3c8..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/mdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/middotcat.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/middotcat.glif deleted file mode 100644 index 6acea800..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/middotcat.glif +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/nacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/nacute.glif deleted file mode 100644 index 15aaa8c2..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/nacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ncaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ncaron.glif deleted file mode 100644 index b6cb7271..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ncaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ncircumflexbelow.glif deleted file mode 100644 index c5e2836b..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ncircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ncommaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ncommaaccent.glif deleted file mode 100644 index 47369a25..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ncommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ndotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ndotaccent.glif deleted file mode 100644 index fc4e9af9..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ndotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ndotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ndotbelow.glif deleted file mode 100644 index 957ed142..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ngrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ngrave.glif deleted file mode 100644 index f7e7d739..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/nine.num.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/nine.num.glif deleted file mode 100644 index 878f7458..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/nine.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/nlinebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/nlinebelow.glif deleted file mode 100644 index 092dc8da..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/nlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ntilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ntilde.glif deleted file mode 100644 index 27d6e99f..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/oacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/oacute.glif deleted file mode 100644 index 27663856..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/oacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/obreve.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/obreve.glif deleted file mode 100644 index 36da4bb7..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/obreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocaron.glif deleted file mode 100644 index dc9b81ba..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocircumflex.glif deleted file mode 100644 index 511acf92..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocircumflexacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocircumflexacute.glif deleted file mode 100644 index 1404176b..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocircumflexdotbelow.glif deleted file mode 100644 index 9bf33e63..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocircumflexgrave.glif deleted file mode 100644 index 6575c7c9..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocircumflexhookabove.glif deleted file mode 100644 index 04b95d5e..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocircumflextilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocircumflextilde.glif deleted file mode 100644 index ca3d3daf..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ocircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/odieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/odieresis.glif deleted file mode 100644 index 328c15a4..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/odieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/odotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/odotaccent.glif deleted file mode 100644 index 962066fe..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/odotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/odotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/odotbelow.glif deleted file mode 100644 index 7330fd8d..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/odotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/oe.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/oe.glif deleted file mode 100644 index fd497265..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/oe.glif +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ograve.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ograve.glif deleted file mode 100644 index 8907c9f5..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ograve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohookabove.glif deleted file mode 100644 index 326798ea..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohorn.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohorn.glif deleted file mode 100644 index e1a280ff..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohorn.glif +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohornacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohornacute.glif deleted file mode 100644 index 7e11a785..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohorndotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohorndotbelow.glif deleted file mode 100644 index 394b3e50..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohorndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohorngrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohorngrave.glif deleted file mode 100644 index bbea5bdb..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohorngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohornhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohornhookabove.glif deleted file mode 100644 index 8f0850c9..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohorntilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohorntilde.glif deleted file mode 100644 index ac180347..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohorntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohungarumlaut.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohungarumlaut.glif deleted file mode 100644 index a8d99148..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ohungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/omacron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/omacron.glif deleted file mode 100644 index 16015005..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/omacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/one.num.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/one.num.glif deleted file mode 100644 index 367c2baa..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/one.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/oogonek.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/oogonek.glif deleted file mode 100644 index 8cdbd2c5..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/oogonek.glif +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/oslash.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/oslash.glif deleted file mode 100644 index 87010353..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/oslash.glif +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/otilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/otilde.glif deleted file mode 100644 index d5457c20..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/otilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/racute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/racute.glif deleted file mode 100644 index 226b72e0..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/racute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/rcaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/rcaron.glif deleted file mode 100644 index 81c1f38d..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/rcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/rcommaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/rcommaaccent.glif deleted file mode 100644 index 4c3e987c..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/rcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/rdotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/rdotaccent.glif deleted file mode 100644 index ca25fd44..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/rdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/rdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/rdotbelow.glif deleted file mode 100644 index 1046df25..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/rdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ringcmb.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ringcmb.cap.glif deleted file mode 100644 index 00bb8b24..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ringcmb.cap.glif +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/rlinebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/rlinebelow.glif deleted file mode 100644 index fe8b4f4e..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/rlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/rmacrondotbelow.glif deleted file mode 100644 index 5d8835f7..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/rmacrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/sacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/sacute.glif deleted file mode 100644 index 1daaf4db..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/sacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/scaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/scaron.glif deleted file mode 100644 index 6f6ba4eb..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/scaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/scedilla.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/scedilla.glif deleted file mode 100644 index f7172daa..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/scedilla.glif +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/schwa.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/schwa.glif deleted file mode 100644 index f414e02c..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/schwa.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/scircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/scircumflex.glif deleted file mode 100644 index d9410ecb..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/scircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/scommaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/scommaaccent.glif deleted file mode 100644 index 6dbd29fd..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/scommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/sdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/sdotbelow.glif deleted file mode 100644 index d99c8f33..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/sdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/seven.num.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/seven.num.glif deleted file mode 100644 index 4376d42c..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/seven.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/six.num.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/six.num.glif deleted file mode 100644 index 119c6dd1..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/six.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tbar.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tbar.glif deleted file mode 100644 index 3d27880b..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tbar.glif +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tcaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tcaron.glif deleted file mode 100644 index b4645cf8..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tcedilla.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tcedilla.glif deleted file mode 100644 index 5ffc91bb..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tcedilla.glif +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tcircumflexbelow.glif deleted file mode 100644 index b4d7d2b8..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tcommaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tcommaaccent.glif deleted file mode 100644 index eb960a0c..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tdotbelow.glif deleted file mode 100644 index ecd6d362..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/thorn.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/thorn.glif deleted file mode 100644 index 2b19d908..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/thorn.glif +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/three.num.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/three.num.glif deleted file mode 100644 index 3898d04c..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/three.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tlinebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tlinebelow.glif deleted file mode 100644 index 10f45889..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/two.num.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/two.num.glif deleted file mode 100644 index 113ff06e..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/two.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uacute.glif deleted file mode 100644 index 4b10a1d1..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ubreve.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ubreve.glif deleted file mode 100644 index 3be1ca9e..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ubreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ucaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ucaron.glif deleted file mode 100644 index 9fed8196..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ucaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ucircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ucircumflex.glif deleted file mode 100644 index 2db7b769..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ucircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/udieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/udieresis.glif deleted file mode 100644 index 765901bb..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/udieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/udieresisacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/udieresisacute.glif deleted file mode 100644 index 7761f0a1..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/udieresisacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/udieresiscaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/udieresiscaron.glif deleted file mode 100644 index 3e94fa72..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/udieresiscaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/udieresisgrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/udieresisgrave.glif deleted file mode 100644 index dca1785e..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/udieresisgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/udieresismacron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/udieresismacron.glif deleted file mode 100644 index 9b6d4d6e..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/udieresismacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/udotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/udotbelow.glif deleted file mode 100644 index 6c3b76b5..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/udotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ugrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ugrave.glif deleted file mode 100644 index ecd28fe1..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ugrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhookabove.glif deleted file mode 100644 index b1bd0ece..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhorn.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhorn.glif deleted file mode 100644 index ab95d761..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhorn.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhornacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhornacute.glif deleted file mode 100644 index b6d2ce22..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhorndotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhorndotbelow.glif deleted file mode 100644 index a543ccbc..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhorndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhorngrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhorngrave.glif deleted file mode 100644 index 7a839e5b..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhorngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhornhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhornhookabove.glif deleted file mode 100644 index e44528b3..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhorntilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhorntilde.glif deleted file mode 100644 index f9fb9dc2..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhorntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhungarumlaut.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhungarumlaut.glif deleted file mode 100644 index cf062e69..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uhungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/umacron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/umacron.glif deleted file mode 100644 index d515517e..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/umacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uni1E_9E_.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uni1E_9E_.glif deleted file mode 100644 index 3a450987..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uni1E_9E_.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uni2011.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uni2011.glif deleted file mode 100644 index cb2d7998..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uni2011.glif +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uogonek.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uogonek.glif deleted file mode 100644 index 1b7ac477..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uogonek.glif +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uring.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uring.glif deleted file mode 100644 index dda06246..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/utilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/utilde.glif deleted file mode 100644 index 064f3d7e..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/utilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/vdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/vdotbelow.glif deleted file mode 100644 index 24cae44c..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/vdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/wacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/wacute.glif deleted file mode 100644 index bf7e7f0f..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/wacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/wcircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/wcircumflex.glif deleted file mode 100644 index cce418d0..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/wcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/wdieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/wdieresis.glif deleted file mode 100644 index 6868f0a1..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/wdieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/wgrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/wgrave.glif deleted file mode 100644 index 54104a1d..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/wgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/xdieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/xdieresis.glif deleted file mode 100644 index ebc94feb..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/xdieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/yacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/yacute.glif deleted file mode 100644 index 3580c96d..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/yacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ycircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ycircumflex.glif deleted file mode 100644 index 236829c9..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ycircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ydieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ydieresis.glif deleted file mode 100644 index da49414a..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ydieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ydotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ydotaccent.glif deleted file mode 100644 index c9b268de..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ydotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ydotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ydotbelow.glif deleted file mode 100644 index 18c55e0e..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ydotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ygrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ygrave.glif deleted file mode 100644 index fe951656..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ygrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/yhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/yhookabove.glif deleted file mode 100644 index 3a536e02..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/yhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ymacron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ymacron.glif deleted file mode 100644 index f4d2ee7b..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ymacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ytilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ytilde.glif deleted file mode 100644 index a494e3cd..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ytilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zacute.glif deleted file mode 100644 index 25c9cfbc..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zcaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zcaron.glif deleted file mode 100644 index e98f26ed..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zcircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zcircumflex.glif deleted file mode 100644 index e7f08b62..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zdotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zdotaccent.glif deleted file mode 100644 index 4799ef18..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zdotbelow.glif deleted file mode 100644 index c614c5b9..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zero.num.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zero.num.glif deleted file mode 100644 index 67c30058..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zero.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zlinebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zlinebelow.glif deleted file mode 100644 index 3ebc23be..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/lib.plist b/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/lib.plist deleted file mode 100644 index 6cee22db..00000000 --- a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/lib.plist +++ /dev/null @@ -1,1288 +0,0 @@ - - - - - com.typemytype.robofont.compileSettings.autohint - - com.typemytype.robofont.compileSettings.checkOutlines - - com.typemytype.robofont.compileSettings.createDummyDSIG - - com.typemytype.robofont.compileSettings.decompose - - com.typemytype.robofont.compileSettings.generateFormat - 1 - com.typemytype.robofont.compileSettings.releaseMode - 1 - com.typemytype.robofont.italicSlantOffset - 0 - com.typemytype.robofont.segmentType - curve - com.typemytype.robofont.shouldAddPointsInSplineConversion - 1 - public.glyphOrder - - .notdef - A - B - C - D - E - F - G - H - I - J - K - L - M - N - O - P - Q - R - S - T - U - V - W - X - Y - Z - a - b - c - d - e - f - g - h - i - j - k - l - m - n - o - p - q - r - s - t - u - v - w - x - y - z - period - comma - colon - semicolon - question - exclam - questiondown - exclamdown - ellipsis - twodotleader - quotedblleft - quotedblright - quotedblbase - quoteleft - quoteright - quotesinglbase - guillemetleft - guillemetright - guilsinglleft - guilsinglright - parenleft - parenright - bracketleft - bracketright - braceleft - braceright - slash - backslash - bar - hyphen - endash - emdash - periodcentered - bullet - underscore - ampersand - at - published - copyright - registered - servicemark - trademark - asterisk - dagger - daggerdbl - section - paragraph - zero - one - two - three - four - five - six - seven - eight - nine - colon.fig - plus - divide - minus - equal - notequal - asciitilde - approxequal - multiply - less - greater - lessequal - greaterequal - plusminus - asciicircum - mu - numbersign - percent - quotedbl - quotesingle - ordfeminine - ordmasculine - degree - dollar - sterling - yen - Euro - naira - peso - uni20BA - uni20BD - uni20B9 - bahtthai - won - cent - dong - onehalf - onethird - twothirds - onequarter - threequarters - onefifth - twofifths - threefifths - fourfifths - onesixth - fivesixths - oneeighth - threeeighths - fiveeighths - seveneighths - zero.sup - one.sup - two.sup - three.sup - four.sup - five.sup - six.sup - seven.sup - eight.sup - nine.sup - zero.inf - one.inf - two.inf - three.inf - four.inf - five.inf - six.inf - seven.inf - eight.inf - nine.inf - primemod - dblprimemod - commaturnedmod - apostrophemod - ringhalfleft - ringhalfright - verticallinemod - verticallinelowmod - acute - hungarumlaut - grave - circumflex - caron - breve - tilde - macron - dieresis - dotaccent - ring - uniA788 - macronlowmod - cedilla - ogonek - Aacute - Agrave - Acircumflex - Acircumflexdotbelow - Acircumflexacute - Acircumflexgrave - Acircumflexhookabove - Acircumflextilde - Acaron - Abreve - Abrevedotbelow - Abreveacute - Abrevegrave - Abrevehookabove - Abrevetilde - Atilde - Amacron - Adieresis - Adotaccent - Aring - Ahookabove - Adotbelow - Aogonek - AE - Blinebelow - Cacute - Ccircumflex - Ccaron - Cdotaccent - Ccedilla - Dcaron - Dcircumflexbelow - Dlinebelow - Ddotbelow - Dcroat - Eacute - Egrave - Ecircumflex - Ecircumflexdotbelow - Ecircumflexacute - Ecircumflexgrave - Ecircumflexhookabove - Ecircumflextilde - Ecaron - Ebreve - Etilde - Emacron - Edieresis - Edotaccent - Ehookabove - Edotbelow - Eogonek - Gcircumflex - Gcaron - Gbreve - Gmacron - Gdotaccent - Gcommaaccent - Hcircumflex - Hbrevebelow - Hdotbelow - Hcedilla - Hbar - Iacute - Igrave - Icircumflex - Icaron - Ibreve - Itilde - Imacron - Idieresis - Idotaccent - Ihookabove - Idotbelow - Iogonek - Jcircumflex - Klinebelow - Kcommaaccent - Kdotbelow - Lacute - Lcaron - Lcommaaccent - Lcircumflexbelow - Llinebelow - Lmacrondotbelow - Ldotbelow - L.dot - Lslash - Macute - Mdotaccent - Mdotbelow - Nacute - Ngrave - Ncaron - Ntilde - Ndotaccent - Ncircumflexbelow - Ncommaaccent - Ndotbelow - Nlinebelow - Eng - Oacute - Ohungarumlaut - Ograve - Ocircumflex - Ocircumflexdotbelow - Ocircumflexacute - Ocircumflexgrave - Ocircumflexhookabove - Ocircumflextilde - Ocaron - Obreve - Otilde - Omacron - Odieresis - Odotaccent - Ohookabove - Odotbelow - Oogonek - Oslash - OE - Ohorn - Ohornacute - Ohorngrave - Ohorntilde - Ohornhookabove - Ohorndotbelow - Racute - Rcaron - Rdotaccent - Rmacrondotbelow - Rcommaaccent - Rdotbelow - Rlinebelow - Sacute - Scircumflex - Scaron - Scommaaccent - Sdotbelow - Scedilla - uni1E9E - Tcaron - Tcircumflexbelow - Tcommaaccent - Tdotbelow - Tlinebelow - Tcedilla - Tbar - Uacute - Uhungarumlaut - Ugrave - Ucircumflex - Ucaron - Ubreve - Utilde - Umacron - Udieresis - Udieresisacute - Udieresisgrave - Udieresiscaron - Udieresismacron - Uring - Uhookabove - Udotbelow - Uogonek - Uhorn - Uhornacute - Uhorngrave - Uhorntilde - Uhornhookabove - Uhorndotbelow - Vdotbelow - Wacute - Wgrave - Wcircumflex - Wdieresis - Xdieresis - Yacute - Ygrave - Ycircumflex - Ytilde - Ymacron - Ydieresis - Ydotaccent - Yhookabove - Ydotbelow - Zacute - Zcircumflex - Zcaron - Zdotaccent - Zdotbelow - Zlinebelow - Eth - Thorn - Schwa - aacute - agrave - acircumflex - acircumflexdotbelow - acircumflexacute - acircumflexgrave - acircumflexhookabove - acircumflextilde - acaron - abreve - abrevedotbelow - abreveacute - abrevegrave - abrevehookabove - abrevetilde - atilde - amacron - adieresis - adotaccent - aring - ahookabove - adotbelow - aogonek - ae - blinebelow - cacute - ccircumflex - ccaron - cdotaccent - ccedilla - dcaron - dcircumflexbelow - dlinebelow - ddotbelow - dcroat - eacute - egrave - ecircumflex - ecircumflexdotbelow - ecircumflexacute - ecircumflexgrave - ecircumflexhookabove - ecircumflextilde - ecaron - ebreve - etilde - emacron - edieresis - edotaccent - ehookabove - edotbelow - eogonek - gcircumflex - gcaron - gbreve - gmacron - gdotaccent - gcommaaccent - hcircumflex - hbrevebelow - hlinebelow - hdotbelow - hcedilla - hbar - dotlessi - iacute - igrave - icircumflex - icaron - ibreve - itilde - imacron - idieresis - idotaccent - ihookabove - idotbelow - iogonek - dotlessj - jcircumflex - jcaron - klinebelow - kcommaaccent - kdotbelow - lacute - lcaron - lcommaaccent - lcircumflexbelow - llinebelow - lmacrondotbelow - ldotbelow - l.dot - lslash - macute - mdotaccent - mdotbelow - nacute - ngrave - ncaron - ntilde - ndotaccent - ncircumflexbelow - ncommaaccent - ndotbelow - nlinebelow - eng - oacute - ohungarumlaut - ograve - ocircumflex - ocircumflexdotbelow - ocircumflexacute - ocircumflexgrave - ocircumflexhookabove - ocircumflextilde - ocaron - obreve - otilde - omacron - odieresis - odotaccent - ohookabove - odotbelow - oogonek - oslash - oe - ohorn - ohornacute - ohorngrave - ohorntilde - ohornhookabove - ohorndotbelow - racute - rcaron - rdotaccent - rmacrondotbelow - rcommaaccent - rdotbelow - rlinebelow - sacute - scircumflex - scaron - scommaaccent - sdotbelow - scedilla - germandbls - tcaron - tcircumflexbelow - tcommaaccent - tdotbelow - tlinebelow - tcedilla - tbar - uacute - uhungarumlaut - ugrave - ucircumflex - ucaron - ubreve - utilde - umacron - udieresis - udieresisacute - udieresisgrave - udieresiscaron - udieresismacron - uring - uhookabove - udotbelow - uogonek - uhorn - uhornacute - uhorngrave - uhorntilde - uhornhookabove - uhorndotbelow - vdotbelow - wacute - wgrave - wcircumflex - wdieresis - xdieresis - yacute - ygrave - ycircumflex - ytilde - ymacron - ydieresis - ydotaccent - yhookabove - ydotbelow - zacute - zcircumflex - zcaron - zdotaccent - zdotbelow - zlinebelow - eth - thorn - schwa - space - uni00A0 - zero.num - one.num - two.num - three.num - four.num - five.num - six.num - seven.num - eight.num - nine.num - fraction - fracbar - zero.den - one.den - two.den - three.den - four.den - five.den - six.den - seven.den - eight.den - nine.den - uni2011 - horizontalbar - middotcat - middotcat.cap - acutecmb - hungarumlautcmb - gravecmb - commaaboverightcmb - circumflexcmb - caroncmb - brevecmb - tildecmb - macroncmb - dieresiscmb - dotaccentcmb - ringcmb - commaturnedabovecmb - hookcmb - circumflexbelowcmb - brevebelowcmb - macronbelowcmb - dieresisbelowcmb - dotbelowcmb - uni0326 - cedillacmb - ogonekcmb - dieresisacute - dieresisgrave - dieresiscaron - dieresismacron - breveacute - brevegrave - brevehook - brevetilde - circumflexacute - circumflexgrave - circumflexhook - circumflextilde - acutecmb.cap - hungarumlautcmb.cap - gravecmb.cap - circumflexcmb.cap - caroncmb.cap - brevecmb.cap - tildecmb.cap - macroncmb.cap - dieresiscmb.cap - dotaccentcmb.cap - ringcmb.cap - hookcmb.cap - dieresisacute.cap - dieresisgrave.cap - dieresiscaron.cap - dieresismacron.cap - breveacute.cap - brevegrave.cap - brevehook.cap - brevetilde.cap - circumflexacute.cap - circumflexgrave.cap - circumflexhook.cap - circumflextilde.cap - - public.postscriptNames - - Abreveacute - uni1EAE - Abrevedotbelow - uni1EB6 - Abrevegrave - uni1EB0 - Abrevehookabove - uni1EB2 - Abrevetilde - uni1EB4 - Acaron - uni01CD - Acircumflexacute - uni1EA4 - Acircumflexdotbelow - uni1EAC - Acircumflexgrave - uni1EA6 - Acircumflexhookabove - uni1EA8 - Acircumflextilde - uni1EAA - Adotaccent - uni0226 - Adotbelow - uni1EA0 - Ahookabove - uni1EA2 - Blinebelow - uni1E06 - Dcircumflexbelow - uni1E12 - Ddotbelow - uni1E0C - Dlinebelow - uni1E0E - Ecircumflexacute - uni1EBE - Ecircumflexdotbelow - uni1EC6 - Ecircumflexgrave - uni1EC0 - Ecircumflexhookabove - uni1EC2 - Ecircumflextilde - uni1EC4 - Edotbelow - uni1EB8 - Ehookabove - uni1EBA - Etilde - uni1EBC - Gcommaaccent - uni0122 - Gmacron - uni1E20 - Hbrevebelow - uni1E2A - Hcedilla - uni1E28 - Hdotbelow - uni1E24 - Icaron - uni01CF - Idotbelow - uni1ECA - Ihookabove - uni1EC8 - Kcommaaccent - uni0136 - Kdotbelow - uni1E32 - Klinebelow - uni1E34 - L.dot - Ldot - Lcircumflexbelow - uni1E3C - Lcommaaccent - uni013B - Ldotbelow - uni1E36 - Llinebelow - uni1E3A - Lmacrondotbelow - uni1E38 - Macute - uni1E3E - Mdotaccent - uni1E40 - Mdotbelow - uni1E42 - Ncircumflexbelow - uni1E4A - Ncommaaccent - uni0145 - Ndotaccent - uni1E44 - Ndotbelow - uni1E46 - Ngrave - uni01F8 - Nlinebelow - uni1E48 - Ocaron - uni01D1 - Ocircumflexacute - uni1ED0 - Ocircumflexdotbelow - uni1ED8 - Ocircumflexgrave - uni1ED2 - Ocircumflexhookabove - uni1ED4 - Ocircumflextilde - uni1ED6 - Odotaccent - uni022E - Odotbelow - uni1ECC - Ohookabove - uni1ECE - Ohornacute - uni1EDA - Ohorndotbelow - uni1EE2 - Ohorngrave - uni1EDC - Ohornhookabove - uni1EDE - Ohorntilde - uni1EE0 - Oogonek - uni01EA - Rcommaaccent - uni0156 - Rdotaccent - uni1E58 - Rdotbelow - uni1E5A - Rlinebelow - uni1E5E - Rmacrondotbelow - uni1E5C - Scedilla - uni015E - Schwa - uni018F - Scommaaccent - uni0218 - Sdotbelow - uni1E62 - Tcedilla - uni0162 - Tcircumflexbelow - uni1E70 - Tcommaaccent - uni021A - Tdotbelow - uni1E6C - Tlinebelow - uni1E6E - Ucaron - uni01D3 - Udieresisacute - uni01D7 - Udieresiscaron - uni01D9 - Udieresisgrave - uni01DB - Udieresismacron - uni01D5 - Udotbelow - uni1EE4 - Uhookabove - uni1EE6 - Uhornacute - uni1EE8 - Uhorndotbelow - uni1EF0 - Uhorngrave - uni1EEA - Uhornhookabove - uni1EEC - Uhorntilde - uni1EEE - Vdotbelow - uni1E7E - Xdieresis - uni1E8C - Ydotaccent - uni1E8E - Ydotbelow - uni1EF4 - Yhookabove - uni1EF6 - Ymacron - uni0232 - Ytilde - uni1EF8 - Zcircumflex - uni1E90 - Zdotbelow - uni1E92 - Zlinebelow - uni1E94 - abreveacute - uni1EAF - abrevedotbelow - uni1EB7 - abrevegrave - uni1EB1 - abrevehookabove - uni1EB3 - abrevetilde - uni1EB5 - acaron - uni01CE - acircumflexacute - uni1EA5 - acircumflexdotbelow - uni1EAD - acircumflexgrave - uni1EA7 - acircumflexhookabove - uni1EA9 - acircumflextilde - uni1EAB - acutecmb - uni0301 - acutecmb.cap - uni0301.cap - adotaccent - uni0227 - adotbelow - uni1EA1 - ahookabove - uni1EA3 - apostrophemod - uni02BC - bahtthai - uni0E3F - blinebelow - uni1E07 - breveacute - uni02D80301 - breveacute.cap - uni02D80301.cap - brevebelowcmb - uni032E - brevecmb - uni0306 - brevecmb.cap - uni0306.cap - brevegrave - uni02D80300 - brevegrave.cap - uni02D80300.cap - brevehook - uni02D80309 - brevehook.cap - uni02D80309.cap - brevetilde - uni02D80303 - brevetilde.cap - uni02D80303.cap - caroncmb - uni030C - caroncmb.cap - uni030C.cap - cedillacmb - uni0327 - circumflexacute - uni02C60301 - circumflexacute.cap - uni02C60301.cap - circumflexbelowcmb - uni032D - circumflexcmb - uni0302 - circumflexcmb.cap - uni0302.cap - circumflexgrave - uni02C60300 - circumflexgrave.cap - uni02C60300.cap - circumflexhook - uni02C60309 - circumflexhook.cap - uni02C60309.cap - circumflextilde - uni02C60303 - circumflextilde.cap - uni02C60303.cap - commaaboverightcmb - uni0315 - commaturnedabovecmb - uni0312 - commaturnedmod - uni02BB - dblprimemod - uni02BA - dcircumflexbelow - uni1E13 - ddotbelow - uni1E0D - dieresisacute - uni00A80301 - dieresisacute.cap - uni00A80301.cap - dieresisbelowcmb - uni0324 - dieresiscaron - uni00A8030C - dieresiscaron.cap - uni00A8030C.cap - dieresiscmb - uni0308 - dieresiscmb.cap - uni0308.cap - dieresisgrave - uni00A80300 - dieresisgrave.cap - uni00A80300.cap - dieresismacron - uni00A80304 - dieresismacron.cap - uni00A80304.cap - dlinebelow - uni1E0F - dotaccentcmb - uni0307 - dotaccentcmb.cap - uni0307.cap - dotbelowcmb - uni0323 - dotlessj - uni0237 - ecircumflexacute - uni1EBF - ecircumflexdotbelow - uni1EC7 - ecircumflexgrave - uni1EC1 - ecircumflexhookabove - uni1EC3 - ecircumflextilde - uni1EC5 - edotbelow - uni1EB9 - ehookabove - uni1EBB - etilde - uni1EBD - gcommaaccent - uni0123 - gmacron - uni1E21 - gravecmb - uni0300 - gravecmb.cap - uni0300.cap - guillemetleft - uni00AB - guillemetright - uni00BB - hbrevebelow - uni1E2B - hcedilla - uni1E29 - hdotbelow - uni1E25 - hlinebelow - uni1E96 - hookcmb - uni0309 - hookcmb.cap - uni0309.cap - horizontalbar - uni2015 - hungarumlautcmb - uni030B - hungarumlautcmb.cap - uni030B.cap - icaron - uni01D0 - idotaccent - i.dot - idotbelow - uni1ECB - ihookabove - uni1EC9 - jcaron - uni01F0 - kcommaaccent - uni0137 - kdotbelow - uni1E33 - klinebelow - uni1E35 - l.dot - ldot - lcircumflexbelow - uni1E3D - lcommaaccent - uni013C - ldotbelow - uni1E37 - llinebelow - uni1E3B - lmacrondotbelow - uni1E39 - macronbelowcmb - uni0331 - macroncmb - uni0304 - macroncmb.cap - uni0304.cap - macronlowmod - uni02CD - macute - uni1E3F - mdotaccent - uni1E41 - mdotbelow - uni1E43 - naira - uni20A6 - ncircumflexbelow - uni1E4B - ncommaaccent - uni0146 - ndotaccent - uni1E45 - ndotbelow - uni1E47 - ngrave - uni01F9 - nlinebelow - uni1E49 - ocaron - uni01D2 - ocircumflexacute - uni1ED1 - ocircumflexdotbelow - uni1ED9 - ocircumflexgrave - uni1ED3 - ocircumflexhookabove - uni1ED5 - ocircumflextilde - uni1ED7 - odotaccent - uni022F - odotbelow - uni1ECD - ogonekcmb - uni0328 - ohookabove - uni1ECF - ohornacute - uni1EDB - ohorndotbelow - uni1EE3 - ohorngrave - uni1EDD - ohornhookabove - uni1EDF - ohorntilde - uni1EE1 - oogonek - uni01EB - peso - uni20B1 - primemod - uni02B9 - published - uni2117 - rcommaaccent - uni0157 - rdotaccent - uni1E59 - rdotbelow - uni1E5B - ringcmb - uni030A - ringcmb.cap - uni030A.cap - ringhalfleft - uni02BF - ringhalfright - uni02BE - rlinebelow - uni1E5F - rmacrondotbelow - uni1E5D - scedilla - uni015F - schwa - uni0259 - scommaaccent - uni0219 - sdotbelow - uni1E63 - servicemark - uni2120 - tcedilla - uni0163 - tcircumflexbelow - uni1E71 - tcommaaccent - uni021B - tdotbelow - uni1E6D - tildecmb - uni0303 - tildecmb.cap - uni0303.cap - tlinebelow - uni1E6F - twodotleader - uni2025 - ucaron - uni01D4 - udieresisacute - uni01D8 - udieresiscaron - uni01DA - udieresisgrave - uni01DC - udieresismacron - uni01D6 - udotbelow - uni1EE5 - uhookabove - uni1EE7 - uhornacute - uni1EE9 - uhorndotbelow - uni1EF1 - uhorngrave - uni1EEB - uhornhookabove - uni1EED - uhorntilde - uni1EEF - uni1E9E - uni1E9E - vdotbelow - uni1E7F - verticallinelowmod - uni02CC - verticallinemod - uni02C8 - won - uni20A9 - xdieresis - uni1E8D - ydotaccent - uni1E8F - ydotbelow - uni1EF5 - yhookabove - uni1EF7 - ymacron - uni0233 - ytilde - uni1EF9 - zcircumflex - uni1E91 - zdotbelow - uni1E93 - zlinebelow - uni1E95 - - - diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/features.fea b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/features.fea new file mode 100644 index 00000000..d5380bdf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/features.fea @@ -0,0 +1,6 @@ + +include(../../features/shared.fea); + +include(../../features/mark/IntelOneMono-LightItalic mark.fea); + +include(../../features/aalt.fea); diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/fontinfo.plist b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/fontinfo.plist new file mode 100644 index 00000000..b97405ad --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/fontinfo.plist @@ -0,0 +1,407 @@ + + + + + ascender + 740 + capHeight + 655 + copyright + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + descender + -260 + familyName + Intel One Mono + guidelines + + italicAngle + -16.0 + openTypeHeadFlags + + 0 + 1 + + openTypeHheaAscender + 1090 + openTypeHheaDescender + -290 + openTypeHheaLineGap + 0 + openTypeNameDesigner + Fred Shallcrass + openTypeNameDesignerURL + http://frerejones.com + openTypeNameLicense + This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL + openTypeNameLicenseURL + https://github.com/intel/intel-one-mono/blob/main/license + openTypeNameManufacturer + Frere-Jones Type LLC + openTypeNameManufacturerURL + http://frerejones.com + openTypeNamePreferredFamilyName + Intel One Mono + openTypeNamePreferredSubfamilyName + Light Italic + openTypeNameRecords + + + encodingID + 0 + languageID + 0 + nameID + 0 + platformID + 1 + string + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + + + encodingID + 1 + languageID + 1033 + nameID + 0 + platformID + 3 + string + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + + + encodingID + 0 + languageID + 0 + nameID + 1 + platformID + 1 + string + Intel One Mono Light + + + encodingID + 1 + languageID + 1033 + nameID + 1 + platformID + 3 + string + Intel One Mono Light + + + encodingID + 0 + languageID + 0 + nameID + 2 + platformID + 1 + string + Italic + + + encodingID + 1 + languageID + 1033 + nameID + 2 + platformID + 3 + string + Italic + + + encodingID + 0 + languageID + 0 + nameID + 4 + platformID + 1 + string + Intel One Mono Light Italic + + + encodingID + 1 + languageID + 1033 + nameID + 4 + platformID + 3 + string + Intel One Mono Light Italic + + + encodingID + 0 + languageID + 0 + nameID + 6 + platformID + 1 + string + IntelOneMono-LightItalic + + + encodingID + 1 + languageID + 1033 + nameID + 6 + platformID + 3 + string + IntelOneMono-LightItalic + + + encodingID + 0 + languageID + 0 + nameID + 8 + platformID + 1 + string + Frere-Jones Type LLC + + + encodingID + 1 + languageID + 1033 + nameID + 8 + platformID + 3 + string + Frere-Jones Type LLC + + + encodingID + 0 + languageID + 0 + nameID + 9 + platformID + 1 + string + Fred Shallcrass + + + encodingID + 1 + languageID + 1033 + nameID + 9 + platformID + 3 + string + Fred Shallcrass + + + encodingID + 0 + languageID + 0 + nameID + 11 + platformID + 1 + string + http://frerejones.com + + + encodingID + 1 + languageID + 1033 + nameID + 11 + platformID + 3 + string + http://frerejones.com + + + encodingID + 0 + languageID + 0 + nameID + 12 + platformID + 1 + string + http://frerejones.com + + + encodingID + 1 + languageID + 1033 + nameID + 12 + platformID + 3 + string + http://frerejones.com + + + encodingID + 1 + languageID + 1033 + nameID + 16 + platformID + 3 + string + Intel One Mono + + + encodingID + 1 + languageID + 1033 + nameID + 17 + platformID + 3 + string + Light Italic + + + openTypeOS2CodePageRanges + + 0 + 1 + 4 + 7 + 8 + 29 + + openTypeOS2Panose + + 2 + 11 + 4 + 9 + 2 + 2 + 3 + 9 + 2 + 4 + + openTypeOS2Selection + + 7 + 8 + + openTypeOS2StrikeoutPosition + 286 + openTypeOS2StrikeoutSize + 50 + openTypeOS2Type + + openTypeOS2TypoAscender + 1090 + openTypeOS2TypoDescender + -290 + openTypeOS2TypoLineGap + 0 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 29 + 32 + + openTypeOS2VendorID + FRJN + openTypeOS2WeightClass + 300 + openTypeOS2WidthClass + 5 + openTypeOS2WinAscent + 1090 + openTypeOS2WinDescent + 290 + postscriptBlueFuzz + 0 + postscriptBlueScale + 0.05 + postscriptBlueValues + + -15 + 0 + 460 + 475 + 655 + 670 + 710 + 725 + + postscriptDefaultWidthX + 614 + postscriptFamilyBlues + + postscriptFamilyOtherBlues + + postscriptFontName + IntelOneMono-LightItalic + postscriptForceBold + + postscriptFullName + Intel One Mono Light Italic + postscriptIsFixedPitch + + postscriptOtherBlues + + -245 + -230 + + postscriptStemSnapH + + 50 + + postscriptStemSnapV + + 57 + + postscriptUnderlinePosition + -75 + postscriptUnderlineThickness + 50 + styleMapFamilyName + Intel One Mono Light + styleMapStyleName + italic + styleName + Light Italic + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 4 + xHeight + 460 + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_E_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_E_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_E_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_E_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_acute.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_breve.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_breve.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_breveacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_breveacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_breveacute.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_breveacute.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_brevedotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_brevedotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_brevedotbelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_brevedotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_brevegrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_brevegrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_brevegrave.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_brevegrave.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_brevehookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_brevehookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_brevehookabove.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_brevehookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_brevetilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_brevetilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_brevetilde.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_brevetilde.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_caron.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_circumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_circumflex.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_circumflexdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_circumflexdotbelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_circumflexdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_circumflexhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_circumflexhookabove.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_circumflexhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_circumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_circumflextilde.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_circumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_dieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_dieresis.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_dotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_grave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_grave.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_hookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_hookabove.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_macron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_macron.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_ogonek.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_ogonek.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_ring.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_ring.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_ring.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_ring.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_tilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/A_tilde.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/A_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/B_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/B_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/B_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/B_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/B_linebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/B_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/B_linebelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/B_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/C_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/C_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/C_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/C_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/C_acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/C_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/C_acute.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/C_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/C_caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/C_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/C_caron.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/C_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/C_cedilla.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/C_cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/C_cedilla.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/C_cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/C_circumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/C_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/C_circumflex.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/C_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/C_dotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/C_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/C_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/C_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/D_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/D_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/D_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/D_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/D_caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/D_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/D_caron.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/D_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/D_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/D_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/D_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/D_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/D_croat.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/D_croat.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/D_croat.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/D_croat.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/D_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/D_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/D_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/D_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/D_linebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/D_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/D_linebelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/D_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_acute.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_breve.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_breve.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_caron.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_circumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_circumflex.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_circumflexdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_circumflexdotbelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_circumflexdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_circumflexhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_circumflexhookabove.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_circumflexhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_circumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_circumflextilde.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_circumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_dieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_dieresis.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_dotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_grave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_grave.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_hookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_hookabove.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_macron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_macron.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_ng.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_ng.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_ng.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_ng.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_ogonek.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_ogonek.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_th.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_th.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_th.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_th.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_tilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_tilde.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_uro.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_uro.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/E_uro.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/E_uro.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/F_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/F_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/F_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/F_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/G_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/G_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/G_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/G_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/G_breve.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/G_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/G_breve.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/G_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/G_caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/G_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/G_caron.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/G_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/G_circumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/G_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/G_circumflex.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/G_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/G_commaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/G_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/G_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/G_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/G_dotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/G_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/G_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/G_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/G_macron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/G_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/G_macron.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/G_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/H_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/H_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/H_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/H_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/H_bar.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/H_bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/H_bar.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/H_bar.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/H_brevebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/H_brevebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/H_brevebelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/H_brevebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/H_cedilla.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/H_cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/H_cedilla.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/H_cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/H_circumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/H_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/H_circumflex.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/H_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/H_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/H_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/H_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/H_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_acute.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_breve.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_breve.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_caron.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_circumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_circumflex.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_dieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_dieresis.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_dotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_grave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_grave.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_hookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_hookabove.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_macron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_macron.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_ogonek.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_ogonek.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_tilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/I_tilde.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/I_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/J_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/J_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/J_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/J_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/J_circumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/J_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/J_circumflex.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/J_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/K_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/K_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/K_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/K_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/K_commaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/K_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/K_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/K_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/K_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/K_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/K_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/K_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/K_linebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/K_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/K_linebelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/K_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_.dot.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_.dot.glif new file mode 100644 index 00000000..5c60b6ac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_.dot.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + public.objectLibs + + component0 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + component1 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + component2 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + + public.truetype.overlap + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_acute.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_caron.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_commaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_linebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_linebelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_macrondotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_macrondotbelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_macrondotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_slash.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_slash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/L_slash.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/L_slash.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/M_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/M_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/M_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/M_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/M_acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/M_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/M_acute.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/M_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/M_dotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/M_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/M_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/M_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/M_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/M_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/M_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/M_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/N_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/N_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/N_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/N_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/N_acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/N_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/N_acute.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/N_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/N_caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/N_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/N_caron.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/N_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/N_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/N_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/N_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/N_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/N_commaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/N_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/N_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/N_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/N_dotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/N_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/N_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/N_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/N_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/N_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/N_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/N_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/N_grave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/N_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/N_grave.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/N_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/N_linebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/N_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/N_linebelow.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/N_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/N_tilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/N_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/N_tilde.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/N_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_E_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..f047ee36 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_E_.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_acute.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_breve.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..46839978 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_breve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_caron.glif new file mode 100644 index 00000000..0e351ec9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_circumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..315e124d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexacute.glif new file mode 100644 index 00000000..4294d22b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexdotbelow.glif new file mode 100644 index 00000000..f6ec7865 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexgrave.glif new file mode 100644 index 00000000..f54794c1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexhookabove.glif new file mode 100644 index 00000000..1a206eb2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_circumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_circumflextilde.glif new file mode 100644 index 00000000..b0fdf4a8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_circumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_dieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..d187f4c6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_dotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_dotaccent.glif new file mode 100644 index 00000000..9b93a997 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_dotbelow.glif new file mode 100644 index 00000000..38d740fc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_grave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_grave.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_hookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_hookabove.glif new file mode 100644 index 00000000..2b6c36ee --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_horn.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_horn.glif new file mode 100644 index 00000000..1ca332ea --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_horn.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_hornacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_hornacute.glif new file mode 100644 index 00000000..cc82a681 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_hornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_horndotbelow.glif new file mode 100644 index 00000000..16d87c21 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_horndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_horngrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_horngrave.glif new file mode 100644 index 00000000..0ea02943 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_horngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_hornhookabove.glif new file mode 100644 index 00000000..909c5b45 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_hornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_horntilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_horntilde.glif new file mode 100644 index 00000000..3eaa05f5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_horntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_hungarumlaut.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/O_hungarumlaut.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_hungarumlaut.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_macron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..edb3db83 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_ogonek.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_ogonek.glif new file mode 100644 index 00000000..97654739 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_ogonek.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_slash.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..0e9822be --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_slash.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_tilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..bdef7524 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/O_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/P_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/P_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/P_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/P_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Q_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Q_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Q_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Q_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/R_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..a156def6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..45ee6617 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_commaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..60bbae27 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_dotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_dotaccent.glif new file mode 100644 index 00000000..76c8d757 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_dotbelow.glif new file mode 100644 index 00000000..93636b85 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_linebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_linebelow.glif new file mode 100644 index 00000000..94ecf9e8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_macrondotbelow.glif new file mode 100644 index 00000000..aca89e2c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/R_macrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/S_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..c353de86 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..fec81152 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_cedilla.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..7a5cc645 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_chwa.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..c6a81a63 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_chwa.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_circumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..aa19cc55 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_commaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..d741e037 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_dotbelow.glif new file mode 100644 index 00000000..5d00bc07 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/S_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_bar.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/T_bar.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_bar.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..f9fdaec5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_cedilla.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..610e3de3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_circumflexbelow.glif new file mode 100644 index 00000000..2d1216cd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_circumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_commaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..9267d88a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_dotbelow.glif new file mode 100644 index 00000000..6a58e51c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_horn.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..c2f99784 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_horn.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_linebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_linebelow.glif new file mode 100644 index 00000000..3d2667c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/T_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/U_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..559c98f1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_breve.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..1fca1b9a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_breve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_caron.glif new file mode 100644 index 00000000..7a0b3cd6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_circumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..56808f64 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_dieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..c558bf10 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_dieresisacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_dieresisacute.glif new file mode 100644 index 00000000..e5cbbe3c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_dieresisacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_dieresiscaron.glif new file mode 100644 index 00000000..dc2ff1ac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_dieresiscaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_dieresisgrave.glif new file mode 100644 index 00000000..b227a449 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_dieresisgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_dieresismacron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_dieresismacron.glif new file mode 100644 index 00000000..3d8c49b3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_dieresismacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_dotbelow.glif new file mode 100644 index 00000000..e5734611 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_grave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..b70eee33 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_hookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_hookabove.glif new file mode 100644 index 00000000..57be8c61 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_horn.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_horn.glif new file mode 100644 index 00000000..42a345f4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_horn.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_hornacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_hornacute.glif new file mode 100644 index 00000000..c92a5573 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_hornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_horndotbelow.glif new file mode 100644 index 00000000..261148a5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_horndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_horngrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_horngrave.glif new file mode 100644 index 00000000..f8844811 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_horngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_hornhookabove.glif new file mode 100644 index 00000000..e91c29d4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_hornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_horntilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_horntilde.glif new file mode 100644 index 00000000..a348994a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_horntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..f97071b4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_macron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..f40fd627 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_ogonek.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..470e9198 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_ring.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..acecf09a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_ring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_tilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..7a348d5c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/U_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/V_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/V_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/V_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/V_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/V_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/V_dotbelow.glif new file mode 100644 index 00000000..27ada561 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/V_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/W_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/W_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/W_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/W_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/W_acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..72c69526 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/W_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/W_circumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..0593fed6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/W_dieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..a513fa2d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/W_grave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..d25a854b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/W_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/X_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/X_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/X_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/X_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/X_dieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/X_dieresis.glif new file mode 100644 index 00000000..812f5e70 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/X_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Y_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..db378680 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_circumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..752da153 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_dieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..8da43ce5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_dotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_dotaccent.glif new file mode 100644 index 00000000..cc0436a0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_dotbelow.glif new file mode 100644 index 00000000..b0c7e405 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_grave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_grave.glif new file mode 100644 index 00000000..9d870af4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_hookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_hookabove.glif new file mode 100644 index 00000000..f2f93c9a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_macron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_macron.glif new file mode 100644 index 00000000..ba4b25d8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_tilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_tilde.glif new file mode 100644 index 00000000..ff896e22 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Y_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Z_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Z_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/Z_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Z_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Z_acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..2b3a535d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Z_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Z_caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..12b6cf12 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Z_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Z_circumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Z_circumflex.glif new file mode 100644 index 00000000..4ac0cd6f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Z_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Z_dotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..bd30fee0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Z_dotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Z_dotbelow.glif new file mode 100644 index 00000000..5ccec17e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Z_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Z_linebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Z_linebelow.glif new file mode 100644 index 00000000..182e20f4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/Z_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/_notdef.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/_notdef.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/_notdef.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/_notdef.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/a.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/a.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/a.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/a.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/aacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..f9b7fadf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/aacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/abreve.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..28b46a85 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/abreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/abreveacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/abreveacute.glif new file mode 100644 index 00000000..e1913fa0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/abreveacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/abrevedotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/abrevedotbelow.glif new file mode 100644 index 00000000..6a9c8fd1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/abrevedotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/abrevegrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/abrevegrave.glif new file mode 100644 index 00000000..353963ba --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/abrevegrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/abrevehookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/abrevehookabove.glif new file mode 100644 index 00000000..7af41271 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/abrevehookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/abrevetilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/abrevetilde.glif new file mode 100644 index 00000000..ba2244ba --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/abrevetilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..4507e0fc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..c2160b9e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acircumflexacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acircumflexacute.glif new file mode 100644 index 00000000..686d9251 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acircumflexdotbelow.glif new file mode 100644 index 00000000..526b71ba --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acircumflexgrave.glif new file mode 100644 index 00000000..e6e731d4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acircumflexhookabove.glif new file mode 100644 index 00000000..6e448630 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acircumflextilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acircumflextilde.glif new file mode 100644 index 00000000..521966d6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acute.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acute.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acutecmb.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acutecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acutecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acutecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acutecmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acutecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/acutecmb.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/acutecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/adieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..86719b0f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/adieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/adotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/adotaccent.glif new file mode 100644 index 00000000..35902a19 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/adotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/adotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/adotbelow.glif new file mode 100644 index 00000000..3d390b21 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/adotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ae.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ae.glif new file mode 100644 index 00000000..5ac15efb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ae.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/agrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..1e792d31 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/agrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ahookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ahookabove.glif new file mode 100644 index 00000000..0184549e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ahookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/amacron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..d52e79bc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/amacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ampersand.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ampersand.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ampersand.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ampersand.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ampersand_ampersand.liga.glif new file mode 100644 index 00000000..a60114ee --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ampersand_ampersand.liga.glif @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/aogonek.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..1aee19b4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/aogonek.glif @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/apostrophemod.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/apostrophemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/apostrophemod.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/apostrophemod.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/approxequal.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/approxequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/approxequal.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/approxequal.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/aring.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/aring.glif new file mode 100644 index 00000000..fb7e5e32 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/aring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/asciicircum.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciicircum.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/asciicircum.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciicircum.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciicircum_equal.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciicircum_equal.liga.glif new file mode 100644 index 00000000..d8d9c397 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciicircum_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/asciitilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciitilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/asciitilde.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciitilde.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..bb8c72b6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_asciitilde_greater.glif new file mode 100644 index 00000000..a94e35af --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_asciitilde_greater.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_at.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_at.liga.glif new file mode 100644 index 00000000..b1f89d9f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_at.liga.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_greater.liga.glif new file mode 100644 index 00000000..333fbcf7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_greater.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_hyphen.liga.glif new file mode 100644 index 00000000..aeff69ce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asciitilde_hyphen.liga.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/asterisk.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asterisk.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/asterisk.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asterisk.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asterisk_asterisk.liga.glif new file mode 100644 index 00000000..fa994cdc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asterisk_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif new file mode 100644 index 00000000..b73033c9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asterisk_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asterisk_greater.liga.glif new file mode 100644 index 00000000..4161bf75 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asterisk_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asterisk_slash.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asterisk_slash.liga.glif new file mode 100644 index 00000000..82b419d8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/asterisk_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/at.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/at.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/at.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/at.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/atilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..c3c031c6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/atilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/b.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/b.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/b.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/b.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/backslash.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/backslash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/backslash.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/backslash.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/backslash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/backslash_slash.liga.glif new file mode 100644 index 00000000..0305c069 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/backslash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/bahtthai.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bahtthai.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/bahtthai.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bahtthai.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/bar.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/bar.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar.liga.glif new file mode 100644 index 00000000..6e09a289 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_bar.liga.glif new file mode 100644 index 00000000..dc1b5564 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_bar.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif new file mode 100644 index 00000000..a3476f3a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_equal.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_equal.liga.glif new file mode 100644 index 00000000..5037ce66 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_equal.start.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_equal.start.glif new file mode 100644 index 00000000..4ef70c4c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_greater.liga.glif new file mode 100644 index 00000000..074576fe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_greater.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_hyphen.liga.glif new file mode 100644 index 00000000..23d65d79 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_hyphen.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_hyphen.start.glif new file mode 100644 index 00000000..033ae8fb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bar_hyphen.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_braceright.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_braceright.liga.glif new file mode 100644 index 00000000..0240007f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_braceright.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bracketright.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bracketright.liga.glif new file mode 100644 index 00000000..13272e8b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_bracketright.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_equal.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_equal.liga.glif new file mode 100644 index 00000000..22480245 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_equal.start.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_equal.start.glif new file mode 100644 index 00000000..5c8b6ce0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_greater.liga.glif new file mode 100644 index 00000000..6a916662 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_hyphen.liga.glif new file mode 100644 index 00000000..ff86ba41 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_hyphen.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_hyphen.start.glif new file mode 100644 index 00000000..5537b6f9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bar_hyphen.start.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/blinebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/blinebelow.glif new file mode 100644 index 00000000..c3df309a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/blinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/braceleft.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/braceleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/braceleft.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/braceleft.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/braceleft_bar.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/braceleft_bar.liga.glif new file mode 100644 index 00000000..37bf3414 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/braceleft_bar.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/braceright.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/braceright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/braceright.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/braceright.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/bracketleft.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bracketleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/bracketleft.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bracketleft.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bracketleft_bar.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bracketleft_bar.liga.glif new file mode 100644 index 00000000..f977bc3f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bracketleft_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/bracketright.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bracketright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/bracketright.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bracketright.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bracketright_numbersign.liga.glif new file mode 100644 index 00000000..d3a1d851 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bracketright_numbersign.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/breve.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/breve.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/breve.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/breveacute.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/breveacute.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/breveacute.cap.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/breveacute.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/breveacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/breveacute.glif new file mode 100644 index 00000000..bba4f202 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/breveacute.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevebelowcmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevebelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevebelowcmb.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevebelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevecmb.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevecmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevecmb.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevegrave.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevegrave.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevegrave.cap.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevegrave.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevegrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevegrave.glif new file mode 100644 index 00000000..0e974d35 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevegrave.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevehook.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevehook.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevehook.cap.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevehook.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevehook.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevehook.glif new file mode 100644 index 00000000..8d536f5b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevehook.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevetilde.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevetilde.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/brevetilde.cap.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevetilde.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevetilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevetilde.glif new file mode 100644 index 00000000..aba4e425 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/brevetilde.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/bullet.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bullet.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/bullet.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/bullet.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/c.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/c.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/c.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/c.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/cacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..b06af57e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/cacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/caron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/caron.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/caron.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/caroncmb.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/caroncmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/caroncmb.cap.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/caroncmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/caroncmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/caroncmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/caroncmb.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/caroncmb.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ccaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..ffa70a70 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ccaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ccedilla.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..8ed88e2e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ccedilla.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ccircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..c2aee288 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/cdotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..2057ccfd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/cedilla.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/cedilla.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/cedillacmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/cedillacmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/cedillacmb.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/cedillacmb.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/cent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/cent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/cent.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/cent.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflex.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflexacute.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflexacute.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflexacute.cap.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflexacute.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflexacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflexbelowcmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflexbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflexbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflexbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflexcmb.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflexcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflexcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflexcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflexcmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflexcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflexcmb.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflexcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflexgrave.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflexgrave.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflexgrave.cap.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflexgrave.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflexhook.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflexhook.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflexhook.cap.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflexhook.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflexhook.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflexhook.glif new file mode 100644 index 00000000..0c6f89d6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflexhook.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflextilde.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflextilde.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/circumflextilde.cap.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflextilde.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflextilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflextilde.glif new file mode 100644 index 00000000..8ea23fb4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/circumflextilde.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/colon.fig.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon.fig.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/colon.fig.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon.fig.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/colon.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/colon.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon_colon.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon_colon.liga.glif new file mode 100644 index 00000000..f92822aa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon_colon_colon.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon_colon_colon.liga.glif new file mode 100644 index 00000000..b91d9647 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon_colon_colon.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon_colon_equal.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon_colon_equal.liga.glif new file mode 100644 index 00000000..819ebdd0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon_colon_equal.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon_equal.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon_equal.liga.glif new file mode 100644 index 00000000..0898737e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon_greater.liga.glif new file mode 100644 index 00000000..637f3330 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon_greater.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon_less.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon_less.liga.glif new file mode 100644 index 00000000..c962c2bd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/colon_less.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/comma.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/comma.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/comma.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/comma.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/commaaboverightcmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/commaaboverightcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/commaaboverightcmb.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/commaaboverightcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/commaturnedabovecmb.glif new file mode 100644 index 00000000..8310bc4f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/commaturnedabovecmb.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/commaturnedmod.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/commaturnedmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/commaturnedmod.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/commaturnedmod.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/contents.plist b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/contents.plist new file mode 100644 index 00000000..10a2ded8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/contents.plist @@ -0,0 +1,2092 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + AE + A_E_.glif + Aacute + A_acute.glif + Abreve + A_breve.glif + Abreveacute + A_breveacute.glif + Abrevedotbelow + A_brevedotbelow.glif + Abrevegrave + A_brevegrave.glif + Abrevehookabove + A_brevehookabove.glif + Abrevetilde + A_brevetilde.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflexacute + A_circumflexacute.glif + Acircumflexdotbelow + A_circumflexdotbelow.glif + Acircumflexgrave + A_circumflexgrave.glif + Acircumflexhookabove + A_circumflexhookabove.glif + Acircumflextilde + A_circumflextilde.glif + Adieresis + A_dieresis.glif + Adotaccent + A_dotaccent.glif + Adotbelow + A_dotbelow.glif + Agrave + A_grave.glif + Ahookabove + A_hookabove.glif + Amacron + A_macron.glif + Aogonek + A_ogonek.glif + Aring + A_ring.glif + Atilde + A_tilde.glif + B + B_.glif + Blinebelow + B_linebelow.glif + C + C_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + D + D_.glif + Dcaron + D_caron.glif + Dcircumflexbelow + D_circumflexbelow.glif + Dcroat + D_croat.glif + Ddotbelow + D_dotbelow.glif + Dlinebelow + D_linebelow.glif + E + E_.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Ecircumflexacute + E_circumflexacute.glif + Ecircumflexdotbelow + E_circumflexdotbelow.glif + Ecircumflexgrave + E_circumflexgrave.glif + Ecircumflexhookabove + E_circumflexhookabove.glif + Ecircumflextilde + E_circumflextilde.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Edotbelow + E_dotbelow.glif + Egrave + E_grave.glif + Ehookabove + E_hookabove.glif + Emacron + E_macron.glif + Eng + E_ng.glif + Eogonek + E_ogonek.glif + Eth + E_th.glif + Etilde + E_tilde.glif + Euro + E_uro.glif + F + F_.glif + G + G_.glif + Gbreve + G_breve.glif + Gcaron + G_caron.glif + Gcircumflex + G_circumflex.glif + Gcommaaccent + G_commaaccent.glif + Gdotaccent + G_dotaccent.glif + Gmacron + G_macron.glif + H + H_.glif + Hbar + H_bar.glif + Hbrevebelow + H_brevebelow.glif + Hcedilla + H_cedilla.glif + Hcircumflex + H_circumflex.glif + Hdotbelow + H_dotbelow.glif + I + I_.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icaron + I_caron.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idotaccent + I_dotaccent.glif + Idotbelow + I_dotbelow.glif + Igrave + I_grave.glif + Ihookabove + I_hookabove.glif + Imacron + I_macron.glif + Iogonek + I_ogonek.glif + Itilde + I_tilde.glif + J + J_.glif + Jcircumflex + J_circumflex.glif + K + K_.glif + Kcommaaccent + K_commaaccent.glif + Kdotbelow + K_dotbelow.glif + Klinebelow + K_linebelow.glif + L + L_.glif + L.dot + L_.dot.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcircumflexbelow + L_circumflexbelow.glif + Lcommaaccent + L_commaaccent.glif + Ldotbelow + L_dotbelow.glif + Llinebelow + L_linebelow.glif + Lmacrondotbelow + L_macrondotbelow.glif + Lslash + L_slash.glif + M + M_.glif + Macute + M_acute.glif + Mdotaccent + M_dotaccent.glif + Mdotbelow + M_dotbelow.glif + N + N_.glif + Nacute + N_acute.glif + Ncaron + N_caron.glif + Ncircumflexbelow + N_circumflexbelow.glif + Ncommaaccent + N_commaaccent.glif + Ndotaccent + N_dotaccent.glif + Ndotbelow + N_dotbelow.glif + Ngrave + N_grave.glif + Nlinebelow + N_linebelow.glif + Ntilde + N_tilde.glif + O + O_.glif + OE + O_E_.glif + Oacute + O_acute.glif + Obreve + O_breve.glif + Ocaron + O_caron.glif + Ocircumflex + O_circumflex.glif + Ocircumflexacute + O_circumflexacute.glif + Ocircumflexdotbelow + O_circumflexdotbelow.glif + Ocircumflexgrave + O_circumflexgrave.glif + Ocircumflexhookabove + O_circumflexhookabove.glif + Ocircumflextilde + O_circumflextilde.glif + Odieresis + O_dieresis.glif + Odotaccent + O_dotaccent.glif + Odotbelow + O_dotbelow.glif + Ograve + O_grave.glif + Ohookabove + O_hookabove.glif + Ohorn + O_horn.glif + Ohornacute + O_hornacute.glif + Ohorndotbelow + O_horndotbelow.glif + Ohorngrave + O_horngrave.glif + Ohornhookabove + O_hornhookabove.glif + Ohorntilde + O_horntilde.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Oogonek + O_ogonek.glif + Oslash + O_slash.glif + Otilde + O_tilde.glif + P + P_.glif + Q + Q_.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Rdotaccent + R_dotaccent.glif + Rdotbelow + R_dotbelow.glif + Rlinebelow + R_linebelow.glif + Rmacrondotbelow + R_macrondotbelow.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Sdotbelow + S_dotbelow.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tcircumflexbelow + T_circumflexbelow.glif + Tcommaaccent + T_commaaccent.glif + Tdotbelow + T_dotbelow.glif + Thorn + T_horn.glif + Tlinebelow + T_linebelow.glif + U + U_.glif + Uacute + U_acute.glif + Ubreve + U_breve.glif + Ucaron + U_caron.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresisacute + U_dieresisacute.glif + Udieresiscaron + U_dieresiscaron.glif + Udieresisgrave + U_dieresisgrave.glif + Udieresismacron + U_dieresismacron.glif + Udotbelow + U_dotbelow.glif + Ugrave + U_grave.glif + Uhookabove + U_hookabove.glif + Uhorn + U_horn.glif + Uhornacute + U_hornacute.glif + Uhorndotbelow + U_horndotbelow.glif + Uhorngrave + U_horngrave.glif + Uhornhookabove + U_hornhookabove.glif + Uhorntilde + U_horntilde.glif + Uhungarumlaut + U_hungarumlaut.glif + Umacron + U_macron.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Utilde + U_tilde.glif + V + V_.glif + Vdotbelow + V_dotbelow.glif + W + W_.glif + Wacute + W_acute.glif + Wcircumflex + W_circumflex.glif + Wdieresis + W_dieresis.glif + Wgrave + W_grave.glif + X + X_.glif + Xdieresis + X_dieresis.glif + Y + Y_.glif + Yacute + Y_acute.glif + Ycircumflex + Y_circumflex.glif + Ydieresis + Y_dieresis.glif + Ydotaccent + Y_dotaccent.glif + Ydotbelow + Y_dotbelow.glif + Ygrave + Y_grave.glif + Yhookabove + Y_hookabove.glif + Ymacron + Y_macron.glif + Ytilde + Y_tilde.glif + Z + Z_.glif + Zacute + Z_acute.glif + Zcaron + Z_caron.glif + Zcircumflex + Z_circumflex.glif + Zdotaccent + Z_dotaccent.glif + Zdotbelow + Z_dotbelow.glif + Zlinebelow + Z_linebelow.glif + a + a.glif + aacute + aacute.glif + abreve + abreve.glif + abreveacute + abreveacute.glif + abrevedotbelow + abrevedotbelow.glif + abrevegrave + abrevegrave.glif + abrevehookabove + abrevehookabove.glif + abrevetilde + abrevetilde.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflexacute + acircumflexacute.glif + acircumflexdotbelow + acircumflexdotbelow.glif + acircumflexgrave + acircumflexgrave.glif + acircumflexhookabove + acircumflexhookabove.glif + acircumflextilde + acircumflextilde.glif + acute + acute.glif + acutecmb + acutecmb.glif + acutecmb.cap + acutecmb.cap.glif + adieresis + adieresis.glif + adotaccent + adotaccent.glif + adotbelow + adotbelow.glif + ae + ae.glif + agrave + agrave.glif + ahookabove + ahookabove.glif + amacron + amacron.glif + ampersand + ampersand.glif + ampersand_ampersand.liga + ampersand_ampersand.liga.glif + aogonek + aogonek.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + asciicircum + asciicircum.glif + asciicircum_equal.liga + asciicircum_equal.liga.glif + asciitilde + asciitilde.glif + asciitilde_asciitilde.liga + asciitilde_asciitilde.liga.glif + asciitilde_asciitilde_greater + asciitilde_asciitilde_greater.glif + asciitilde_at.liga + asciitilde_at.liga.glif + asciitilde_greater.liga + asciitilde_greater.liga.glif + asciitilde_hyphen.liga + asciitilde_hyphen.liga.glif + asterisk + asterisk.glif + asterisk_asterisk.liga + asterisk_asterisk.liga.glif + asterisk_asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga.glif + asterisk_greater.liga + asterisk_greater.liga.glif + asterisk_slash.liga + asterisk_slash.liga.glif + at + at.glif + atilde + atilde.glif + b + b.glif + backslash + backslash.glif + backslash_slash.liga + backslash_slash.liga.glif + bahtthai + bahtthai.glif + bar + bar.glif + bar_bar.liga + bar_bar.liga.glif + bar_bar_bar.liga + bar_bar_bar.liga.glif + bar_bar_bar_greater.liga + bar_bar_bar_greater.liga.glif + bar_bar_equal.liga + bar_bar_equal.liga.glif + bar_bar_equal.start + bar_bar_equal.start.glif + bar_bar_greater.liga + bar_bar_greater.liga.glif + bar_bar_hyphen.liga + bar_bar_hyphen.liga.glif + bar_bar_hyphen.start + bar_bar_hyphen.start.glif + bar_braceright.liga + bar_braceright.liga.glif + bar_bracketright.liga + bar_bracketright.liga.glif + bar_equal.liga + bar_equal.liga.glif + bar_equal.start + bar_equal.start.glif + bar_greater.liga + bar_greater.liga.glif + bar_hyphen.liga + bar_hyphen.liga.glif + bar_hyphen.start + bar_hyphen.start.glif + blinebelow + blinebelow.glif + braceleft + braceleft.glif + braceleft_bar.liga + braceleft_bar.liga.glif + braceright + braceright.glif + bracketleft + bracketleft.glif + bracketleft_bar.liga + bracketleft_bar.liga.glif + bracketright + bracketright.glif + bracketright_numbersign.liga + bracketright_numbersign.liga.glif + breve + breve.glif + breveacute + breveacute.glif + breveacute.cap + breveacute.cap.glif + brevebelowcmb + brevebelowcmb.glif + brevecmb + brevecmb.glif + brevecmb.cap + brevecmb.cap.glif + brevegrave + brevegrave.glif + brevegrave.cap + brevegrave.cap.glif + brevehook + brevehook.glif + brevehook.cap + brevehook.cap.glif + brevetilde + brevetilde.glif + brevetilde.cap + brevetilde.cap.glif + bullet + bullet.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caroncmb + caroncmb.glif + caroncmb.cap + caroncmb.cap.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cedillacmb + cedillacmb.glif + cent + cent.glif + circumflex + circumflex.glif + circumflexacute + circumflexacute.glif + circumflexacute.cap + circumflexacute.cap.glif + circumflexbelowcmb + circumflexbelowcmb.glif + circumflexcmb + circumflexcmb.glif + circumflexcmb.cap + circumflexcmb.cap.glif + circumflexgrave + circumflexgrave.glif + circumflexgrave.cap + circumflexgrave.cap.glif + circumflexhook + circumflexhook.glif + circumflexhook.cap + circumflexhook.cap.glif + circumflextilde + circumflextilde.glif + circumflextilde.cap + circumflextilde.cap.glif + colon + colon.glif + colon.fig + colon.fig.glif + colon_colon.liga + colon_colon.liga.glif + colon_colon_colon.liga + colon_colon_colon.liga.glif + colon_colon_equal.liga + colon_colon_equal.liga.glif + colon_equal.liga + colon_equal.liga.glif + colon_greater.liga + colon_greater.liga.glif + colon_less.liga + colon_less.liga.glif + comma + comma.glif + commaaboverightcmb + commaaboverightcmb.glif + commaturnedabovecmb + commaturnedabovecmb.glif + commaturnedmod + commaturnedmod.glif + copyright + copyright.glif + d + d.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + darkshade + darkshade.glif + dbldnhorzbxd + dbldnhorzbxd.glif + dbldnleftbxd + dbldnleftbxd.glif + dbldnrightbxd + dbldnrightbxd.glif + dblhorzbxd + dblhorzbxd.glif + dblprimemod + dblprimemod.glif + dbluphorzbxd + dbluphorzbxd.glif + dblupleftbxd + dblupleftbxd.glif + dbluprightbxd + dbluprightbxd.glif + dblvertbxd + dblvertbxd.glif + dblverthorzbxd + dblverthorzbxd.glif + dblvertleftbxd + dblvertleftbxd.glif + dblvertrightbxd + dblvertrightbxd.glif + dcaron + dcaron.glif + dcircumflexbelow + dcircumflexbelow.glif + dcroat + dcroat.glif + ddotbelow + ddotbelow.glif + degree + degree.glif + dieresis + dieresis.glif + dieresisacute + dieresisacute.glif + dieresisacute.cap + dieresisacute.cap.glif + dieresisbelowcmb + dieresisbelowcmb.glif + dieresiscaron + dieresiscaron.glif + dieresiscaron.cap + dieresiscaron.cap.glif + dieresiscmb + dieresiscmb.glif + dieresiscmb.cap + dieresiscmb.cap.glif + dieresisgrave + dieresisgrave.glif + dieresisgrave.cap + dieresisgrave.cap.glif + dieresismacron + dieresismacron.glif + dieresismacron.cap + dieresismacron.cap.glif + divide + divide.glif + dlinebelow + dlinebelow.glif + dndblhorzsngbxd + dndblhorzsngbxd.glif + dndblleftsngbxd + dndblleftsngbxd.glif + dndblrightsngbxd + dndblrightsngbxd.glif + dneighthblock + dneighthblock.glif + dnfiveeighthsblock + dnfiveeighthsblock.glif + dnhalfblock + dnhalfblock.glif + dnheavyhorzlightbxd + dnheavyhorzlightbxd.glif + dnheavyleftlightbxd + dnheavyleftlightbxd.glif + dnheavyleftuplightbxd + dnheavyleftuplightbxd.glif + dnheavyrightlightbxd + dnheavyrightlightbxd.glif + dnheavyrightuplightbxd + dnheavyrightuplightbxd.glif + dnheavyuphorzlightbxd + dnheavyuphorzlightbxd.glif + dnleftquadrant + dnleftquadrant.glif + dnlighthorzheavybxd + dnlighthorzheavybxd.glif + dnlightleftheavybxd + dnlightleftheavybxd.glif + dnlightleftupheavybxd + dnlightleftupheavybxd.glif + dnlightrightheavybxd + dnlightrightheavybxd.glif + dnlightrightupheavybxd + dnlightrightupheavybxd.glif + dnlightuphorzheavybxd + dnlightuphorzheavybxd.glif + dnquarterblock + dnquarterblock.glif + dnrightquadrant + dnrightquadrant.glif + dnseveneighthsblock + dnseveneighthsblock.glif + dnsnghorzdblbxd + dnsnghorzdblbxd.glif + dnsngleftdblbxd + dnsngleftdblbxd.glif + dnsngrightdblbxd + dnsngrightdblbxd.glif + dnthreeeighthsblock + dnthreeeighthsblock.glif + dnthreequartersblock + dnthreequartersblock.glif + dollar + dollar.glif + dollar_greater.liga + dollar_greater.liga.glif + dong + dong.glif + dotaccent + dotaccent.glif + dotaccentcmb + dotaccentcmb.glif + dotaccentcmb.cap + dotaccentcmb.cap.glif + dotbelowcmb + dotbelowcmb.glif + dotlessi + dotlessi.glif + dotlessj + dotlessj.glif + e + e.glif + eacute + eacute.glif + ebreve + ebreve.glif + ecaron + ecaron.glif + ecircumflex + ecircumflex.glif + ecircumflexacute + ecircumflexacute.glif + ecircumflexdotbelow + ecircumflexdotbelow.glif + ecircumflexgrave + ecircumflexgrave.glif + ecircumflexhookabove + ecircumflexhookabove.glif + ecircumflextilde + ecircumflextilde.glif + edieresis + edieresis.glif + edotaccent + edotaccent.glif + edotbelow + edotbelow.glif + egrave + egrave.glif + ehookabove + ehookabove.glif + eight + eight.glif + eight.den + eight.den.glif + eight.inf + eight.inf.glif + eight.num + eight.num.glif + eight.sup + eight.sup.glif + ellipsis + ellipsis.glif + emacron + emacron.glif + emdash + emdash.glif + endash + endash.glif + eng + eng.glif + eogonek + eogonek.glif + equal + equal.glif + equal.end + equal.end.glif + equal.middle + equal.middle.glif + equal.start + equal.start.glif + equal_asciitilde.liga + equal_asciitilde.liga.glif + equal_bar.end + equal_bar.end.glif + equal_bar.liga + equal_bar.liga.glif + equal_bar_bar.end + equal_bar_bar.end.glif + equal_bar_bar.liga + equal_bar_bar.liga.glif + equal_bar_bar_equal.middle + equal_bar_bar_equal.middle.glif + equal_bar_equal.middle + equal_bar_equal.middle.glif + equal_colon_equal.middle + equal_colon_equal.middle.glif + equal_equal.liga + equal_equal.liga.glif + equal_equal_equal.liga + equal_equal_equal.liga.glif + equal_exclam_equal.middle + equal_exclam_equal.middle.glif + equal_greater.end + equal_greater.end.glif + equal_greater.liga + equal_greater.liga.glif + equal_greater_equal.middle + equal_greater_equal.middle.glif + equal_greater_greater.end + equal_greater_greater.end.glif + equal_greater_greater.liga + equal_greater_greater.liga.glif + equal_greater_greater_equal.m + equal_greater_greater_equal.m.glif + equal_less.end + equal_less.end.glif + equal_less.liga + equal_less.liga.glif + equal_less_equal.middle + equal_less_equal.middle.glif + equal_less_less.end + equal_less_less.end.glif + equal_less_less.liga + equal_less_less.liga.glif + equal_less_less_equal.middle + equal_less_less_equal.middle.glif + equal_slash.end + equal_slash.end.glif + equal_slash.liga + equal_slash.liga.glif + equal_slash_equal.middle + equal_slash_equal.middle.glif + equal_slash_slash.end + equal_slash_slash.end.glif + equal_slash_slash.liga + equal_slash_slash.liga.glif + equal_slash_slash_equal.middle + equal_slash_slash_equal.middle.glif + eth + eth.glif + etilde + etilde.glif + exclam + exclam.glif + exclam_asciitilde.liga + exclam_asciitilde.liga.glif + exclam_equal.liga + exclam_equal.liga.glif + exclam_equal_equal.liga + exclam_equal_equal.liga.glif + exclam_exclam.liga + exclam_exclam.liga.glif + exclam_exclam_period.liga + exclam_exclam_period.liga.glif + exclamdown + exclamdown.glif + f + f.glif + five + five.glif + five.den + five.den.glif + five.inf + five.inf.glif + five.num + five.num.glif + five.sup + five.sup.glif + fiveeighths + fiveeighths.glif + fivesixths + fivesixths.glif + four + four.glif + four.den + four.den.glif + four.inf + four.inf.glif + four.num + four.num.glif + four.sup + four.sup.glif + fourfifths + fourfifths.glif + fracbar + fracbar.glif + fraction + fraction.glif + fullblock + fullblock.glif + g + g.glif + gbreve + gbreve.glif + gcaron + gcaron.glif + gcircumflex + gcircumflex.glif + gcommaaccent + gcommaaccent.glif + gdotaccent + gdotaccent.glif + germandbls + germandbls.glif + gmacron + gmacron.glif + grave + grave.glif + gravecmb + gravecmb.glif + gravecmb.cap + gravecmb.cap.glif + greater + greater.glif + greater_colon.liga + greater_colon.liga.glif + greater_equal + greater_equal.glif + greater_equal.liga + greater_equal.liga.glif + greater_equal.start + greater_equal.start.glif + greater_equal_greater.liga + greater_equal_greater.liga.glif + greater_greater.liga + greater_greater.liga.glif + greater_greater_equal.liga + greater_greater_equal.liga.glif + greater_greater_equal.start + greater_greater_equal.start.glif + greater_greater_greater.liga + greater_greater_greater.liga.glif + greater_greater_hyphen.liga + greater_greater_hyphen.liga.glif + greater_greater_hyphen.start + greater_greater_hyphen.start.glif + greater_hyphen.liga + greater_hyphen.liga.glif + greater_hyphen.start + greater_hyphen.start.glif + greater_hyphen_greater.liga + greater_hyphen_greater.liga.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetright + guillemetright.glif + guilsinglleft + guilsinglleft.glif + guilsinglright + guilsinglright.glif + h + h.glif + hbar + hbar.glif + hbrevebelow + hbrevebelow.glif + hcedilla + hcedilla.glif + hcircumflex + hcircumflex.glif + hdotbelow + hdotbelow.glif + heavydbldashhorzbxd + heavydbldashhorzbxd.glif + heavydbldashvertbxd + heavydbldashvertbxd.glif + heavydnbxd + heavydnbxd.glif + heavydnhorzbxd + heavydnhorzbxd.glif + heavydnleftbxd + heavydnleftbxd.glif + heavydnrightbxd + heavydnrightbxd.glif + heavyhorzbxd + heavyhorzbxd.glif + heavyleftbxd + heavyleftbxd.glif + heavyleftlightrightbxd + heavyleftlightrightbxd.glif + heavyquaddashhorzbxd + heavyquaddashhorzbxd.glif + heavyquaddashvertbxd + heavyquaddashvertbxd.glif + heavyrightbxd + heavyrightbxd.glif + heavytrpldashhorzbxd + heavytrpldashhorzbxd.glif + heavytrpldashvertbxd + heavytrpldashvertbxd.glif + heavyupbxd + heavyupbxd.glif + heavyuphorzbxd + heavyuphorzbxd.glif + heavyupleftbxd + heavyupleftbxd.glif + heavyuplightdnbxd + heavyuplightdnbxd.glif + heavyuprightbxd + heavyuprightbxd.glif + heavyvertbxd + heavyvertbxd.glif + heavyverthorzbxd + heavyverthorzbxd.glif + heavyvertleftbxd + heavyvertleftbxd.glif + heavyvertrightbxd + heavyvertrightbxd.glif + hlinebelow + hlinebelow.glif + hookcmb + hookcmb.glif + hookcmb.cap + hookcmb.cap.glif + horizontalbar + horizontalbar.glif + hungarumlaut + hungarumlaut.glif + hungarumlautcmb + hungarumlautcmb.glif + hungarumlautcmb.cap + hungarumlautcmb.cap.glif + hyphen + hyphen.glif + hyphen.end + hyphen.end.glif + hyphen.middle + hyphen.middle.glif + hyphen.start + hyphen.start.glif + hyphen_asciitilde.liga + hyphen_asciitilde.liga.glif + hyphen_bar.end + hyphen_bar.end.glif + hyphen_bar.liga + hyphen_bar.liga.glif + hyphen_bar_bar.end + hyphen_bar_bar.end.glif + hyphen_bar_bar.liga + hyphen_bar_bar.liga.glif + hyphen_bar_bar_hyphen.middle + hyphen_bar_bar_hyphen.middle.glif + hyphen_bar_hyphen.middle + hyphen_bar_hyphen.middle.glif + hyphen_greater.end + hyphen_greater.end.glif + hyphen_greater.liga + hyphen_greater.liga.glif + hyphen_greater_greater.end + hyphen_greater_greater.end.glif + hyphen_greater_greater.liga + hyphen_greater_greater.liga.glif + hyphen_greater_greater_hyphen.m + hyphen_greater_greater_hyphen.m.glif + hyphen_greater_hyphen.middle + hyphen_greater_hyphen.middle.glif + hyphen_hyphen.liga + hyphen_hyphen.liga.glif + hyphen_hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga.glif + hyphen_less.end + hyphen_less.end.glif + hyphen_less.liga + hyphen_less.liga.glif + hyphen_less_hyphen.middle + hyphen_less_hyphen.middle.glif + hyphen_less_less.end + hyphen_less_less.end.glif + hyphen_less_less.liga + hyphen_less_less.liga.glif + hyphen_less_less_hyphen.middle + hyphen_less_less_hyphen.middle.glif + i + i.glif + iacute + iacute.glif + ibreve + ibreve.glif + icaron + icaron.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idotaccent + idotaccent.glif + idotbelow + idotbelow.glif + igrave + igrave.glif + ihookabove + ihookabove.glif + imacron + imacron.glif + iogonek + iogonek.glif + itilde + itilde.glif + j + j.glif + jcaron + jcaron.glif + jcircumflex + jcircumflex.glif + k + k.glif + kcommaaccent + kcommaaccent.glif + kdotbelow + kdotbelow.glif + klinebelow + klinebelow.glif + l + l.glif + l.dot + l.dot.glif + lacute + lacute.glif + lcaron + lcaron.glif + lcircumflexbelow + lcircumflexbelow.glif + lcommaaccent + lcommaaccent.glif + ldotbelow + ldotbelow.glif + leftdnheavyrightuplightbxd + leftdnheavyrightuplightbxd.glif + lefteighthblock + lefteighthblock.glif + leftfiveeighthsblock + leftfiveeighthsblock.glif + lefthalfblock + lefthalfblock.glif + leftheavyrightdnlightbxd + leftheavyrightdnlightbxd.glif + leftheavyrightuplightbxd + leftheavyrightuplightbxd.glif + leftheavyrightvertlightbxd + leftheavyrightvertlightbxd.glif + leftlightrightdnheavybxd + leftlightrightdnheavybxd.glif + leftlightrightupheavybxd + leftlightrightupheavybxd.glif + leftlightrightvertheavybxd + leftlightrightvertheavybxd.glif + leftquarterblock + leftquarterblock.glif + leftseveneighthsblock + leftseveneighthsblock.glif + leftthreeeighthsblock + leftthreeeighthsblock.glif + leftthreequartersblock + leftthreequartersblock.glif + leftupheavyrightdnlightbxd + leftupheavyrightdnlightbxd.glif + less + less.glif + less_asciitilde.liga + less_asciitilde.liga.glif + less_asciitilde_asciitilde.liga + less_asciitilde_asciitilde.liga.glif + less_asciitilde_greater.liga + less_asciitilde_greater.liga.glif + less_asterisk.liga + less_asterisk.liga.glif + less_asterisk_greater.liga + less_asterisk_greater.liga.glif + less_bar.liga + less_bar.liga.glif + less_bar_bar.liga + less_bar_bar.liga.glif + less_bar_bar_bar.liga + less_bar_bar_bar.liga.glif + less_bar_greater.liga + less_bar_greater.liga.glif + less_colon.liga + less_colon.liga.glif + less_dollar.liga + less_dollar.liga.glif + less_dollar_greater.liga + less_dollar_greater.liga.glif + less_equal + less_equal.glif + less_equal.liga + less_equal.liga.glif + less_equal.start + less_equal.start.glif + less_equal_greater.liga + less_equal_greater.liga.glif + less_equal_less.liga + less_equal_less.liga.glif + less_exclam_hyphen_hyphen.liga + less_exclam_hyphen_hyphen.liga.glif + less_greater.liga + less_greater.liga.glif + less_hyphen.liga + less_hyphen.liga.glif + less_hyphen.start + less_hyphen.start.glif + less_hyphen_greater.liga + less_hyphen_greater.liga.glif + less_hyphen_less.liga + less_hyphen_less.liga.glif + less_less.liga + less_less.liga.glif + less_less_equal.liga + less_less_equal.liga.glif + less_less_equal.start + less_less_equal.start.glif + less_less_hyphen.liga + less_less_hyphen.liga.glif + less_less_hyphen.start + less_less_hyphen.start.glif + less_less_less.liga + less_less_less.liga.glif + less_plus.liga + less_plus.liga.glif + less_plus_greater.liga + less_plus_greater.liga.glif + less_slash.liga + less_slash.liga.glif + less_slash_greater.liga + less_slash_greater.liga.glif + lessequal + lessequal.glif + lightarcdnleftbxd + lightarcdnleftbxd.glif + lightarcdnrightbxd + lightarcdnrightbxd.glif + lightarcupleftbxd + lightarcupleftbxd.glif + lightarcuprightbxd + lightarcuprightbxd.glif + lightdbldashhorzbxd + lightdbldashhorzbxd.glif + lightdbldashvertbxd + lightdbldashvertbxd.glif + lightdiagcrossbxd + lightdiagcrossbxd.glif + lightdiagupleftdnrightbxd + lightdiagupleftdnrightbxd.glif + lightdiaguprightdnleftbxd + lightdiaguprightdnleftbxd.glif + lightdnbxd + lightdnbxd.glif + lightdnhorzbxd + lightdnhorzbxd.glif + lightdnleftbxd + lightdnleftbxd.glif + lightdnrightbxd + lightdnrightbxd.glif + lighthorzbxd + lighthorzbxd.glif + lightleftbxd + lightleftbxd.glif + lightleftheavyrightbxd + lightleftheavyrightbxd.glif + lightquaddashhorzbxd + lightquaddashhorzbxd.glif + lightquaddashvertbxd + lightquaddashvertbxd.glif + lightrightbxd + lightrightbxd.glif + lightshade + lightshade.glif + lighttrpldashhorzbxd + lighttrpldashhorzbxd.glif + lighttrpldashvertbxd + lighttrpldashvertbxd.glif + lightupbxd + lightupbxd.glif + lightupheavydnbxd + lightupheavydnbxd.glif + lightuphorzbxd + lightuphorzbxd.glif + lightupleftbxd + lightupleftbxd.glif + lightuprightbxd + lightuprightbxd.glif + lightvertbxd + lightvertbxd.glif + lightverthorzbxd + lightverthorzbxd.glif + lightvertleftbxd + lightvertleftbxd.glif + lightvertrightbxd + lightvertrightbxd.glif + ligspacer + ligspacer.glif + llinebelow + llinebelow.glif + lmacrondotbelow + lmacrondotbelow.glif + lslash + lslash.glif + m + m.glif + macron + macron.glif + macronbelowcmb + macronbelowcmb.glif + macroncmb + macroncmb.glif + macroncmb.cap + macroncmb.cap.glif + macronlowmod + macronlowmod.glif + macute + macute.glif + mdotaccent + mdotaccent.glif + mdotbelow + mdotbelow.glif + mediumshade + mediumshade.glif + middotcat + middotcat.glif + middotcat.cap + middotcat.cap.glif + minus + minus.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + naira + naira.glif + ncaron + ncaron.glif + ncircumflexbelow + ncircumflexbelow.glif + ncommaaccent + ncommaaccent.glif + ndotaccent + ndotaccent.glif + ndotbelow + ndotbelow.glif + ngrave + ngrave.glif + nine + nine.glif + nine.den + nine.den.glif + nine.inf + nine.inf.glif + nine.num + nine.num.glif + nine.sup + nine.sup.glif + nlinebelow + nlinebelow.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numbersign.end + numbersign.end.glif + numbersign.middle + numbersign.middle.glif + numbersign.start + numbersign.start.glif + numbersign_braceleft.liga + numbersign_braceleft.liga.glif + numbersign_bracketleft.liga + numbersign_bracketleft.liga.glif + numbersign_colon.liga + numbersign_colon.liga.glif + numbersign_equal.liga + numbersign_equal.liga.glif + numbersign_exclam.liga + numbersign_exclam.liga.glif + numbersign_parenleft.liga + numbersign_parenleft.liga.glif + numbersign_question.liga + numbersign_question.liga.glif + numbersign_underscore.liga + numbersign_underscore.liga.glif + numbersign_underscore_parenleft + numbersign_underscore_parenleft.glif + o + o.glif + oacute + oacute.glif + obreve + obreve.glif + ocaron + ocaron.glif + ocircumflex + ocircumflex.glif + ocircumflexacute + ocircumflexacute.glif + ocircumflexdotbelow + ocircumflexdotbelow.glif + ocircumflexgrave + ocircumflexgrave.glif + ocircumflexhookabove + ocircumflexhookabove.glif + ocircumflextilde + ocircumflextilde.glif + odieresis + odieresis.glif + odotaccent + odotaccent.glif + odotbelow + odotbelow.glif + oe + oe.glif + ogonek + ogonek.glif + ogonekcmb + ogonekcmb.glif + ograve + ograve.glif + ohookabove + ohookabove.glif + ohorn + ohorn.glif + ohornacute + ohornacute.glif + ohorndotbelow + ohorndotbelow.glif + ohorngrave + ohorngrave.glif + ohornhookabove + ohornhookabove.glif + ohorntilde + ohorntilde.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + one + one.glif + one.den + one.den.glif + one.inf + one.inf.glif + one.num + one.num.glif + one.sup + one.sup.glif + oneeighth + oneeighth.glif + onefifth + onefifth.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesixth + onesixth.glif + onethird + onethird.glif + oogonek + oogonek.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + otilde + otilde.glif + p + p.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenright + parenright.glif + percent + percent.glif + percent_percent.liga + percent_percent.liga.glif + period + period.glif + period_equal.liga + period_equal.liga.glif + period_hyphen.liga + period_hyphen.liga.glif + period_period.liga + period_period.liga.glif + period_period_equal.liga + period_period_equal.liga.glif + period_period_less.liga + period_period_less.liga.glif + period_period_period.liga + period_period_period.liga.glif + period_question.liga + period_question.liga.glif + periodcentered + periodcentered.glif + peso + peso.glif + plus + plus.glif + plus_greater.liga + plus_greater.liga.glif + plus_plus.liga + plus_plus.liga.glif + plus_plus_plus.liga + plus_plus_plus.liga.glif + plusminus + plusminus.glif + primemod + primemod.glif + published + published.glif + q + q.glif + question + question.glif + question_colon.liga + question_colon.liga.glif + question_equal.liga + question_equal.liga.glif + question_period.liga + question_period.liga.glif + question_question.liga + question_question.liga.glif + questiondown + questiondown.glif + quotedbl + quotedbl.glif + quotedblbase + quotedblbase.glif + quotedblleft + quotedblleft.glif + quotedblright + quotedblright.glif + quoteleft + quoteleft.glif + quoteright + quoteright.glif + quotesinglbase + quotesinglbase.glif + quotesingle + quotesingle.glif + r + r.glif + racute + racute.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + rdotaccent + rdotaccent.glif + rdotbelow + rdotbelow.glif + registered + registered.glif + rightdnheavyleftuplightbxd + rightdnheavyleftuplightbxd.glif + righteighthblock + righteighthblock.glif + righthalfblock + righthalfblock.glif + rightheavyleftdnlightbxd + rightheavyleftdnlightbxd.glif + rightheavyleftuplightbxd + rightheavyleftuplightbxd.glif + rightheavyleftvertlightbxd + rightheavyleftvertlightbxd.glif + rightlightleftdnheavybxd + rightlightleftdnheavybxd.glif + rightlightleftupheavybxd + rightlightleftupheavybxd.glif + rightlightleftvertheavybxd + rightlightleftvertheavybxd.glif + rightupheavyleftdnlightbxd + rightupheavyleftdnlightbxd.glif + ring + ring.glif + ringcmb + ringcmb.glif + ringcmb.cap + ringcmb.cap.glif + ringhalfleft + ringhalfleft.glif + ringhalfright + ringhalfright.glif + rlinebelow + rlinebelow.glif + rmacrondotbelow + rmacrondotbelow.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwa + schwa.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + sdotbelow + sdotbelow.glif + section + section.glif + semicolon + semicolon.glif + semicolon_semicolon.liga + semicolon_semicolon.liga.glif + servicemark + servicemark.glif + seven + seven.glif + seven.den + seven.den.glif + seven.inf + seven.inf.glif + seven.num + seven.num.glif + seven.sup + seven.sup.glif + seveneighths + seveneighths.glif + six + six.glif + six.den + six.den.glif + six.inf + six.inf.glif + six.num + six.num.glif + six.sup + six.sup.glif + slash + slash.glif + slash_asterisk.liga + slash_asterisk.liga.glif + slash_backslash.liga + slash_backslash.liga.glif + slash_equal.liga + slash_equal.liga.glif + slash_equal.start + slash_equal.start.glif + slash_greater.liga + slash_greater.liga.glif + slash_slash.liga + slash_slash.liga.glif + slash_slash_equal.liga + slash_slash_equal.liga.glif + slash_slash_equal.start + slash_slash_equal.start.glif + slash_slash_slash.liga + slash_slash_slash.liga.glif + space + space.glif + sterling + sterling.glif + t + t.glif + tbar + tbar.glif + tcaron + tcaron.glif + tcedilla + tcedilla.glif + tcircumflexbelow + tcircumflexbelow.glif + tcommaaccent + tcommaaccent.glif + tdotbelow + tdotbelow.glif + thorn + thorn.glif + three + three.glif + three.den + three.den.glif + three.inf + three.inf.glif + three.num + three.num.glif + three.sup + three.sup.glif + threeeighths + threeeighths.glif + threefifths + threefifths.glif + threequarters + threequarters.glif + tilde + tilde.glif + tildecmb + tildecmb.glif + tildecmb.cap + tildecmb.cap.glif + tlinebelow + tlinebelow.glif + trademark + trademark.glif + two + two.glif + two.den + two.den.glif + two.inf + two.inf.glif + two.num + two.num.glif + two.sup + two.sup.glif + twodotleader + twodotleader.glif + twofifths + twofifths.glif + twothirds + twothirds.glif + u + u.glif + uacute + uacute.glif + ubreve + ubreve.glif + ucaron + ucaron.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresisacute + udieresisacute.glif + udieresiscaron + udieresiscaron.glif + udieresisgrave + udieresisgrave.glif + udieresismacron + udieresismacron.glif + udotbelow + udotbelow.glif + ugrave + ugrave.glif + uhookabove + uhookabove.glif + uhorn + uhorn.glif + uhornacute + uhornacute.glif + uhorndotbelow + uhorndotbelow.glif + uhorngrave + uhorngrave.glif + uhornhookabove + uhornhookabove.glif + uhorntilde + uhorntilde.glif + uhungarumlaut + uhungarumlaut.glif + umacron + umacron.glif + underscore + underscore.glif + underscore.end + underscore.end.glif + underscore.middle + underscore.middle.glif + underscore.start + underscore.start.glif + underscore_bar_underscore.m + underscore_bar_underscore.m.glif + uni00A0 + uni00A_0.glif + uni0326 + uni0326.glif + uni1E9E + uni1E_9E_.glif + uni2011 + uni2011.glif + uni20B9 + uni20B_9.glif + uni20BA + uni20B_A_.glif + uni20BD + uni20B_D_.glif + uni2610 + uni2610.glif + uni2611 + uni2611.glif + uni2612 + uni2612.glif + uni2713 + uni2713.glif + uniA788 + uniA_788.glif + uniE0A0 + uniE_0A_0.glif + uniE0A1 + uniE_0A_1.glif + uniE0A2 + uniE_0A_2.glif + uniE0B0 + uniE_0B_0.glif + uniE0B1 + uniE_0B_1.glif + uniE0B2 + uniE_0B_2.glif + uniE0B3 + uniE_0B_3.glif + uogonek + uogonek.glif + updblhorzsngbxd + updblhorzsngbxd.glif + updblleftsngbxd + updblleftsngbxd.glif + updblrightsngbxd + updblrightsngbxd.glif + upeighthblock + upeighthblock.glif + uphalfblock + uphalfblock.glif + upheavydnhorzlightbxd + upheavydnhorzlightbxd.glif + upheavyhorzlightbxd + upheavyhorzlightbxd.glif + upheavyleftdnlightbxd + upheavyleftdnlightbxd.glif + upheavyleftlightbxd + upheavyleftlightbxd.glif + upheavyrightdnlightbxd + upheavyrightdnlightbxd.glif + upheavyrightlightbxd + upheavyrightlightbxd.glif + upleftdnleftdnrightquadrant + upleftdnleftdnrightquadrant.glif + upleftdnrightquadrant + upleftdnrightquadrant.glif + upleftquadrant + upleftquadrant.glif + upleftuprightdnleftquadrant + upleftuprightdnleftquadrant.glif + upleftuprightdnrightquadrant + upleftuprightdnrightquadrant.glif + uplightdnhorzheavybxd + uplightdnhorzheavybxd.glif + uplighthorzheavybxd + uplighthorzheavybxd.glif + uplightleftdnheavybxd + uplightleftdnheavybxd.glif + uplightleftheavybxd + uplightleftheavybxd.glif + uplightrightdnheavybxd + uplightrightdnheavybxd.glif + uplightrightheavybxd + uplightrightheavybxd.glif + uprightdnleftdnrightquadrant + uprightdnleftdnrightquadrant.glif + uprightdnleftquadrant + uprightdnleftquadrant.glif + uprightquadrant + uprightquadrant.glif + upsnghorzdblbxd + upsnghorzdblbxd.glif + upsngleftdblbxd + upsngleftdblbxd.glif + upsngrightdblbxd + upsngrightdblbxd.glif + uring + uring.glif + utilde + utilde.glif + v + v.glif + vdotbelow + vdotbelow.glif + vertdblhorzsngbxd + vertdblhorzsngbxd.glif + vertdblleftsngbxd + vertdblleftsngbxd.glif + vertdblrightsngbxd + vertdblrightsngbxd.glif + vertheavyhorzlightbxd + vertheavyhorzlightbxd.glif + vertheavyleftlightbxd + vertheavyleftlightbxd.glif + vertheavyrightlightbxd + vertheavyrightlightbxd.glif + verticallinelowmod + verticallinelowmod.glif + verticallinemod + verticallinemod.glif + vertlighthorzheavybxd + vertlighthorzheavybxd.glif + vertlightleftheavybxd + vertlightleftheavybxd.glif + vertlightrightheavybxd + vertlightrightheavybxd.glif + vertsnghorzdblbxd + vertsnghorzdblbxd.glif + vertsngleftdblbxd + vertsngleftdblbxd.glif + vertsngrightdblbxd + vertsngrightdblbxd.glif + w + w.glif + w_w_w.liga + w_w_w.liga.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wgrave + wgrave.glif + won + won.glif + x + x.glif + xdieresis + xdieresis.glif + y + y.glif + yacute + yacute.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + ydotaccent + ydotaccent.glif + ydotbelow + ydotbelow.glif + yen + yen.glif + ygrave + ygrave.glif + yhookabove + yhookabove.glif + ymacron + ymacron.glif + ytilde + ytilde.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zcircumflex + zcircumflex.glif + zdotaccent + zdotaccent.glif + zdotbelow + zdotbelow.glif + zero + zero.glif + zero.den + zero.den.glif + zero.inf + zero.inf.glif + zero.num + zero.num.glif + zero.sup + zero.sup.glif + zlinebelow + zlinebelow.glif + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/copyright.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/copyright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/copyright.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/copyright.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/d.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/d.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/d.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/d.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dagger.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dagger.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dagger.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dagger.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/daggerdbl.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/daggerdbl.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/daggerdbl.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/daggerdbl.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/darkshade.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/darkshade.glif new file mode 100644 index 00000000..e6ce8215 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/darkshade.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dbldnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dbldnhorzbxd.glif new file mode 100644 index 00000000..64ba8e60 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dbldnhorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dbldnleftbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dbldnleftbxd.glif new file mode 100644 index 00000000..b50e4877 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dbldnleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dbldnrightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dbldnrightbxd.glif new file mode 100644 index 00000000..ccc51318 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dbldnrightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dblhorzbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dblhorzbxd.glif new file mode 100644 index 00000000..63f2a9d2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dblhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dblprimemod.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dblprimemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dblprimemod.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dblprimemod.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dbluphorzbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dbluphorzbxd.glif new file mode 100644 index 00000000..aaa937ec --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dbluphorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dblupleftbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dblupleftbxd.glif new file mode 100644 index 00000000..4f812e09 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dblupleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dbluprightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dbluprightbxd.glif new file mode 100644 index 00000000..00ad7c58 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dbluprightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dblvertbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dblvertbxd.glif new file mode 100644 index 00000000..747190e6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dblvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dblverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dblverthorzbxd.glif new file mode 100644 index 00000000..10026420 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dblverthorzbxd.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dblvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dblvertleftbxd.glif new file mode 100644 index 00000000..43e6032e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dblvertleftbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dblvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dblvertrightbxd.glif new file mode 100644 index 00000000..fed2372a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dblvertrightbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dcaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..f7f1e8df --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dcircumflexbelow.glif new file mode 100644 index 00000000..d931cb64 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dcroat.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..c16342ef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dcroat.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ddotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ddotbelow.glif new file mode 100644 index 00000000..876c7a3b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ddotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/degree.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/degree.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/degree.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/degree.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresis.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresisacute.cap.glif new file mode 100644 index 00000000..ccc1e252 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresisacute.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresisacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..8ef7c3d3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresisbelowcmb.glif new file mode 100644 index 00000000..3f318281 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresisbelowcmb.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresiscaron.cap.glif new file mode 100644 index 00000000..d65928af --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresiscaron.cap.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresiscaron.glif new file mode 100644 index 00000000..24555898 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresiscaron.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresiscmb.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresiscmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresiscmb.cap.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresiscmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresiscmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresiscmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dieresiscmb.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresiscmb.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresisgrave.cap.glif new file mode 100644 index 00000000..5bf613cd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresisgrave.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresisgrave.glif new file mode 100644 index 00000000..80b9dd0c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresisgrave.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresismacron.cap.glif new file mode 100644 index 00000000..b15a74c9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresismacron.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresismacron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresismacron.glif new file mode 100644 index 00000000..3c3443e2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dieresismacron.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/divide.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/divide.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/divide.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/divide.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dlinebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dlinebelow.glif new file mode 100644 index 00000000..73c6fe71 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dndblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dndblhorzsngbxd.glif new file mode 100644 index 00000000..521358dc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dndblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dndblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dndblleftsngbxd.glif new file mode 100644 index 00000000..7c921f32 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dndblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dndblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dndblrightsngbxd.glif new file mode 100644 index 00000000..6e0a3d52 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dndblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dneighthblock.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dneighthblock.glif new file mode 100644 index 00000000..f9382474 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dneighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnfiveeighthsblock.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnfiveeighthsblock.glif new file mode 100644 index 00000000..6d6b327e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnhalfblock.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnhalfblock.glif new file mode 100644 index 00000000..5cb2299a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnhalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnheavyhorzlightbxd.glif new file mode 100644 index 00000000..a3854e77 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnheavyleftlightbxd.glif new file mode 100644 index 00000000..eaf42e33 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnheavyleftuplightbxd.glif new file mode 100644 index 00000000..57fb9dc6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnheavyrightlightbxd.glif new file mode 100644 index 00000000..69f72386 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnheavyrightuplightbxd.glif new file mode 100644 index 00000000..003ffe4a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnheavyuphorzlightbxd.glif new file mode 100644 index 00000000..e2e9f646 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnheavyuphorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnleftquadrant.glif new file mode 100644 index 00000000..0f752b04 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnlighthorzheavybxd.glif new file mode 100644 index 00000000..ef6b466b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnlighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnlightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnlightleftheavybxd.glif new file mode 100644 index 00000000..c93e0f11 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnlightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnlightleftupheavybxd.glif new file mode 100644 index 00000000..581ada1d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnlightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnlightrightheavybxd.glif new file mode 100644 index 00000000..825b45ac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnlightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnlightrightupheavybxd.glif new file mode 100644 index 00000000..a1440525 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnlightuphorzheavybxd.glif new file mode 100644 index 00000000..ab739647 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnlightuphorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnquarterblock.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnquarterblock.glif new file mode 100644 index 00000000..5dc81108 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnrightquadrant.glif new file mode 100644 index 00000000..012bd532 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnrightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnseveneighthsblock.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnseveneighthsblock.glif new file mode 100644 index 00000000..a47c62d6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnsnghorzdblbxd.glif new file mode 100644 index 00000000..94e46c47 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnsngleftdblbxd.glif new file mode 100644 index 00000000..d5138065 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnsngrightdblbxd.glif new file mode 100644 index 00000000..84853a30 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnthreeeighthsblock.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnthreeeighthsblock.glif new file mode 100644 index 00000000..e54a10a3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnthreequartersblock.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnthreequartersblock.glif new file mode 100644 index 00000000..e7b739c3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dnthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dollar.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dollar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dollar.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dollar.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dollar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dollar_greater.liga.glif new file mode 100644 index 00000000..4727201a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dollar_greater.liga.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dong.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dong.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dong.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dong.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dotaccent.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dotaccentcmb.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dotaccentcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dotaccentcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dotaccentcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dotaccentcmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dotaccentcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dotaccentcmb.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dotaccentcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dotbelowcmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dotbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dotbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dotbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dotlessi.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dotlessi.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/dotlessi.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dotlessi.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dotlessj.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dotlessj.glif new file mode 100644 index 00000000..be232578 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/dotlessj.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/e.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/e.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/e.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/e.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..399df89f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ebreve.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..18c2ad77 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ebreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..26eb285c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..2ac4ea80 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexacute.glif new file mode 100644 index 00000000..2af7d68d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexdotbelow.glif new file mode 100644 index 00000000..48bf89d4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexgrave.glif new file mode 100644 index 00000000..3f06d5a8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexhookabove.glif new file mode 100644 index 00000000..f5ef32a9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecircumflextilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecircumflextilde.glif new file mode 100644 index 00000000..e8545ce2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ecircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/edieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..48a77fa0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/edieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/edotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..9f5a28c1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/edotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/edotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/edotbelow.glif new file mode 100644 index 00000000..33cc2aaa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/edotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/egrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..d1f3f1ca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/egrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ehookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ehookabove.glif new file mode 100644 index 00000000..5bd60e3f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ehookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eight.den.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eight.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eight.den.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eight.den.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eight.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eight.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eight.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eight.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eight.inf.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eight.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eight.inf.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eight.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eight.num.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eight.num.glif new file mode 100644 index 00000000..cc1ad559 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eight.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eight.sup.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eight.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/eight.sup.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eight.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ellipsis.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ellipsis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ellipsis.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ellipsis.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/emacron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..85931f32 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/emacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/emdash.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/emdash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/emdash.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/emdash.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/endash.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/endash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/endash.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/endash.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eng.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eng.glif new file mode 100644 index 00000000..5209e27f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eng.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eogonek.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..cfe56428 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eogonek.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal.end.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal.end.glif new file mode 100644 index 00000000..a04dcbcd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/equal.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/equal.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal.middle.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal.middle.glif new file mode 100644 index 00000000..7fb9cec5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal.start.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal.start.glif new file mode 100644 index 00000000..410b1713 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_asciitilde.liga.glif new file mode 100644 index 00000000..2d682971 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_asciitilde.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_bar.end.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_bar.end.glif new file mode 100644 index 00000000..24539f9d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_bar.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_bar.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_bar.liga.glif new file mode 100644 index 00000000..3ac6266e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_bar.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_bar.end.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_bar.end.glif new file mode 100644 index 00000000..dda05df6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_bar.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_bar.liga.glif new file mode 100644 index 00000000..8a4c33b9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_bar.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_bar_equal.middle.glif new file mode 100644 index 00000000..539ef8f8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_bar_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_equal.middle.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_equal.middle.glif new file mode 100644 index 00000000..e2b6fd4e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_bar_equal.middle.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_colon_equal.middle.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_colon_equal.middle.glif new file mode 100644 index 00000000..02469b39 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_colon_equal.middle.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_equal.liga.glif new file mode 100644 index 00000000..76005483 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_equal.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_equal_equal.liga.glif new file mode 100644 index 00000000..b0346e50 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_equal_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_exclam_equal.middle.glif new file mode 100644 index 00000000..094b51ab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_exclam_equal.middle.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_greater.end.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_greater.end.glif new file mode 100644 index 00000000..4dba1d32 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_greater.end.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_greater.liga.glif new file mode 100644 index 00000000..c147f0da --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_equal.middle.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_equal.middle.glif new file mode 100644 index 00000000..81d960fd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_greater.end.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_greater.end.glif new file mode 100644 index 00000000..f0d863ed --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_greater.end.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_greater.liga.glif new file mode 100644 index 00000000..6de64151 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_greater_equal.m.glif new file mode 100644 index 00000000..08986b71 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_greater_greater_equal.m.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_less.end.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_less.end.glif new file mode 100644 index 00000000..b77f58ce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_less.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_less.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_less.liga.glif new file mode 100644 index 00000000..a9fa760e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_less.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_less_equal.middle.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_less_equal.middle.glif new file mode 100644 index 00000000..cde9daa4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_less_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_less_less.end.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_less_less.end.glif new file mode 100644 index 00000000..e04cf42a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_less_less.end.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_less_less.liga.glif new file mode 100644 index 00000000..6b0c0b56 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_less_less.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_less_less_equal.middle.glif new file mode 100644 index 00000000..0111cccd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_less_less_equal.middle.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_slash.end.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_slash.end.glif new file mode 100644 index 00000000..f2af27b0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_slash.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_slash.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_slash.liga.glif new file mode 100644 index 00000000..72344908 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_slash.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_equal.middle.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_equal.middle.glif new file mode 100644 index 00000000..ad265ba2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_equal.middle.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_slash.end.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_slash.end.glif new file mode 100644 index 00000000..215e0250 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_slash.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_slash.liga.glif new file mode 100644 index 00000000..91869184 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_slash.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_slash_equal.middle.glif new file mode 100644 index 00000000..b68eec0e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/equal_slash_slash_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eth.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eth.glif new file mode 100644 index 00000000..888f1600 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/eth.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/etilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/etilde.glif new file mode 100644 index 00000000..4270e672 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/etilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/exclam.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/exclam.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/exclam.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/exclam.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/exclam_asciitilde.liga.glif new file mode 100644 index 00000000..429e0b18 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/exclam_asciitilde.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/exclam_equal.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/exclam_equal.liga.glif new file mode 100644 index 00000000..28686344 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/exclam_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/exclam_equal_equal.liga.glif new file mode 100644 index 00000000..d30e670a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/exclam_equal_equal.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/exclam_exclam.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/exclam_exclam.liga.glif new file mode 100644 index 00000000..92766d8a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/exclam_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/exclam_exclam_period.liga.glif new file mode 100644 index 00000000..11d9559b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/exclam_exclam_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/exclamdown.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/exclamdown.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/exclamdown.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/exclamdown.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/f.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/f.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/f.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/f.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/five.den.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/five.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/five.den.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/five.den.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/five.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/five.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/five.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/five.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/five.inf.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/five.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/five.inf.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/five.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/five.num.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/five.num.glif new file mode 100644 index 00000000..c299993d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/five.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/five.sup.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/five.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/five.sup.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/five.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/fiveeighths.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/fiveeighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/fiveeighths.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/fiveeighths.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/fivesixths.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/fivesixths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/fivesixths.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/fivesixths.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/four.den.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/four.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/four.den.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/four.den.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/four.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/four.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/four.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/four.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/four.inf.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/four.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/four.inf.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/four.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/four.num.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/four.num.glif new file mode 100644 index 00000000..e02b8324 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/four.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/four.sup.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/four.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/four.sup.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/four.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/fourfifths.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/fourfifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/fourfifths.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/fourfifths.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/fracbar.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/fracbar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/fracbar.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/fracbar.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/fraction.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/fraction.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/fraction.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/fraction.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/fullblock.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/fullblock.glif new file mode 100644 index 00000000..c0d56679 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/fullblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/g.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/g.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/g.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/g.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gbreve.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..8ac8f078 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gbreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gcaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gcaron.glif new file mode 100644 index 00000000..a02d0b44 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gcircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..31cdb978 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gcommaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..2f36684f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gdotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..e35882ea --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/germandbls.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..dc6deb59 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/germandbls.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gmacron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gmacron.glif new file mode 100644 index 00000000..5a9ffef1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gmacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/grave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/grave.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/grave.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gravecmb.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gravecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gravecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gravecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gravecmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gravecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/gravecmb.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/gravecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/greater.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/greater.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_colon.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_colon.liga.glif new file mode 100644 index 00000000..629dedc0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_equal.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_equal.glif new file mode 100644 index 00000000..81d8b296 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_equal.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_equal.liga.glif new file mode 100644 index 00000000..245167ac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_equal.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_equal.start.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_equal.start.glif new file mode 100644 index 00000000..31c595f4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_equal.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_equal_greater.liga.glif new file mode 100644 index 00000000..1264d04f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_equal_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_greater.liga.glif new file mode 100644 index 00000000..9abe077b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_equal.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_equal.liga.glif new file mode 100644 index 00000000..4b8df8ff --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_equal.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_equal.start.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_equal.start.glif new file mode 100644 index 00000000..1232d623 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_equal.start.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_greater.liga.glif new file mode 100644 index 00000000..ec3f5fa3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_hyphen.liga.glif new file mode 100644 index 00000000..4c546dd3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_hyphen.start.glif new file mode 100644 index 00000000..c6563ca3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_greater_hyphen.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_hyphen.liga.glif new file mode 100644 index 00000000..68fc52c4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_hyphen.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_hyphen.start.glif new file mode 100644 index 00000000..100ec1f3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_hyphen.start.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_hyphen_greater.liga.glif new file mode 100644 index 00000000..a9b93c1c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greater_hyphen_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/greaterequal.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greaterequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/greaterequal.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/greaterequal.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/guillemetleft.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/guillemetleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/guillemetleft.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/guillemetleft.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/guillemetright.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/guillemetright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/guillemetright.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/guillemetright.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/guilsinglleft.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/guilsinglleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/guilsinglleft.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/guilsinglleft.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/guilsinglright.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/guilsinglright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/guilsinglright.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/guilsinglright.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/h.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/h.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/h.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/h.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hbar.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..1b95a4cf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hbar.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hbrevebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hbrevebelow.glif new file mode 100644 index 00000000..184c4a88 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hbrevebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hcedilla.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hcedilla.glif new file mode 100644 index 00000000..44fa1e31 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hcedilla.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hcircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..8dc53205 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hdotbelow.glif new file mode 100644 index 00000000..8cbb6130 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavydbldashhorzbxd.glif new file mode 100644 index 00000000..1297d774 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavydbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavydbldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavydbldashvertbxd.glif new file mode 100644 index 00000000..c8cf9abd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavydbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavydnbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavydnbxd.glif new file mode 100644 index 00000000..435bb820 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavydnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavydnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavydnhorzbxd.glif new file mode 100644 index 00000000..751d3ccf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavydnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavydnleftbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavydnleftbxd.glif new file mode 100644 index 00000000..37dbaf7e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavydnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavydnrightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavydnrightbxd.glif new file mode 100644 index 00000000..58264c0e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavydnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyhorzbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyhorzbxd.glif new file mode 100644 index 00000000..4b3bc2a0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyhorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyleftbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyleftbxd.glif new file mode 100644 index 00000000..76b1b8ba --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyleftlightrightbxd.glif new file mode 100644 index 00000000..5b11b136 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyleftlightrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyquaddashhorzbxd.glif new file mode 100644 index 00000000..2daa0594 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyquaddashvertbxd.glif new file mode 100644 index 00000000..5440f402 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyrightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyrightbxd.glif new file mode 100644 index 00000000..b89b2bee --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavytrpldashhorzbxd.glif new file mode 100644 index 00000000..73125c17 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavytrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavytrpldashvertbxd.glif new file mode 100644 index 00000000..c74b5948 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavytrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyupbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyupbxd.glif new file mode 100644 index 00000000..61783fe7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyuphorzbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyuphorzbxd.glif new file mode 100644 index 00000000..6fa146ae --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyupleftbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyupleftbxd.glif new file mode 100644 index 00000000..390d96ed --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyuplightdnbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyuplightdnbxd.glif new file mode 100644 index 00000000..44b43680 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyuplightdnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyuprightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyuprightbxd.glif new file mode 100644 index 00000000..ec6022fe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyvertbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyvertbxd.glif new file mode 100644 index 00000000..0285a4d5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyverthorzbxd.glif new file mode 100644 index 00000000..3fecfaa8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyvertleftbxd.glif new file mode 100644 index 00000000..bd61d260 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyvertrightbxd.glif new file mode 100644 index 00000000..26513ee2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/heavyvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hlinebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hlinebelow.glif new file mode 100644 index 00000000..61ba5f72 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hookcmb.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hookcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hookcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hookcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hookcmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hookcmb.glif new file mode 100644 index 00000000..0298748a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hookcmb.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/horizontalbar.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/horizontalbar.glif new file mode 100644 index 00000000..ef4b3086 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/horizontalbar.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hungarumlaut.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hungarumlaut.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hungarumlaut.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hungarumlautcmb.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hungarumlautcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hungarumlautcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hungarumlautcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hungarumlautcmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hungarumlautcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hungarumlautcmb.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hungarumlautcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen.end.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen.end.glif new file mode 100644 index 00000000..79328ce1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hyphen.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/hyphen.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen.middle.glif new file mode 100644 index 00000000..cf9ed668 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen.start.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen.start.glif new file mode 100644 index 00000000..0a409594 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_asciitilde.liga.glif new file mode 100644 index 00000000..be493f14 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_asciitilde.liga.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar.end.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar.end.glif new file mode 100644 index 00000000..da2a0a03 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar.end.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar.liga.glif new file mode 100644 index 00000000..602ee8d8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_bar.end.glif new file mode 100644 index 00000000..9b1033e9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_bar.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_bar.liga.glif new file mode 100644 index 00000000..e90c6af0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif new file mode 100644 index 00000000..df893154 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_hyphen.middle.glif new file mode 100644 index 00000000..472c162d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_bar_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater.end.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater.end.glif new file mode 100644 index 00000000..860870de --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater.liga.glif new file mode 100644 index 00000000..17ddd228 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_greater.end.glif new file mode 100644 index 00000000..e2ea941d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_greater.end.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_greater.liga.glif new file mode 100644 index 00000000..3c5d7ef4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif new file mode 100644 index 00000000..d7ef005e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_hyphen.middle.glif new file mode 100644 index 00000000..abc2ca65 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_greater_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_hyphen.liga.glif new file mode 100644 index 00000000..4c49ab56 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_hyphen.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..52fb755c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less.end.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less.end.glif new file mode 100644 index 00000000..a0b08ed2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less.end.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less.liga.glif new file mode 100644 index 00000000..5b038ef5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_hyphen.middle.glif new file mode 100644 index 00000000..4310861d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_less.end.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_less.end.glif new file mode 100644 index 00000000..dad26e9e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_less.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_less.liga.glif new file mode 100644 index 00000000..bf4cd85c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_less.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif new file mode 100644 index 00000000..395271cc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/i.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/i.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/i.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/i.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/iacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..6c35b468 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/iacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ibreve.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..b87825a9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ibreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/icaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/icaron.glif new file mode 100644 index 00000000..4728b70a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/icaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/icircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..7c4b1f81 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/icircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/idieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..8e6ff019 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/idieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/idotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/idotaccent.glif new file mode 100644 index 00000000..ef883f98 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/idotaccent.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/idotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/idotbelow.glif new file mode 100644 index 00000000..2506bb5d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/idotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/igrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..3a9ceed0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/igrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ihookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ihookabove.glif new file mode 100644 index 00000000..75721d6f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ihookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/imacron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..0dd3c5cb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/imacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/iogonek.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..fe486d3a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/iogonek.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/itilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..87383742 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/itilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/j.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/j.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/j.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/j.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/jcaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/jcaron.glif new file mode 100644 index 00000000..fa519f23 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/jcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/jcircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..5bd516a8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/k.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/k.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/k.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/k.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/kcommaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..ee60b98a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/kdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/kdotbelow.glif new file mode 100644 index 00000000..b0d92a02 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/kdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/klinebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/klinebelow.glif new file mode 100644 index 00000000..0a112b90 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/klinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/l.dot.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/l.dot.glif new file mode 100644 index 00000000..ecbc5cd7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/l.dot.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/l.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/l.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/l.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/l.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..b899c9ca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/layerinfo.plist b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/layerinfo.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/layerinfo.plist rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/layerinfo.plist diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lcaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..bb3d258d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lcircumflexbelow.glif new file mode 100644 index 00000000..09606d58 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lcommaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..d8aa15d3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ldotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ldotbelow.glif new file mode 100644 index 00000000..d2826d11 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ldotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftdnheavyrightuplightbxd.glif new file mode 100644 index 00000000..5d6b051e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftdnheavyrightuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lefteighthblock.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lefteighthblock.glif new file mode 100644 index 00000000..bd0981c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lefteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftfiveeighthsblock.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftfiveeighthsblock.glif new file mode 100644 index 00000000..1db3b143 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lefthalfblock.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lefthalfblock.glif new file mode 100644 index 00000000..7ad2b780 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lefthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftheavyrightdnlightbxd.glif new file mode 100644 index 00000000..4559317b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftheavyrightuplightbxd.glif new file mode 100644 index 00000000..982efdde --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftheavyrightvertlightbxd.glif new file mode 100644 index 00000000..e7a0aaa1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftheavyrightvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftlightrightdnheavybxd.glif new file mode 100644 index 00000000..e6209aab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftlightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftlightrightupheavybxd.glif new file mode 100644 index 00000000..306cb4a8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftlightrightvertheavybxd.glif new file mode 100644 index 00000000..2768ff56 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftlightrightvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftquarterblock.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftquarterblock.glif new file mode 100644 index 00000000..0a473fc6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftseveneighthsblock.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftseveneighthsblock.glif new file mode 100644 index 00000000..e6dd7d1a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftthreeeighthsblock.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftthreeeighthsblock.glif new file mode 100644 index 00000000..c6bf4e61 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftthreequartersblock.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftthreequartersblock.glif new file mode 100644 index 00000000..75cb3ef3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftupheavyrightdnlightbxd.glif new file mode 100644 index 00000000..4c8a7ceb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/leftupheavyrightdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/less.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/less.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_asciitilde.liga.glif new file mode 100644 index 00000000..eb9aca87 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_asciitilde.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..39384c3f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_asciitilde_greater.liga.glif new file mode 100644 index 00000000..7710bd8d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_asciitilde_greater.liga.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_asterisk.liga.glif new file mode 100644 index 00000000..f855718f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_asterisk_greater.liga.glif new file mode 100644 index 00000000..e3204627 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_asterisk_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_bar.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_bar.liga.glif new file mode 100644 index 00000000..60094316 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_bar.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_bar_bar.liga.glif new file mode 100644 index 00000000..69c4c335 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_bar_bar.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_bar_bar_bar.liga.glif new file mode 100644 index 00000000..7e182fce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_bar_bar_bar.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_bar_greater.liga.glif new file mode 100644 index 00000000..834265ec --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_bar_greater.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_colon.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_colon.liga.glif new file mode 100644 index 00000000..e34deb53 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_dollar.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_dollar.liga.glif new file mode 100644 index 00000000..49fd551e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_dollar.liga.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_dollar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_dollar_greater.liga.glif new file mode 100644 index 00000000..f8dacb71 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_dollar_greater.liga.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_equal.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_equal.glif new file mode 100644 index 00000000..e1bda74f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_equal.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_equal.liga.glif new file mode 100644 index 00000000..6323e765 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_equal.start.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_equal.start.glif new file mode 100644 index 00000000..7eaf1d3c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_equal.start.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_equal_greater.liga.glif new file mode 100644 index 00000000..24f07c40 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_equal_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_equal_less.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_equal_less.liga.glif new file mode 100644 index 00000000..c00e667b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_equal_less.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..01ef75fd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_greater.liga.glif new file mode 100644 index 00000000..21b3e747 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_greater.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen.liga.glif new file mode 100644 index 00000000..3da47fae --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen.start.glif new file mode 100644 index 00000000..af82c1be --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen_greater.liga.glif new file mode 100644 index 00000000..fc5c3b0c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen_greater.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen_less.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen_less.liga.glif new file mode 100644 index 00000000..47b259ae --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_hyphen_less.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_less.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_less.liga.glif new file mode 100644 index 00000000..4bbc8055 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_less.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_less_equal.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_less_equal.liga.glif new file mode 100644 index 00000000..cf72c2b4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_less_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_less_equal.start.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_less_equal.start.glif new file mode 100644 index 00000000..b4cba34f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_less_equal.start.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_less_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_less_hyphen.liga.glif new file mode 100644 index 00000000..a4cca2bd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_less_hyphen.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_less_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_less_hyphen.start.glif new file mode 100644 index 00000000..1c4d065f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_less_hyphen.start.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_less_less.liga.glif new file mode 100644 index 00000000..0bc0122e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_less_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_plus.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_plus.liga.glif new file mode 100644 index 00000000..4faf5922 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_plus.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_plus_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_plus_greater.liga.glif new file mode 100644 index 00000000..3f842213 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_plus_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_slash.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_slash.liga.glif new file mode 100644 index 00000000..ff19c89d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_slash.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_slash_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_slash_greater.liga.glif new file mode 100644 index 00000000..b2b65683 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/less_slash_greater.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/lessequal.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lessequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/lessequal.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lessequal.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightarcdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightarcdnleftbxd.glif new file mode 100644 index 00000000..1d484f20 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightarcdnleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightarcdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightarcdnrightbxd.glif new file mode 100644 index 00000000..05076814 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightarcdnrightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightarcupleftbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightarcupleftbxd.glif new file mode 100644 index 00000000..64031d10 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightarcupleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightarcuprightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightarcuprightbxd.glif new file mode 100644 index 00000000..a092d3cc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightarcuprightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdbldashhorzbxd.glif new file mode 100644 index 00000000..86ccb4a4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdbldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdbldashvertbxd.glif new file mode 100644 index 00000000..f3dd394c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdiagcrossbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdiagcrossbxd.glif new file mode 100644 index 00000000..007ec4b9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdiagcrossbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdiagupleftdnrightbxd.glif new file mode 100644 index 00000000..0ead9344 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdiagupleftdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdiaguprightdnleftbxd.glif new file mode 100644 index 00000000..049cc7f9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdiaguprightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdnbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdnbxd.glif new file mode 100644 index 00000000..d7b1d597 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdnhorzbxd.glif new file mode 100644 index 00000000..75d596a4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdnleftbxd.glif new file mode 100644 index 00000000..cc658d9a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdnrightbxd.glif new file mode 100644 index 00000000..3f4b8435 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lighthorzbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lighthorzbxd.glif new file mode 100644 index 00000000..635fe349 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lighthorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightleftbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightleftbxd.glif new file mode 100644 index 00000000..0298983b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightleftheavyrightbxd.glif new file mode 100644 index 00000000..bf08f76b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightleftheavyrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightquaddashhorzbxd.glif new file mode 100644 index 00000000..dbd95fe1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightquaddashvertbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightquaddashvertbxd.glif new file mode 100644 index 00000000..606ecd0e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightrightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightrightbxd.glif new file mode 100644 index 00000000..939651ae --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightshade.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightshade.glif new file mode 100644 index 00000000..f4d373db --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightshade.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lighttrpldashhorzbxd.glif new file mode 100644 index 00000000..5e548fb2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lighttrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lighttrpldashvertbxd.glif new file mode 100644 index 00000000..2ea00890 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lighttrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightupbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightupbxd.glif new file mode 100644 index 00000000..923bfa74 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightupheavydnbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightupheavydnbxd.glif new file mode 100644 index 00000000..2924c44f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightupheavydnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightuphorzbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightuphorzbxd.glif new file mode 100644 index 00000000..ca9dead9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightupleftbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightupleftbxd.glif new file mode 100644 index 00000000..58579aff --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightuprightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightuprightbxd.glif new file mode 100644 index 00000000..ce034691 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightvertbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightvertbxd.glif new file mode 100644 index 00000000..ec92eb1c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightverthorzbxd.glif new file mode 100644 index 00000000..00c6ac2b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightvertleftbxd.glif new file mode 100644 index 00000000..957b2f48 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightvertrightbxd.glif new file mode 100644 index 00000000..faf59d73 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lightvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ligspacer.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ligspacer.glif new file mode 100644 index 00000000..aaf0214e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ligspacer.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/llinebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/llinebelow.glif new file mode 100644 index 00000000..df538363 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/llinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lmacrondotbelow.glif new file mode 100644 index 00000000..b66b3356 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lmacrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lslash.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..0d113dd7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/lslash.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/m.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/m.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/m.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/m.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/macron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/macron.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/macron.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/macronbelowcmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/macronbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/macronbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/macronbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/macroncmb.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/macroncmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/macroncmb.cap.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/macroncmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/macroncmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/macroncmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/macroncmb.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/macroncmb.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/macronlowmod.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/macronlowmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/macronlowmod.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/macronlowmod.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/macute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/macute.glif new file mode 100644 index 00000000..9f9813ca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/macute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/mdotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/mdotaccent.glif new file mode 100644 index 00000000..c4e7e4a7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/mdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/mdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/mdotbelow.glif new file mode 100644 index 00000000..13d17c03 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/mdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/mediumshade.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/mediumshade.glif new file mode 100644 index 00000000..6a701829 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/mediumshade.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/middotcat.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/middotcat.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/middotcat.cap.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/middotcat.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/middotcat.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/middotcat.glif new file mode 100644 index 00000000..8c179128 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/middotcat.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/minus.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/minus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/minus.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/minus.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/mu.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/mu.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/mu.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/mu.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/multiply.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/multiply.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/multiply.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/multiply.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/n.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/n.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/n.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/n.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/nacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..c980a641 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/nacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/naira.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/naira.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/naira.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/naira.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ncaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..18954b8f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ncaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ncircumflexbelow.glif new file mode 100644 index 00000000..605dbbfb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ncircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ncommaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..bf9954af --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ndotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ndotaccent.glif new file mode 100644 index 00000000..216545c6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ndotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ndotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ndotbelow.glif new file mode 100644 index 00000000..235894c7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ngrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ngrave.glif new file mode 100644 index 00000000..98d9cc98 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/nine.den.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/nine.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/nine.den.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/nine.den.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/nine.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/nine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/nine.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/nine.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/nine.inf.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/nine.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/nine.inf.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/nine.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/nine.num.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/nine.num.glif new file mode 100644 index 00000000..ebb0b622 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/nine.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/nine.sup.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/nine.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/nine.sup.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/nine.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/nlinebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/nlinebelow.glif new file mode 100644 index 00000000..f82a6398 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/nlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/notequal.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/notequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/notequal.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/notequal.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ntilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..fc277d31 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign.end.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign.end.glif new file mode 100644 index 00000000..df4d0591 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign.end.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/numbersign.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/numbersign.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign.middle.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign.middle.glif new file mode 100644 index 00000000..5bb592d6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign.start.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign.start.glif new file mode 100644 index 00000000..6698dc98 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign.start.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_braceleft.liga.glif new file mode 100644 index 00000000..59e48715 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_braceleft.liga.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_bracketleft.liga.glif new file mode 100644 index 00000000..56342ad2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_bracketleft.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_colon.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_colon.liga.glif new file mode 100644 index 00000000..ee221d89 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_colon.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_equal.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_equal.liga.glif new file mode 100644 index 00000000..fcbab4f2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_equal.liga.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_exclam.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_exclam.liga.glif new file mode 100644 index 00000000..a5077402 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_parenleft.liga.glif new file mode 100644 index 00000000..7fcc92f0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_parenleft.liga.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_question.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_question.liga.glif new file mode 100644 index 00000000..1ddf82f2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_underscore.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_underscore.liga.glif new file mode 100644 index 00000000..d01e7679 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_underscore.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_underscore_parenleft.glif new file mode 100644 index 00000000..8026de91 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/numbersign_underscore_parenleft.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/o.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/o.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/o.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/o.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/oacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..873eee04 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/oacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/obreve.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..0176e054 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/obreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocaron.glif new file mode 100644 index 00000000..c8cf75f2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..8dba78e1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexacute.glif new file mode 100644 index 00000000..7844b669 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexdotbelow.glif new file mode 100644 index 00000000..174e80b9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexgrave.glif new file mode 100644 index 00000000..bc062575 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexhookabove.glif new file mode 100644 index 00000000..1899e8e3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocircumflextilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocircumflextilde.glif new file mode 100644 index 00000000..52f69fd9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ocircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/odieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..65cf0b26 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/odieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/odotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/odotaccent.glif new file mode 100644 index 00000000..e8a95ba6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/odotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/odotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/odotbelow.glif new file mode 100644 index 00000000..8d7d0312 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/odotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/oe.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/oe.glif new file mode 100644 index 00000000..05eb1e81 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/oe.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ogonek.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ogonek.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ogonekcmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ogonekcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ogonekcmb.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ogonekcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ograve.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..86a5e398 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ograve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohookabove.glif new file mode 100644 index 00000000..8fd58c32 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohorn.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohorn.glif new file mode 100644 index 00000000..fc7f3b03 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohorn.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohornacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohornacute.glif new file mode 100644 index 00000000..83550583 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohorndotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohorndotbelow.glif new file mode 100644 index 00000000..efc6deab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohorndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohorngrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohorngrave.glif new file mode 100644 index 00000000..a8f3f9ac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohorngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohornhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohornhookabove.glif new file mode 100644 index 00000000..6925ebac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohorntilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohorntilde.glif new file mode 100644 index 00000000..7b0eade5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohorntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohungarumlaut.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..e5ea4e14 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/omacron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..bb2cd884 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/omacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/one.den.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/one.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/one.den.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/one.den.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/one.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/one.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/one.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/one.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/one.inf.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/one.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/one.inf.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/one.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/one.num.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/one.num.glif new file mode 100644 index 00000000..b8fcdd09 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/one.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/one.sup.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/one.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/one.sup.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/one.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/oneeighth.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/oneeighth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/oneeighth.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/oneeighth.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/onefifth.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/onefifth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/onefifth.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/onefifth.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/onehalf.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/onehalf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/onehalf.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/onehalf.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/onequarter.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/onequarter.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/onequarter.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/onequarter.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/onesixth.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/onesixth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/onesixth.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/onesixth.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/onethird.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/onethird.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/onethird.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/onethird.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/oogonek.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/oogonek.glif new file mode 100644 index 00000000..c22bf036 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/oogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ordfeminine.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ordfeminine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ordfeminine.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ordfeminine.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ordmasculine.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ordmasculine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ordmasculine.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ordmasculine.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/oslash.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..a27c548a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/oslash.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/otilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..60d89212 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/otilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/p.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/p.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/p.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/p.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/paragraph.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/paragraph.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/paragraph.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/paragraph.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/parenleft.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/parenleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/parenleft.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/parenleft.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/parenright.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/parenright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/parenright.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/parenright.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/percent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/percent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/percent.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/percent.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/percent_percent.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/percent_percent.liga.glif new file mode 100644 index 00000000..5abf794b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/percent_percent.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/period.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/period.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_equal.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_equal.liga.glif new file mode 100644 index 00000000..dc1d9e02 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_hyphen.liga.glif new file mode 100644 index 00000000..47add456 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_period.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_period.liga.glif new file mode 100644 index 00000000..7040f36f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_period_equal.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_period_equal.liga.glif new file mode 100644 index 00000000..ceadec46 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_period_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_period_less.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_period_less.liga.glif new file mode 100644 index 00000000..10eb7b3d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_period_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_period_period.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_period_period.liga.glif new file mode 100644 index 00000000..0495ed42 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_period_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_question.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_question.liga.glif new file mode 100644 index 00000000..64e98fba --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/period_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/periodcentered.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/periodcentered.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/periodcentered.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/periodcentered.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/peso.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/peso.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/peso.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/peso.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/plus.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/plus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/plus.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/plus.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/plus_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/plus_greater.liga.glif new file mode 100644 index 00000000..be748e20 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/plus_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/plus_plus.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/plus_plus.liga.glif new file mode 100644 index 00000000..8b4e9890 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/plus_plus.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/plus_plus_plus.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/plus_plus_plus.liga.glif new file mode 100644 index 00000000..1b6c983e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/plus_plus_plus.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/plusminus.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/plusminus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/plusminus.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/plusminus.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/primemod.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/primemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/primemod.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/primemod.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/published.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/published.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/published.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/published.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/q.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/q.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/q.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/q.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/question.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/question.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/question.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/question.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/question_colon.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/question_colon.liga.glif new file mode 100644 index 00000000..bc6aa95c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/question_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/question_equal.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/question_equal.liga.glif new file mode 100644 index 00000000..0ba6168b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/question_equal.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/question_period.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/question_period.liga.glif new file mode 100644 index 00000000..a50382ca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/question_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/question_question.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/question_question.liga.glif new file mode 100644 index 00000000..47df2d1f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/question_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/questiondown.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/questiondown.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/questiondown.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/questiondown.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/quotedbl.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/quotedbl.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/quotedbl.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/quotedbl.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/quotedblbase.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/quotedblbase.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/quotedblbase.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/quotedblbase.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/quotedblleft.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/quotedblleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/quotedblleft.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/quotedblleft.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/quotedblright.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/quotedblright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/quotedblright.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/quotedblright.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/quoteleft.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/quoteleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/quoteleft.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/quoteleft.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/quoteright.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/quoteright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/quoteright.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/quoteright.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/quotesinglbase.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/quotesinglbase.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/quotesinglbase.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/quotesinglbase.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/quotesingle.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/quotesingle.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/quotesingle.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/quotesingle.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/r.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/r.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/r.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/r.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/racute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/racute.glif new file mode 100644 index 00000000..38709824 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/racute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rcaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..61f04f10 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rcommaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..fd571ef8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rdotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rdotaccent.glif new file mode 100644 index 00000000..5c29c435 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rdotbelow.glif new file mode 100644 index 00000000..034ac87a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/registered.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/registered.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/registered.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/registered.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightdnheavyleftuplightbxd.glif new file mode 100644 index 00000000..76e5e713 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightdnheavyleftuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/righteighthblock.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/righteighthblock.glif new file mode 100644 index 00000000..ee46a32d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/righteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/righthalfblock.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/righthalfblock.glif new file mode 100644 index 00000000..9f3ba315 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/righthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightheavyleftdnlightbxd.glif new file mode 100644 index 00000000..b094d43b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightheavyleftuplightbxd.glif new file mode 100644 index 00000000..a5cf6c07 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightheavyleftvertlightbxd.glif new file mode 100644 index 00000000..38379bf6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightheavyleftvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightlightleftdnheavybxd.glif new file mode 100644 index 00000000..b6a03102 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightlightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightlightleftupheavybxd.glif new file mode 100644 index 00000000..45fbd28d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightlightleftvertheavybxd.glif new file mode 100644 index 00000000..d9ec934c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightlightleftvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightupheavyleftdnlightbxd.glif new file mode 100644 index 00000000..8d951bff --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rightupheavyleftdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ring.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ring.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ring.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ring.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ringcmb.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ringcmb.cap.glif new file mode 100644 index 00000000..f5cbe617 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ringcmb.cap.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ringcmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ringcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ringcmb.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ringcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ringhalfleft.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ringhalfleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ringhalfleft.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ringhalfleft.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ringhalfright.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ringhalfright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/ringhalfright.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ringhalfright.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rlinebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rlinebelow.glif new file mode 100644 index 00000000..7f51abaa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rmacrondotbelow.glif new file mode 100644 index 00000000..5ee48a9a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/rmacrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/s.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/s.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/s.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/s.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/sacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..d11db18e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/sacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/scaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..ede3a962 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/scaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/scedilla.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..1bd27054 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/scedilla.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/schwa.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/schwa.glif new file mode 100644 index 00000000..b1267658 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/schwa.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/scircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..1b6101a0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/scircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/scommaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..551de10e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/sdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/sdotbelow.glif new file mode 100644 index 00000000..c02002bb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/sdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/section.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/section.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/section.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/section.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/semicolon.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/semicolon.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/semicolon.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/semicolon.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/semicolon_semicolon.liga.glif new file mode 100644 index 00000000..d21923b8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/semicolon_semicolon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/servicemark.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/servicemark.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/servicemark.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/servicemark.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/seven.den.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/seven.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/seven.den.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/seven.den.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/seven.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/seven.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/seven.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/seven.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/seven.inf.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/seven.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/seven.inf.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/seven.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/seven.num.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/seven.num.glif new file mode 100644 index 00000000..f4db09fd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/seven.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/seven.sup.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/seven.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/seven.sup.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/seven.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/seveneighths.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/seveneighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/seveneighths.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/seveneighths.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/six.den.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/six.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/six.den.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/six.den.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/six.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/six.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/six.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/six.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/six.inf.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/six.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/six.inf.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/six.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/six.num.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/six.num.glif new file mode 100644 index 00000000..f366fc60 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/six.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/six.sup.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/six.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/six.sup.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/six.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/slash.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/slash.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_asterisk.liga.glif new file mode 100644 index 00000000..ae23ebb3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_backslash.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_backslash.liga.glif new file mode 100644 index 00000000..56e603c0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_backslash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_equal.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_equal.liga.glif new file mode 100644 index 00000000..5877dc4a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_equal.start.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_equal.start.glif new file mode 100644 index 00000000..219de571 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_greater.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_greater.liga.glif new file mode 100644 index 00000000..1b98818a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_slash.liga.glif new file mode 100644 index 00000000..2bc4a71a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_slash_equal.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_slash_equal.liga.glif new file mode 100644 index 00000000..5e9a5120 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_slash_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_slash_equal.start.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_slash_equal.start.glif new file mode 100644 index 00000000..e3223171 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_slash_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_slash_slash.liga.glif new file mode 100644 index 00000000..3f943989 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/slash_slash_slash.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/space.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/space.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/space.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/space.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/sterling.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/sterling.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/sterling.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/sterling.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/t.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/t.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/t.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/t.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tbar.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..8e4ffbf9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tbar.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tcaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..ffde5176 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tcedilla.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..5fb923f0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tcedilla.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tcircumflexbelow.glif new file mode 100644 index 00000000..8db98ec6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tcommaaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..9f348337 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tdotbelow.glif new file mode 100644 index 00000000..afe6d93e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/thorn.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..709b0cb5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/thorn.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/three.den.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/three.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/three.den.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/three.den.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/three.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/three.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/three.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/three.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/three.inf.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/three.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/three.inf.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/three.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/three.num.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/three.num.glif new file mode 100644 index 00000000..2d2d9aa4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/three.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/three.sup.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/three.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/three.sup.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/three.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/threeeighths.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/threeeighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/threeeighths.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/threeeighths.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/threefifths.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/threefifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/threefifths.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/threefifths.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/threequarters.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/threequarters.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/threequarters.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/threequarters.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tilde.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tildecmb.cap.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tildecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tildecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tildecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tildecmb.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tildecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/tildecmb.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tildecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tlinebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tlinebelow.glif new file mode 100644 index 00000000..30da63b0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/tlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/trademark.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/trademark.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/trademark.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/trademark.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/two.den.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/two.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/two.den.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/two.den.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/two.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/two.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/two.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/two.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/two.inf.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/two.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/two.inf.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/two.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/two.num.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/two.num.glif new file mode 100644 index 00000000..eef8aa1d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/two.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/two.sup.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/two.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/two.sup.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/two.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/twodotleader.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/twodotleader.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/twodotleader.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/twodotleader.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/twofifths.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/twofifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/twofifths.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/twofifths.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/twothirds.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/twothirds.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/twothirds.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/twothirds.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/u.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/u.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/u.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/u.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..0e37b012 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ubreve.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..e1dec90c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ubreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ucaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ucaron.glif new file mode 100644 index 00000000..0b956169 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ucaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ucircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..ba71eb26 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/udieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..d499179f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/udieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/udieresisacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/udieresisacute.glif new file mode 100644 index 00000000..3e46a734 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/udieresisacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/udieresiscaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/udieresiscaron.glif new file mode 100644 index 00000000..1d011190 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/udieresiscaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/udieresisgrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/udieresisgrave.glif new file mode 100644 index 00000000..c5351994 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/udieresisgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/udieresismacron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/udieresismacron.glif new file mode 100644 index 00000000..d5bc08d2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/udieresismacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/udotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/udotbelow.glif new file mode 100644 index 00000000..8f755a6a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/udotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ugrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..b17308df --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ugrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhookabove.glif new file mode 100644 index 00000000..eb82556c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhorn.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhorn.glif new file mode 100644 index 00000000..00e8d54f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhorn.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhornacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhornacute.glif new file mode 100644 index 00000000..7371685e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhorndotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhorndotbelow.glif new file mode 100644 index 00000000..b0363c87 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhorndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhorngrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhorngrave.glif new file mode 100644 index 00000000..52ca6035 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhorngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhornhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhornhookabove.glif new file mode 100644 index 00000000..d4ce78cf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhorntilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhorntilde.glif new file mode 100644 index 00000000..19f346b1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhorntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhungarumlaut.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..ebcf6a2c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/umacron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..09f5fbe7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/umacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/underscore.end.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/underscore.end.glif new file mode 100644 index 00000000..539c8b01 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/underscore.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/underscore.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/underscore.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/underscore.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/underscore.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/underscore.middle.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/underscore.middle.glif new file mode 100644 index 00000000..c39cae9b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/underscore.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/underscore.start.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/underscore.start.glif new file mode 100644 index 00000000..aa70b487 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/underscore.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/underscore_bar_underscore.m.glif new file mode 100644 index 00000000..47f3d659 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/underscore_bar_underscore.m.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uni00A_0.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni00A_0.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uni00A_0.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni00A_0.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uni0326.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni0326.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uni0326.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni0326.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni1E_9E_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni1E_9E_.glif new file mode 100644 index 00000000..0f7131d1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni1E_9E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni2011.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni2011.glif new file mode 100644 index 00000000..33e0d4b6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni2011.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uni20B_9.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni20B_9.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uni20B_9.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni20B_9.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uni20B_A_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni20B_A_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uni20B_A_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni20B_A_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uni20B_D_.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni20B_D_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uni20B_D_.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni20B_D_.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni2610.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni2610.glif new file mode 100644 index 00000000..8a18dc04 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni2610.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni2611.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni2611.glif new file mode 100644 index 00000000..97711eb7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni2611.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni2612.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni2612.glif new file mode 100644 index 00000000..b45e624a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni2612.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni2713.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni2713.glif new file mode 100644 index 00000000..e03bda88 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uni2713.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uniA_788.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniA_788.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/uniA_788.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniA_788.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0A_0.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0A_0.glif new file mode 100644 index 00000000..59838575 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0A_0.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0A_1.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0A_1.glif new file mode 100644 index 00000000..e3dbb41e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0A_1.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0A_2.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0A_2.glif new file mode 100644 index 00000000..db0f09e1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0A_2.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_0.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_0.glif new file mode 100644 index 00000000..88d8ec62 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_0.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_1.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_1.glif new file mode 100644 index 00000000..75a558ed --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_1.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_2.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_2.glif new file mode 100644 index 00000000..cfd80f3a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_2.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_3.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_3.glif new file mode 100644 index 00000000..874c092c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uniE_0B_3.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uogonek.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..b1c77f7e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uogonek.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/updblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/updblhorzsngbxd.glif new file mode 100644 index 00000000..c536b5d1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/updblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/updblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/updblleftsngbxd.glif new file mode 100644 index 00000000..cd50461d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/updblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/updblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/updblrightsngbxd.glif new file mode 100644 index 00000000..caf6bad1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/updblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upeighthblock.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upeighthblock.glif new file mode 100644 index 00000000..edbfe3c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upeighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uphalfblock.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uphalfblock.glif new file mode 100644 index 00000000..f6006f81 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uphalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upheavydnhorzlightbxd.glif new file mode 100644 index 00000000..a7b1d4bf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upheavydnhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upheavyhorzlightbxd.glif new file mode 100644 index 00000000..eb4dd81b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upheavyleftdnlightbxd.glif new file mode 100644 index 00000000..9cbf59b0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upheavyleftlightbxd.glif new file mode 100644 index 00000000..7ed4ced9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upheavyrightdnlightbxd.glif new file mode 100644 index 00000000..8452dad4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upheavyrightlightbxd.glif new file mode 100644 index 00000000..a5bf10f5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upleftdnleftdnrightquadrant.glif new file mode 100644 index 00000000..e0bdb776 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upleftdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upleftdnrightquadrant.glif new file mode 100644 index 00000000..6ca0f95d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upleftdnrightquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upleftquadrant.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upleftquadrant.glif new file mode 100644 index 00000000..9ab84ae1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upleftuprightdnleftquadrant.glif new file mode 100644 index 00000000..68671562 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upleftuprightdnleftquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upleftuprightdnrightquadrant.glif new file mode 100644 index 00000000..a20ceb2d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upleftuprightdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uplightdnhorzheavybxd.glif new file mode 100644 index 00000000..647b2b2d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uplightdnhorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uplighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uplighthorzheavybxd.glif new file mode 100644 index 00000000..6d690bbf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uplighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uplightleftdnheavybxd.glif new file mode 100644 index 00000000..f815bfcd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uplightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uplightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uplightleftheavybxd.glif new file mode 100644 index 00000000..8e2b67ad --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uplightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uplightrightdnheavybxd.glif new file mode 100644 index 00000000..24fe5f8a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uplightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uplightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uplightrightheavybxd.glif new file mode 100644 index 00000000..5ced40e5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uplightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uprightdnleftdnrightquadrant.glif new file mode 100644 index 00000000..4211b39d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uprightdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uprightdnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uprightdnleftquadrant.glif new file mode 100644 index 00000000..aea6004b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uprightdnleftquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uprightquadrant.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uprightquadrant.glif new file mode 100644 index 00000000..245dc1dd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uprightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upsnghorzdblbxd.glif new file mode 100644 index 00000000..587bfa20 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upsngleftdblbxd.glif new file mode 100644 index 00000000..d6216ce7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upsngrightdblbxd.glif new file mode 100644 index 00000000..c9113237 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/upsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uring.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uring.glif new file mode 100644 index 00000000..1034d7bb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/uring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/utilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..140e7bbc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/utilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/v.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/v.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/v.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/v.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vdotbelow.glif new file mode 100644 index 00000000..f2769ffe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertdblhorzsngbxd.glif new file mode 100644 index 00000000..7747c1b8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertdblhorzsngbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertdblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertdblleftsngbxd.glif new file mode 100644 index 00000000..e40bec15 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertdblleftsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertdblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertdblrightsngbxd.glif new file mode 100644 index 00000000..6d405c18 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertdblrightsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertheavyhorzlightbxd.glif new file mode 100644 index 00000000..975d75b0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertheavyhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertheavyleftlightbxd.glif new file mode 100644 index 00000000..fb1396ce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertheavyleftlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertheavyrightlightbxd.glif new file mode 100644 index 00000000..838b9c9a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertheavyrightlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/verticallinelowmod.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/verticallinelowmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/verticallinelowmod.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/verticallinelowmod.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/verticallinemod.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/verticallinemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/verticallinemod.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/verticallinemod.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertlighthorzheavybxd.glif new file mode 100644 index 00000000..cd66d18c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertlighthorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertlightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertlightleftheavybxd.glif new file mode 100644 index 00000000..97b1edd0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertlightleftheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertlightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertlightrightheavybxd.glif new file mode 100644 index 00000000..209ee774 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertlightrightheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertsnghorzdblbxd.glif new file mode 100644 index 00000000..7426d105 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertsnghorzdblbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertsngleftdblbxd.glif new file mode 100644 index 00000000..088799e5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertsngleftdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertsngrightdblbxd.glif new file mode 100644 index 00000000..5f3058a7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/vertsngrightdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/w.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/w.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/w.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/w.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/w_w_w.liga.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/w_w_w.liga.glif new file mode 100644 index 00000000..409d4e94 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/w_w_w.liga.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/wacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..5f02e217 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/wacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/wcircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..68278e09 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/wdieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..e5a7477d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/wdieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/wgrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..0313667d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/wgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/won.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/won.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/won.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/won.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/x.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/x.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/x.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/x.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/xdieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/xdieresis.glif new file mode 100644 index 00000000..9b14e060 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/xdieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/y.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/y.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/y.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/y.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/yacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..70c13aca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/yacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ycircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..5a649977 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ydieresis.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..3cdb111e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ydieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ydotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ydotaccent.glif new file mode 100644 index 00000000..35120e1b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ydotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ydotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ydotbelow.glif new file mode 100644 index 00000000..c313694d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ydotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/yen.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/yen.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/yen.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/yen.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ygrave.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ygrave.glif new file mode 100644 index 00000000..10fc8888 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ygrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/yhookabove.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/yhookabove.glif new file mode 100644 index 00000000..0fbc6c74 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/yhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ymacron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ymacron.glif new file mode 100644 index 00000000..5b10eabd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ymacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ytilde.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ytilde.glif new file mode 100644 index 00000000..d17e2a5c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/ytilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/z.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/z.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/z.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/z.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zacute.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..0a73c1ba --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zcaron.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..ae2f1adb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zcircumflex.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zcircumflex.glif new file mode 100644 index 00000000..cfa0760e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zdotaccent.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..1054a643 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zdotbelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zdotbelow.glif new file mode 100644 index 00000000..cfda91c7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zero.den.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zero.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zero.den.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zero.den.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zero.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zero.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zero.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zero.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zero.inf.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zero.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zero.inf.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zero.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zero.num.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zero.num.glif new file mode 100644 index 00000000..e1ec4bd5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zero.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zero.sup.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zero.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/glyphs/zero.sup.glif rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zero.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zlinebelow.glif b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zlinebelow.glif new file mode 100644 index 00000000..ecdf86c8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/glyphs/zlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/layercontents.plist b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/layercontents.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/layercontents.plist rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/layercontents.plist diff --git a/sources/instances/truetype/IntelOneMono-LightItalic.ufo/lib.plist b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/lib.plist new file mode 100644 index 00000000..8f3f5d29 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/lib.plist @@ -0,0 +1,1647 @@ + + + + + com.typemytype.robofont.compileSettings.autohint + + com.typemytype.robofont.compileSettings.checkOutlines + + com.typemytype.robofont.compileSettings.createDummyDSIG + + com.typemytype.robofont.compileSettings.decompose + + com.typemytype.robofont.compileSettings.generateFormat + 1 + com.typemytype.robofont.compileSettings.releaseMode + 1 + com.typemytype.robofont.italicSlantOffset + 0 + com.typemytype.robofont.segmentType + curve + com.typemytype.robofont.shouldAddPointsInSplineConversion + 1 + public.glyphOrder + + .notdef + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + S + T + U + V + W + X + Y + Z + a + b + c + d + e + f + g + h + i + j + k + l + m + n + o + p + q + r + s + t + u + v + w + x + y + z + period + comma + colon + semicolon + question + exclam + questiondown + exclamdown + ellipsis + twodotleader + quotedblleft + quotedblright + quotedblbase + quoteleft + quoteright + quotesinglbase + guillemetleft + guillemetright + guilsinglleft + guilsinglright + parenleft + parenright + bracketleft + bracketright + braceleft + braceright + slash + backslash + bar + hyphen + endash + emdash + periodcentered + bullet + underscore + ampersand + at + published + copyright + registered + servicemark + trademark + asterisk + dagger + daggerdbl + section + paragraph + zero + one + two + three + four + five + six + seven + eight + nine + colon.fig + plus + divide + minus + equal + notequal + asciitilde + approxequal + multiply + less + greater + lessequal + greaterequal + plusminus + asciicircum + mu + numbersign + percent + quotedbl + quotesingle + ordfeminine + ordmasculine + degree + dollar + sterling + yen + Euro + naira + peso + uni20BA + uni20BD + uni20B9 + bahtthai + won + cent + dong + onehalf + onethird + twothirds + onequarter + threequarters + onefifth + twofifths + threefifths + fourfifths + onesixth + fivesixths + oneeighth + threeeighths + fiveeighths + seveneighths + zero.sup + one.sup + two.sup + three.sup + four.sup + five.sup + six.sup + seven.sup + eight.sup + nine.sup + zero.inf + one.inf + two.inf + three.inf + four.inf + five.inf + six.inf + seven.inf + eight.inf + nine.inf + primemod + dblprimemod + commaturnedmod + apostrophemod + ringhalfleft + ringhalfright + verticallinemod + verticallinelowmod + acute + hungarumlaut + grave + circumflex + caron + breve + tilde + macron + dieresis + dotaccent + ring + uniA788 + macronlowmod + cedilla + ogonek + Aacute + Agrave + Acircumflex + Acircumflexdotbelow + Acircumflexacute + Acircumflexgrave + Acircumflexhookabove + Acircumflextilde + Acaron + Abreve + Abrevedotbelow + Abreveacute + Abrevegrave + Abrevehookabove + Abrevetilde + Atilde + Amacron + Adieresis + Adotaccent + Aring + Ahookabove + Adotbelow + Aogonek + AE + Blinebelow + Cacute + Ccircumflex + Ccaron + Cdotaccent + Ccedilla + Dcaron + Dcircumflexbelow + Dlinebelow + Ddotbelow + Dcroat + Eacute + Egrave + Ecircumflex + Ecircumflexdotbelow + Ecircumflexacute + Ecircumflexgrave + Ecircumflexhookabove + Ecircumflextilde + Ecaron + Ebreve + Etilde + Emacron + Edieresis + Edotaccent + Ehookabove + Edotbelow + Eogonek + Gcircumflex + Gcaron + Gbreve + Gmacron + Gdotaccent + Gcommaaccent + Hcircumflex + Hbrevebelow + Hdotbelow + Hcedilla + Hbar + Iacute + Igrave + Icircumflex + Icaron + Ibreve + Itilde + Imacron + Idieresis + Idotaccent + Ihookabove + Idotbelow + Iogonek + Jcircumflex + Klinebelow + Kcommaaccent + Kdotbelow + Lacute + Lcaron + Lcommaaccent + Lcircumflexbelow + Llinebelow + Lmacrondotbelow + Ldotbelow + L.dot + Lslash + Macute + Mdotaccent + Mdotbelow + Nacute + Ngrave + Ncaron + Ntilde + Ndotaccent + Ncircumflexbelow + Ncommaaccent + Ndotbelow + Nlinebelow + Eng + Oacute + Ohungarumlaut + Ograve + Ocircumflex + Ocircumflexdotbelow + Ocircumflexacute + Ocircumflexgrave + Ocircumflexhookabove + Ocircumflextilde + Ocaron + Obreve + Otilde + Omacron + Odieresis + Odotaccent + Ohookabove + Odotbelow + Oogonek + Oslash + OE + Ohorn + Ohornacute + Ohorngrave + Ohorntilde + Ohornhookabove + Ohorndotbelow + Racute + Rcaron + Rdotaccent + Rmacrondotbelow + Rcommaaccent + Rdotbelow + Rlinebelow + Sacute + Scircumflex + Scaron + Scommaaccent + Sdotbelow + Scedilla + uni1E9E + Tcaron + Tcircumflexbelow + Tcommaaccent + Tdotbelow + Tlinebelow + Tcedilla + Tbar + Uacute + Uhungarumlaut + Ugrave + Ucircumflex + Ucaron + Ubreve + Utilde + Umacron + Udieresis + Udieresisacute + Udieresisgrave + Udieresiscaron + Udieresismacron + Uring + Uhookabove + Udotbelow + Uogonek + Uhorn + Uhornacute + Uhorngrave + Uhorntilde + Uhornhookabove + Uhorndotbelow + Vdotbelow + Wacute + Wgrave + Wcircumflex + Wdieresis + Xdieresis + Yacute + Ygrave + Ycircumflex + Ytilde + Ymacron + Ydieresis + Ydotaccent + Yhookabove + Ydotbelow + Zacute + Zcircumflex + Zcaron + Zdotaccent + Zdotbelow + Zlinebelow + Eth + Thorn + Schwa + aacute + agrave + acircumflex + acircumflexdotbelow + acircumflexacute + acircumflexgrave + acircumflexhookabove + acircumflextilde + acaron + abreve + abrevedotbelow + abreveacute + abrevegrave + abrevehookabove + abrevetilde + atilde + amacron + adieresis + adotaccent + aring + ahookabove + adotbelow + aogonek + ae + blinebelow + cacute + ccircumflex + ccaron + cdotaccent + ccedilla + dcaron + dcircumflexbelow + dlinebelow + ddotbelow + dcroat + eacute + egrave + ecircumflex + ecircumflexdotbelow + ecircumflexacute + ecircumflexgrave + ecircumflexhookabove + ecircumflextilde + ecaron + ebreve + etilde + emacron + edieresis + edotaccent + ehookabove + edotbelow + eogonek + gcircumflex + gcaron + gbreve + gmacron + gdotaccent + gcommaaccent + hcircumflex + hbrevebelow + hlinebelow + hdotbelow + hcedilla + hbar + dotlessi + iacute + igrave + icircumflex + icaron + ibreve + itilde + imacron + idieresis + idotaccent + ihookabove + idotbelow + iogonek + dotlessj + jcircumflex + jcaron + klinebelow + kcommaaccent + kdotbelow + lacute + lcaron + lcommaaccent + lcircumflexbelow + llinebelow + lmacrondotbelow + ldotbelow + l.dot + lslash + macute + mdotaccent + mdotbelow + nacute + ngrave + ncaron + ntilde + ndotaccent + ncircumflexbelow + ncommaaccent + ndotbelow + nlinebelow + eng + oacute + ohungarumlaut + ograve + ocircumflex + ocircumflexdotbelow + ocircumflexacute + ocircumflexgrave + ocircumflexhookabove + ocircumflextilde + ocaron + obreve + otilde + omacron + odieresis + odotaccent + ohookabove + odotbelow + oogonek + oslash + oe + ohorn + ohornacute + ohorngrave + ohorntilde + ohornhookabove + ohorndotbelow + racute + rcaron + rdotaccent + rmacrondotbelow + rcommaaccent + rdotbelow + rlinebelow + sacute + scircumflex + scaron + scommaaccent + sdotbelow + scedilla + germandbls + tcaron + tcircumflexbelow + tcommaaccent + tdotbelow + tlinebelow + tcedilla + tbar + uacute + uhungarumlaut + ugrave + ucircumflex + ucaron + ubreve + utilde + umacron + udieresis + udieresisacute + udieresisgrave + udieresiscaron + udieresismacron + uring + uhookabove + udotbelow + uogonek + uhorn + uhornacute + uhorngrave + uhorntilde + uhornhookabove + uhorndotbelow + vdotbelow + wacute + wgrave + wcircumflex + wdieresis + xdieresis + yacute + ygrave + ycircumflex + ytilde + ymacron + ydieresis + ydotaccent + yhookabove + ydotbelow + zacute + zcircumflex + zcaron + zdotaccent + zdotbelow + zlinebelow + eth + thorn + schwa + space + uni00A0 + zero.num + one.num + two.num + three.num + four.num + five.num + six.num + seven.num + eight.num + nine.num + fraction + fracbar + zero.den + one.den + two.den + three.den + four.den + five.den + six.den + seven.den + eight.den + nine.den + uni2011 + horizontalbar + middotcat + middotcat.cap + acutecmb + hungarumlautcmb + gravecmb + commaaboverightcmb + circumflexcmb + caroncmb + brevecmb + tildecmb + macroncmb + dieresiscmb + dotaccentcmb + ringcmb + commaturnedabovecmb + hookcmb + circumflexbelowcmb + brevebelowcmb + macronbelowcmb + dieresisbelowcmb + dotbelowcmb + uni0326 + cedillacmb + ogonekcmb + dieresisacute + dieresisgrave + dieresiscaron + dieresismacron + breveacute + brevegrave + brevehook + brevetilde + circumflexacute + circumflexgrave + circumflexhook + circumflextilde + acutecmb.cap + hungarumlautcmb.cap + gravecmb.cap + circumflexcmb.cap + caroncmb.cap + brevecmb.cap + tildecmb.cap + macroncmb.cap + dieresiscmb.cap + dotaccentcmb.cap + ringcmb.cap + hookcmb.cap + dieresisacute.cap + dieresisgrave.cap + dieresiscaron.cap + dieresismacron.cap + breveacute.cap + brevegrave.cap + brevehook.cap + brevetilde.cap + circumflexacute.cap + circumflexgrave.cap + circumflexhook.cap + circumflextilde.cap + lighthorzbxd + heavyhorzbxd + lightvertbxd + heavyvertbxd + lighttrpldashhorzbxd + heavytrpldashhorzbxd + lighttrpldashvertbxd + heavytrpldashvertbxd + lightquaddashhorzbxd + heavyquaddashhorzbxd + lightquaddashvertbxd + heavyquaddashvertbxd + lightdnrightbxd + dnlightrightheavybxd + dnheavyrightlightbxd + heavydnrightbxd + lightdnleftbxd + dnlightleftheavybxd + dnheavyleftlightbxd + heavydnleftbxd + lightuprightbxd + uplightrightheavybxd + upheavyrightlightbxd + heavyuprightbxd + lightupleftbxd + uplightleftheavybxd + upheavyleftlightbxd + heavyupleftbxd + lightvertrightbxd + vertlightrightheavybxd + upheavyrightdnlightbxd + dnheavyrightuplightbxd + vertheavyrightlightbxd + dnlightrightupheavybxd + uplightrightdnheavybxd + heavyvertrightbxd + lightvertleftbxd + vertlightleftheavybxd + upheavyleftdnlightbxd + dnheavyleftuplightbxd + vertheavyleftlightbxd + dnlightleftupheavybxd + uplightleftdnheavybxd + heavyvertleftbxd + lightdnhorzbxd + leftheavyrightdnlightbxd + rightheavyleftdnlightbxd + dnlighthorzheavybxd + dnheavyhorzlightbxd + rightlightleftdnheavybxd + leftlightrightdnheavybxd + heavydnhorzbxd + lightuphorzbxd + leftheavyrightuplightbxd + rightheavyleftuplightbxd + uplighthorzheavybxd + upheavyhorzlightbxd + rightlightleftupheavybxd + leftlightrightupheavybxd + heavyuphorzbxd + lightverthorzbxd + leftheavyrightvertlightbxd + rightheavyleftvertlightbxd + vertlighthorzheavybxd + upheavydnhorzlightbxd + dnheavyuphorzlightbxd + vertheavyhorzlightbxd + leftupheavyrightdnlightbxd + rightupheavyleftdnlightbxd + leftdnheavyrightuplightbxd + rightdnheavyleftuplightbxd + dnlightuphorzheavybxd + uplightdnhorzheavybxd + rightlightleftvertheavybxd + leftlightrightvertheavybxd + heavyverthorzbxd + lightdbldashhorzbxd + heavydbldashhorzbxd + lightdbldashvertbxd + heavydbldashvertbxd + dblhorzbxd + dblvertbxd + dnsngrightdblbxd + dndblrightsngbxd + dbldnrightbxd + dnsngleftdblbxd + dndblleftsngbxd + dbldnleftbxd + upsngrightdblbxd + updblrightsngbxd + dbluprightbxd + upsngleftdblbxd + updblleftsngbxd + dblupleftbxd + vertsngrightdblbxd + vertdblrightsngbxd + dblvertrightbxd + vertsngleftdblbxd + vertdblleftsngbxd + dblvertleftbxd + dnsnghorzdblbxd + dndblhorzsngbxd + dbldnhorzbxd + upsnghorzdblbxd + updblhorzsngbxd + dbluphorzbxd + vertsnghorzdblbxd + vertdblhorzsngbxd + dblverthorzbxd + lightarcdnrightbxd + lightarcdnleftbxd + lightarcupleftbxd + lightarcuprightbxd + lightdiaguprightdnleftbxd + lightdiagupleftdnrightbxd + lightdiagcrossbxd + lightleftbxd + lightupbxd + lightrightbxd + lightdnbxd + heavyleftbxd + heavyupbxd + heavyrightbxd + heavydnbxd + lightleftheavyrightbxd + lightupheavydnbxd + heavyleftlightrightbxd + heavyuplightdnbxd + uphalfblock + dneighthblock + dnquarterblock + dnthreeeighthsblock + dnhalfblock + dnfiveeighthsblock + dnthreequartersblock + dnseveneighthsblock + fullblock + leftseveneighthsblock + leftthreequartersblock + leftfiveeighthsblock + lefthalfblock + leftthreeeighthsblock + leftquarterblock + lefteighthblock + righthalfblock + lightshade + mediumshade + darkshade + upeighthblock + righteighthblock + dnleftquadrant + dnrightquadrant + upleftquadrant + upleftdnleftdnrightquadrant + upleftdnrightquadrant + upleftuprightdnleftquadrant + upleftuprightdnrightquadrant + uprightquadrant + uprightdnleftquadrant + uprightdnleftdnrightquadrant + ligspacer + equal.start + equal.middle + equal.end + hyphen.start + hyphen.middle + hyphen.end + underscore.start + underscore.middle + underscore.end + numbersign.start + numbersign.middle + numbersign.end + period_equal.liga + period_period_equal.liga + period_hyphen.liga + colon_equal.liga + equal_equal.liga + exclam_equal.liga + equal_equal_equal.liga + exclam_equal_equal.liga + less_hyphen_less.liga + less_less_hyphen.liga + less_hyphen.liga + less_hyphen_greater.liga + hyphen_greater.liga + hyphen_greater_greater.liga + greater_hyphen_greater.liga + less_equal_less.liga + less_less_equal.liga + less_equal_greater.liga + equal_greater.liga + less_equal.liga + equal_greater_greater.liga + greater_equal_greater.liga + greater_equal.liga + greater_greater_equal.liga + greater_greater_hyphen.liga + greater_hyphen.liga + less_asciitilde_greater.liga + hyphen_less.liga + hyphen_less_less.liga + equal_less.liga + equal_less_less.liga + less_asciitilde_asciitilde.liga + less_asciitilde.liga + asciitilde_asciitilde.liga + asciitilde_greater.liga + asciitilde_asciitilde_greater + less_exclam_hyphen_hyphen.liga + slash_equal.liga + hyphen_bar.liga + bar_hyphen.liga + bar_equal.liga + hyphen_bar_bar.liga + bar_bar_hyphen.liga + equal_bar_bar.liga + bar_bar_equal.liga + equal_bar.liga + slash_slash_equal.liga + equal_slash.liga + equal_slash_slash.liga + equal_colon_equal.middle + equal_exclam_equal.middle + underscore_bar_underscore.m + hyphen_bar_hyphen.middle + equal_bar_equal.middle + hyphen_greater_hyphen.middle + hyphen_greater_greater_hyphen.m + equal_slash_slash_equal.middle + equal_slash_equal.middle + hyphen_bar_bar_hyphen.middle + equal_bar_bar_equal.middle + hyphen_less_hyphen.middle + hyphen_less_less_hyphen.middle + equal_greater_equal.middle + equal_less_equal.middle + equal_greater_greater_equal.m + equal_less_less_equal.middle + less_hyphen.start + greater_hyphen.start + bar_hyphen.start + less_equal.start + greater_equal.start + bar_equal.start + slash_equal.start + slash_slash_equal.start + less_less_hyphen.start + greater_greater_hyphen.start + bar_bar_hyphen.start + less_less_equal.start + greater_greater_equal.start + bar_bar_equal.start + hyphen_less.end + hyphen_greater.end + hyphen_bar.end + equal_less.end + equal_greater.end + equal_bar.end + hyphen_less_less.end + hyphen_greater_greater.end + hyphen_bar_bar.end + equal_less_less.end + equal_greater_greater.end + equal_bar_bar.end + equal_slash.end + equal_slash_slash.end + less_less_less.liga + less_less.liga + less_equal + less_greater.liga + greater_equal + greater_greater.liga + greater_greater_greater.liga + braceleft_bar.liga + bracketleft_bar.liga + less_colon.liga + colon_less.liga + greater_colon.liga + colon_greater.liga + bar_braceright.liga + bar_bracketright.liga + less_bar_bar_bar.liga + less_bar_bar.liga + less_bar.liga + less_bar_greater.liga + bar_greater.liga + bar_bar_greater.liga + bar_bar_bar_greater.liga + less_dollar.liga + less_dollar_greater.liga + dollar_greater.liga + less_plus.liga + less_plus_greater.liga + plus_greater.liga + less_asterisk.liga + less_asterisk_greater.liga + asterisk_greater.liga + slash_asterisk.liga + asterisk_slash.liga + slash_slash_slash.liga + slash_slash.liga + less_slash.liga + less_slash_greater.liga + slash_greater.liga + semicolon_semicolon.liga + colon_colon.liga + colon_colon_colon.liga + period_period.liga + period_period_period.liga + period_period_less.liga + exclam_exclam.liga + question_question.liga + percent_percent.liga + ampersand_ampersand.liga + bar_bar.liga + question_period.liga + question_colon.liga + plus_plus.liga + plus_plus_plus.liga + hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga + asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga + equal_asciitilde.liga + exclam_asciitilde.liga + asciitilde_hyphen.liga + w_w_w.liga + hyphen_asciitilde.liga + asciitilde_at.liga + asciicircum_equal.liga + question_equal.liga + numbersign_exclam.liga + numbersign_equal.liga + numbersign_colon.liga + numbersign_braceleft.liga + numbersign_bracketleft.liga + bracketright_numbersign.liga + numbersign_parenleft.liga + numbersign_question.liga + numbersign_underscore.liga + numbersign_underscore_parenleft + backslash_slash.liga + bar_bar_bar.liga + colon_colon_equal.liga + exclam_exclam_period.liga + period_question.liga + slash_backslash.liga + uniE0A0 + uniE0A1 + uniE0A2 + uniE0B0 + uniE0B1 + uniE0B2 + uniE0B3 + uni2610 + uni2611 + uni2612 + uni2713 + + public.postscriptNames + + Abreveacute + uni1EAE + Abrevedotbelow + uni1EB6 + Abrevegrave + uni1EB0 + Abrevehookabove + uni1EB2 + Abrevetilde + uni1EB4 + Acaron + uni01CD + Acircumflexacute + uni1EA4 + Acircumflexdotbelow + uni1EAC + Acircumflexgrave + uni1EA6 + Acircumflexhookabove + uni1EA8 + Acircumflextilde + uni1EAA + Adotaccent + uni0226 + Adotbelow + uni1EA0 + Ahookabove + uni1EA2 + Blinebelow + uni1E06 + Dcircumflexbelow + uni1E12 + Ddotbelow + uni1E0C + Dlinebelow + uni1E0E + Ecircumflexacute + uni1EBE + Ecircumflexdotbelow + uni1EC6 + Ecircumflexgrave + uni1EC0 + Ecircumflexhookabove + uni1EC2 + Ecircumflextilde + uni1EC4 + Edotbelow + uni1EB8 + Ehookabove + uni1EBA + Etilde + uni1EBC + Gcommaaccent + uni0122 + Gmacron + uni1E20 + Hbrevebelow + uni1E2A + Hcedilla + uni1E28 + Hdotbelow + uni1E24 + Icaron + uni01CF + Idotbelow + uni1ECA + Ihookabove + uni1EC8 + Kcommaaccent + uni0136 + Kdotbelow + uni1E32 + Klinebelow + uni1E34 + L.dot + Ldot + Lcircumflexbelow + uni1E3C + Lcommaaccent + uni013B + Ldotbelow + uni1E36 + Llinebelow + uni1E3A + Lmacrondotbelow + uni1E38 + Macute + uni1E3E + Mdotaccent + uni1E40 + Mdotbelow + uni1E42 + Ncircumflexbelow + uni1E4A + Ncommaaccent + uni0145 + Ndotaccent + uni1E44 + Ndotbelow + uni1E46 + Ngrave + uni01F8 + Nlinebelow + uni1E48 + Ocaron + uni01D1 + Ocircumflexacute + uni1ED0 + Ocircumflexdotbelow + uni1ED8 + Ocircumflexgrave + uni1ED2 + Ocircumflexhookabove + uni1ED4 + Ocircumflextilde + uni1ED6 + Odotaccent + uni022E + Odotbelow + uni1ECC + Ohookabove + uni1ECE + Ohornacute + uni1EDA + Ohorndotbelow + uni1EE2 + Ohorngrave + uni1EDC + Ohornhookabove + uni1EDE + Ohorntilde + uni1EE0 + Oogonek + uni01EA + Rcommaaccent + uni0156 + Rdotaccent + uni1E58 + Rdotbelow + uni1E5A + Rlinebelow + uni1E5E + Rmacrondotbelow + uni1E5C + Scedilla + uni015E + Schwa + uni018F + Scommaaccent + uni0218 + Sdotbelow + uni1E62 + Tcedilla + uni0162 + Tcircumflexbelow + uni1E70 + Tcommaaccent + uni021A + Tdotbelow + uni1E6C + Tlinebelow + uni1E6E + Ucaron + uni01D3 + Udieresisacute + uni01D7 + Udieresiscaron + uni01D9 + Udieresisgrave + uni01DB + Udieresismacron + uni01D5 + Udotbelow + uni1EE4 + Uhookabove + uni1EE6 + Uhornacute + uni1EE8 + Uhorndotbelow + uni1EF0 + Uhorngrave + uni1EEA + Uhornhookabove + uni1EEC + Uhorntilde + uni1EEE + Vdotbelow + uni1E7E + Xdieresis + uni1E8C + Ydotaccent + uni1E8E + Ydotbelow + uni1EF4 + Yhookabove + uni1EF6 + Ymacron + uni0232 + Ytilde + uni1EF8 + Zcircumflex + uni1E90 + Zdotbelow + uni1E92 + Zlinebelow + uni1E94 + abreveacute + uni1EAF + abrevedotbelow + uni1EB7 + abrevegrave + uni1EB1 + abrevehookabove + uni1EB3 + abrevetilde + uni1EB5 + acaron + uni01CE + acircumflexacute + uni1EA5 + acircumflexdotbelow + uni1EAD + acircumflexgrave + uni1EA7 + acircumflexhookabove + uni1EA9 + acircumflextilde + uni1EAB + acutecmb + uni0301 + acutecmb.cap + uni0301.cap + adotaccent + uni0227 + adotbelow + uni1EA1 + ahookabove + uni1EA3 + apostrophemod + uni02BC + bahtthai + uni0E3F + blinebelow + uni1E07 + breveacute + uni02D80301 + breveacute.cap + uni02D80301.cap + brevebelowcmb + uni032E + brevecmb + uni0306 + brevecmb.cap + uni0306.cap + brevegrave + uni02D80300 + brevegrave.cap + uni02D80300.cap + brevehook + uni02D80309 + brevehook.cap + uni02D80309.cap + brevetilde + uni02D80303 + brevetilde.cap + uni02D80303.cap + caroncmb + uni030C + caroncmb.cap + uni030C.cap + cedillacmb + uni0327 + circumflexacute + uni02C60301 + circumflexacute.cap + uni02C60301.cap + circumflexbelowcmb + uni032D + circumflexcmb + uni0302 + circumflexcmb.cap + uni0302.cap + circumflexgrave + uni02C60300 + circumflexgrave.cap + uni02C60300.cap + circumflexhook + uni02C60309 + circumflexhook.cap + uni02C60309.cap + circumflextilde + uni02C60303 + circumflextilde.cap + uni02C60303.cap + commaaboverightcmb + uni0315 + commaturnedabovecmb + uni0312 + commaturnedmod + uni02BB + dblprimemod + uni02BA + dcircumflexbelow + uni1E13 + ddotbelow + uni1E0D + dieresisacute + uni00A80301 + dieresisacute.cap + uni00A80301.cap + dieresisbelowcmb + uni0324 + dieresiscaron + uni00A8030C + dieresiscaron.cap + uni00A8030C.cap + dieresiscmb + uni0308 + dieresiscmb.cap + uni0308.cap + dieresisgrave + uni00A80300 + dieresisgrave.cap + uni00A80300.cap + dieresismacron + uni00A80304 + dieresismacron.cap + uni00A80304.cap + dlinebelow + uni1E0F + dotaccentcmb + uni0307 + dotaccentcmb.cap + uni0307.cap + dotbelowcmb + uni0323 + dotlessj + uni0237 + ecircumflexacute + uni1EBF + ecircumflexdotbelow + uni1EC7 + ecircumflexgrave + uni1EC1 + ecircumflexhookabove + uni1EC3 + ecircumflextilde + uni1EC5 + edotbelow + uni1EB9 + ehookabove + uni1EBB + etilde + uni1EBD + gcommaaccent + uni0123 + gmacron + uni1E21 + gravecmb + uni0300 + gravecmb.cap + uni0300.cap + guillemetleft + uni00AB + guillemetright + uni00BB + hbrevebelow + uni1E2B + hcedilla + uni1E29 + hdotbelow + uni1E25 + hlinebelow + uni1E96 + hookcmb + uni0309 + hookcmb.cap + uni0309.cap + horizontalbar + uni2015 + hungarumlautcmb + uni030B + hungarumlautcmb.cap + uni030B.cap + icaron + uni01D0 + idotaccent + i.dot + idotbelow + uni1ECB + ihookabove + uni1EC9 + jcaron + uni01F0 + kcommaaccent + uni0137 + kdotbelow + uni1E33 + klinebelow + uni1E35 + l.dot + ldot + lcircumflexbelow + uni1E3D + lcommaaccent + uni013C + ldotbelow + uni1E37 + llinebelow + uni1E3B + lmacrondotbelow + uni1E39 + macronbelowcmb + uni0331 + macroncmb + uni0304 + macroncmb.cap + uni0304.cap + macronlowmod + uni02CD + macute + uni1E3F + mdotaccent + uni1E41 + mdotbelow + uni1E43 + naira + uni20A6 + ncircumflexbelow + uni1E4B + ncommaaccent + uni0146 + ndotaccent + uni1E45 + ndotbelow + uni1E47 + ngrave + uni01F9 + nlinebelow + uni1E49 + ocaron + uni01D2 + ocircumflexacute + uni1ED1 + ocircumflexdotbelow + uni1ED9 + ocircumflexgrave + uni1ED3 + ocircumflexhookabove + uni1ED5 + ocircumflextilde + uni1ED7 + odotaccent + uni022F + odotbelow + uni1ECD + ogonekcmb + uni0328 + ohookabove + uni1ECF + ohornacute + uni1EDB + ohorndotbelow + uni1EE3 + ohorngrave + uni1EDD + ohornhookabove + uni1EDF + ohorntilde + uni1EE1 + oogonek + uni01EB + peso + uni20B1 + primemod + uni02B9 + published + uni2117 + rcommaaccent + uni0157 + rdotaccent + uni1E59 + rdotbelow + uni1E5B + ringcmb + uni030A + ringcmb.cap + uni030A.cap + ringhalfleft + uni02BF + ringhalfright + uni02BE + rlinebelow + uni1E5F + rmacrondotbelow + uni1E5D + scedilla + uni015F + schwa + uni0259 + scommaaccent + uni0219 + sdotbelow + uni1E63 + servicemark + uni2120 + tcedilla + uni0163 + tcircumflexbelow + uni1E71 + tcommaaccent + uni021B + tdotbelow + uni1E6D + tildecmb + uni0303 + tildecmb.cap + uni0303.cap + tlinebelow + uni1E6F + twodotleader + uni2025 + ucaron + uni01D4 + udieresisacute + uni01D8 + udieresiscaron + uni01DA + udieresisgrave + uni01DC + udieresismacron + uni01D6 + udotbelow + uni1EE5 + uhookabove + uni1EE7 + uhornacute + uni1EE9 + uhorndotbelow + uni1EF1 + uhorngrave + uni1EEB + uhornhookabove + uni1EED + uhorntilde + uni1EEF + uni1E9E + uni1E9E + vdotbelow + uni1E7F + verticallinelowmod + uni02CC + verticallinemod + uni02C8 + won + uni20A9 + xdieresis + uni1E8D + ydotaccent + uni1E8F + ydotbelow + uni1EF5 + yhookabove + uni1EF7 + ymacron + uni0233 + ytilde + uni1EF9 + zcircumflex + uni1E91 + zdotbelow + uni1E93 + zlinebelow + uni1E95 + + + diff --git a/sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/metainfo.plist b/sources/instances/truetype/IntelOneMono-LightItalic.ufo/metainfo.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-LightItalic-quadratic.ufo/metainfo.plist rename to sources/instances/truetype/IntelOneMono-LightItalic.ufo/metainfo.plist diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/features.fea b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/features.fea deleted file mode 100644 index 275785b9..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/features.fea +++ /dev/null @@ -1,368 +0,0 @@ -# ---------------------------- -# INTEL ONE MONO OPENTYPE CODE -# ---------------------------- - -# ---------------- -# Language Systems -# ---------------- - -languagesystem DFLT dflt; -languagesystem latn dflt; -languagesystem latn TRK; -languagesystem latn AZE; -languagesystem latn CRT; -languagesystem latn CAT; - - -# ------- -# Classes -# ------- - -# Base Letters -@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; -@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; - -# Figures -@fig = [zero one two three four five six seven eight nine]; -@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; -@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; -@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; -@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; - -# Marks Above -@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; -@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; - -# Marks Below -@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; - - -# --------------- -# Localized Forms -# --------------- - -feature locl { - script latn; - language TRK; - lookup iTurkish { - sub i by idotaccent; - } iTurkish; - language AZE; - lookup iTurkish; - language CRT; - lookup iTurkish; - language CAT; - sub l periodcentered' l by middotcat; - sub L periodcentered' L by middotcat.cap; - # try fusing them - sub L middotcat.cap by L.dot; - sub L middotcat by L.dot; - sub l middotcat by l.dot; -} locl; - - -# --------------------------------- -# Glyph Composition / Decomposition -# --------------------------------- - -feature ccmp { - - # Decompose unicode lowercase characters whose uppercase counterparts have no unicode. - lookup Decomp { - sub hlinebelow by h macronlowmod; - sub jcaron by j caron; - } Decomp; - - # Replace double above accents by combined drawings. - lookup DblMarks { - sub dieresiscmb acutecmb by dieresisacute; - sub dieresiscmb gravecmb by dieresisgrave; - sub dieresiscmb caroncmb by dieresiscaron; - sub dieresiscmb macroncmb by dieresismacron; - sub brevecmb acutecmb by breveacute; - sub brevecmb gravecmb by brevegrave; - sub brevecmb hookcmb by brevehook; - sub brevecmb tildecmb by brevetilde; - sub circumflexcmb acutecmb by circumflexacute; - sub circumflexcmb gravecmb by circumflexgrave; - sub circumflexcmb hookcmb by circumflexhook; - sub circumflexcmb tildecmb by circumflextilde; - # capital forms - sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; - sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; - sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; - sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; - sub brevecmb.cap acutecmb.cap by breveacute.cap; - sub brevecmb.cap gravecmb.cap by brevegrave.cap; - sub brevecmb.cap hookcmb.cap by brevehook.cap; - sub brevecmb.cap tildecmb.cap by brevetilde.cap; - sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; - sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; - sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; - sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; - } DblMarks; - - # Replace combining marks that follow a uppercase letter by their uppercase form - lookup CapitalMarks { - sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; - sub [@ltrUC] [@lcMarks]' by [@ucMarks]; - } CapitalMarks; - - # Replace letters with dotless counterparts when followed by a combining mark - lookup Dotless { - sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; - sub [i j]' [@lcMarks] by [dotlessi dotlessj]; - } Dotless; - - # Replace e ogonek with pre-drawn eogonek - lookup eogonek { - sub e ogonekcmb by eogonek; - } eogonek; - -} ccmp; - - -# ---------- -# Numerators -# ---------- - -feature numr { - sub @fig by @figNum; -} numr; - -# ------------ -# Denominators -# ------------ - -feature dnom { - sub @fig by @figDen; -} dnom; - -# ----------- -# Superscript -# ----------- - -feature sups { - sub @fig by @figSup; -} sups; - -# --------------------- -# Subscript & Inferiors -# --------------------- - -feature subs { - sub @fig by @figInf; -} subs; - -feature sinf { - sub @fig by @figInf; -} sinf; - - -# --------------------- -# Contextual Alternates -# --------------------- - -feature calt { - # shifts colon to align with math symbols when used together - - sub colon' [plus equal greater less hyphen] by colon.fig; - sub [plus equal less greater hyphen] colon' by colon.fig; - - sub colon' [colon colon.fig] by colon.fig; - sub colon.fig colon' by colon.fig; - -} calt; - - -# -------------- -# Stylistic Sets -# -------------- - -feature ss11 { - featureNames { - name "Raised Colon (Figures Only)"; # Windows English - name 1 0 0 "Raised Colon (Figures Only)"; # Mac English - }; - lookup FigureColonContextual { - sub @fig colon' @fig by colon.fig; - } FigureColonContextual; -} ss11; - -feature ss12 { - featureNames { - name "Raised Colon (Global)"; # Windows English - name 1 0 0 "Raised Colon (Global)"; # Mac English - }; - lookup FigureColon { - sub colon by colon.fig; - } FigureColon; -} ss12; - - -# -------------------- -# Stylistic Alternates -# -------------------- - -feature salt { - lookup FigureColon; # SS12 -} salt; - - -# --------------------------------------------------------------------- -# MARK | Generated: November 23, 2022 - 02:38:01 PM by 'markFeature.py' -# --------------------------------------------------------------------- - -markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; -markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; -markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; -markClass [cedillacmb] @mark_belowcedilla; -markClass [ogonekcmb] @mark_belowogonek; - -feature mark { - - lookup aboveLC{ - pos base [a] mark @mark_aboveLC; - pos base [c] mark @mark_aboveLC; - pos base [dotlessi] mark @mark_aboveLC; - pos base [dotlessj] mark @mark_aboveLC; - pos base [e] mark @mark_aboveLC; - pos base [eogonek] mark @mark_aboveLC; - pos base [g] mark @mark_aboveLC; - pos base [m] mark @mark_aboveLC; - pos base [n] mark @mark_aboveLC; - pos base [o] mark @mark_aboveLC; - pos base [p] mark @mark_aboveLC; - pos base [s] mark @mark_aboveLC; - pos base [u] mark @mark_aboveLC; - pos base [z] mark @mark_aboveLC; - } aboveLC; - - lookup aboveUC{ - pos base [A] mark @mark_aboveUC; - pos base [C] mark @mark_aboveUC; - pos base [E] mark @mark_aboveUC; - pos base [Eogonek] mark @mark_aboveUC; - pos base [G] mark @mark_aboveUC; - pos base [I] mark @mark_aboveUC; - pos base [J] mark @mark_aboveUC; - pos base [M] mark @mark_aboveUC; - pos base [N] mark @mark_aboveUC; - pos base [O] mark @mark_aboveUC; - pos base [P] mark @mark_aboveUC; - pos base [S] mark @mark_aboveUC; - pos base [U] mark @mark_aboveUC; - pos base [Z] mark @mark_aboveUC; - } aboveUC; - - lookup below{ - pos base [C] mark @mark_below; - pos base [Dcroat] mark @mark_below; - pos base [E] mark @mark_below; - pos base [H] mark @mark_below; - pos base [I] mark @mark_below; - pos base [O] mark @mark_below; - pos base [S] mark @mark_below; - pos base [U] mark @mark_below; - pos base [X] mark @mark_below; - pos base [Z] mark @mark_below; - pos base [c] mark @mark_below; - pos base [dcroat] mark @mark_below; - pos base [dotlessi] mark @mark_below; - pos base [e] mark @mark_below; - pos base [h] mark @mark_below; - pos base [o] mark @mark_below; - pos base [s] mark @mark_below; - pos base [u] mark @mark_below; - pos base [x] mark @mark_below; - pos base [z] mark @mark_below; - } below; - - lookup belowcedilla{ - pos base [Z] mark @mark_belowcedilla; - pos base [z] mark @mark_belowcedilla; - } belowcedilla; - - lookup belowogonek{ - pos base [A] mark @mark_belowogonek; - pos base [E] mark @mark_belowogonek; - pos base [I] mark @mark_belowogonek; - pos base [O] mark @mark_belowogonek; - pos base [U] mark @mark_belowogonek; - pos base [a] mark @mark_belowogonek; - pos base [dotlessi] mark @mark_belowogonek; - pos base [e] mark @mark_belowogonek; - pos base [o] mark @mark_belowogonek; - pos base [u] mark @mark_belowogonek; - } belowogonek; - -} mark; - -@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; -@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; - -table GDEF { - GlyphClassDef @BASES,,@MARKS,; -} GDEF; - - -# -------------- -# All Alternates -# -------------- - -feature aalt { - sub germandbls from [germandbls uni1E9E]; - sub uni1E9E from [uni1E9E germandbls]; - sub colon from [colon colon.fig]; - sub colon.fig from [colon.fig colon]; - sub eight from [eight eight.den eight.sup eight.num eight.inf]; - sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; - sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; - sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; - sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; - sub five from [five five.inf five.num five.den five.sup]; - sub five.sup from [five.sup five five.inf five.num five.den]; - sub five.den from [five.den five.sup five five.inf five.num]; - sub five.num from [five.num five.den five.sup five five.inf]; - sub five.inf from [five.inf five.num five.den five.sup five]; - sub four from [four four.sup four.num four.den four.inf]; - sub four.inf from [four.inf four four.sup four.num four.den]; - sub four.den from [four.den four.inf four four.sup four.num]; - sub four.num from [four.num four.den four.inf four four.sup]; - sub four.sup from [four.sup four.num four.den four.inf four]; - sub nine from [nine nine.den nine.inf nine.num nine.sup]; - sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; - sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; - sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; - sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; - sub one from [one one.den one.num one.inf one.sup]; - sub one.sup from [one.sup one one.den one.num one.inf]; - sub one.inf from [one.inf one.sup one one.den one.num]; - sub one.num from [one.num one.inf one.sup one one.den]; - sub one.den from [one.den one.num one.inf one.sup one]; - sub seven from [seven seven.inf seven.num seven.sup seven.den]; - sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; - sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; - sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; - sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; - sub six from [six six.num six.sup six.den six.inf]; - sub six.inf from [six.inf six six.num six.sup six.den]; - sub six.den from [six.den six.inf six six.num six.sup]; - sub six.sup from [six.sup six.den six.inf six six.num]; - sub six.num from [six.num six.sup six.den six.inf six]; - sub three from [three three.inf three.den three.num three.sup]; - sub three.sup from [three.sup three three.inf three.den three.num]; - sub three.num from [three.num three.sup three three.inf three.den]; - sub three.den from [three.den three.num three.sup three three.inf]; - sub three.inf from [three.inf three.den three.num three.sup three]; - sub two from [two two.inf two.sup two.num two.den]; - sub two.den from [two.den two two.inf two.sup two.num]; - sub two.num from [two.num two.den two two.inf two.sup]; - sub two.sup from [two.sup two.num two.den two two.inf]; - sub two.inf from [two.inf two.sup two.num two.den two]; - sub zero from [zero zero.sup zero.num zero.den zero.inf]; - sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; - sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; - sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; - sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; -} aalt; diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/fontinfo.plist b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/fontinfo.plist deleted file mode 100644 index 959ca4ec..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/fontinfo.plist +++ /dev/null @@ -1,408 +0,0 @@ - - - - - ascender - 740 - capHeight - 655 - copyright - Copyright 2023 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) - descender - -260 - familyName - Intel One Mono - guidelines - - italicAngle - 0.0 - openTypeHeadFlags - - 0 - 1 - - openTypeHheaAscender - 1090 - openTypeHheaDescender - -290 - openTypeHheaLineGap - 0 - openTypeNameDesigner - Fred Shallcrass - openTypeNameDesignerURL - http://frerejones.com - openTypeNameLicense - This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL - openTypeNameLicenseURL - https://github.com/intel/intel-one-mono/blob/main/license - openTypeNameManufacturer - Frere-Jones Type LLC - openTypeNameManufacturerURL - http://frerejones.com - openTypeNamePreferredFamilyName - Intel One Mono - openTypeNamePreferredSubfamilyName - Medium - openTypeNameRecords - - - encodingID - 0 - languageID - 0 - nameID - 0 - platformID - 1 - string - (C) 2023 Intel Corporation - - - encodingID - 1 - languageID - 1033 - nameID - 0 - platformID - 3 - string - (C) 2023 Intel Corporation - - - encodingID - 0 - languageID - 0 - nameID - 1 - platformID - 1 - string - Intel One Mono Medium - - - encodingID - 1 - languageID - 1033 - nameID - 1 - platformID - 3 - string - Intel One Mono Medium - - - encodingID - 0 - languageID - 0 - nameID - 2 - platformID - 1 - string - Regular - - - encodingID - 1 - languageID - 1033 - nameID - 2 - platformID - 3 - string - Regular - - - encodingID - 0 - languageID - 0 - nameID - 4 - platformID - 1 - string - Intel One Mono Medium - - - encodingID - 1 - languageID - 1033 - nameID - 4 - platformID - 3 - string - Intel One Mono Medium - - - encodingID - 0 - languageID - 0 - nameID - 6 - platformID - 1 - string - IntelOneMono-Medium - - - encodingID - 1 - languageID - 1033 - nameID - 6 - platformID - 3 - string - IntelOneMono-Medium - - - encodingID - 0 - languageID - 0 - nameID - 8 - platformID - 1 - string - Frere-Jones Type LLC - - - encodingID - 1 - languageID - 1033 - nameID - 8 - platformID - 3 - string - Frere-Jones Type LLC - - - encodingID - 0 - languageID - 0 - nameID - 9 - platformID - 1 - string - Fred Shallcrass - - - encodingID - 1 - languageID - 1033 - nameID - 9 - platformID - 3 - string - Fred Shallcrass - - - encodingID - 0 - languageID - 0 - nameID - 11 - platformID - 1 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 11 - platformID - 3 - string - http://frerejones.com - - - encodingID - 0 - languageID - 0 - nameID - 12 - platformID - 1 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 12 - platformID - 3 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 16 - platformID - 3 - string - Intel One Mono - - - encodingID - 1 - languageID - 1033 - nameID - 17 - platformID - 3 - string - Medium - - - openTypeOS2CodePageRanges - - 0 - 1 - 4 - 7 - 8 - 29 - - openTypeOS2Panose - - 2 - 11 - 7 - 9 - 2 - 2 - 3 - 2 - 2 - 4 - - openTypeOS2Selection - - 7 - 8 - - openTypeOS2StrikeoutPosition - 286 - openTypeOS2StrikeoutSize - 50 - openTypeOS2Type - - openTypeOS2TypoAscender - 1090 - openTypeOS2TypoDescender - -290 - openTypeOS2TypoLineGap - 0 - openTypeOS2UnicodeRanges - - 0 - 1 - 2 - 29 - 32 - - openTypeOS2VendorID - FRJN - openTypeOS2WeightClass - 500 - openTypeOS2WidthClass - 5 - openTypeOS2WinAscent - 1090 - openTypeOS2WinDescent - 290 - postscriptBlueFuzz - 0 - postscriptBlueScale - 0.05 - postscriptBlueValues - - -15 - 0 - 471 - 486 - 655 - 670 - 710 - 725 - - postscriptDefaultWidthX - 614 - postscriptFamilyBlues - - postscriptFamilyOtherBlues - - postscriptFontName - IntelOneMono-Medium - postscriptForceBold - - postscriptFullName - Intel One Mono Medium - postscriptIsFixedPitch - - postscriptOtherBlues - - -245 - -230 - - postscriptStemSnapH - - 94 - - postscriptStemSnapV - - 112 - 116 - - postscriptUnderlinePosition - -75 - postscriptUnderlineThickness - 50 - styleMapFamilyName - Intel One Mono Medium - styleMapStyleName - regular - styleName - Medium - unitsPerEm - 1000 - versionMajor - 1 - versionMinor - 3 - xHeight - 471 - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_.dot.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_.dot.glif deleted file mode 100644 index f0de5338..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_.dot.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_E_.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_E_.glif deleted file mode 100644 index a54e9d52..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_E_.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_breve.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_breve.glif deleted file mode 100644 index ecdf13d2..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_breve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_caron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_caron.glif deleted file mode 100644 index 911d44b1..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_circumflex.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_circumflex.glif deleted file mode 100644 index 39a2db79..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_circumflexacute.glif deleted file mode 100644 index 464c4153..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_circumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_circumflexdotbelow.glif deleted file mode 100644 index 01380574..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_circumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_circumflexgrave.glif deleted file mode 100644 index b8067676..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_circumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_circumflexhookabove.glif deleted file mode 100644 index 91bcfd51..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_circumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_circumflextilde.glif deleted file mode 100644 index 0edf1d56..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_circumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_dieresis.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_dieresis.glif deleted file mode 100644 index 644c2c86..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_dotaccent.glif deleted file mode 100644 index a31f49f7..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_dotbelow.glif deleted file mode 100644 index 4b4d4a96..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_hookabove.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_hookabove.glif deleted file mode 100644 index 6bc2faed..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_horn.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_horn.glif deleted file mode 100644 index 9e0c96da..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_horn.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_hornacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_hornacute.glif deleted file mode 100644 index 4c5241eb..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_hornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_horndotbelow.glif deleted file mode 100644 index 9df0eca4..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_horndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_horngrave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_horngrave.glif deleted file mode 100644 index 23668cc6..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_horngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_hornhookabove.glif deleted file mode 100644 index 81077682..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_hornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_horntilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_horntilde.glif deleted file mode 100644 index df2091cc..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_horntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_macron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_macron.glif deleted file mode 100644 index 8661346a..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_ogonek.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_ogonek.glif deleted file mode 100644 index e51623da..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_ogonek.glif +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_slash.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_slash.glif deleted file mode 100644 index 919a8e49..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_slash.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_tilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_tilde.glif deleted file mode 100644 index 7df0dcf5..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_acute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_acute.glif deleted file mode 100644 index 5d3a0a55..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_caron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_caron.glif deleted file mode 100644 index f84414a1..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_commaaccent.glif deleted file mode 100644 index 431835f9..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_dotaccent.glif deleted file mode 100644 index 911fa7b5..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_dotbelow.glif deleted file mode 100644 index 6d4dbf6f..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_linebelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_linebelow.glif deleted file mode 100644 index 8db1b759..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_macrondotbelow.glif deleted file mode 100644 index 8b4c61d9..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_macrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_acute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_acute.glif deleted file mode 100644 index 2880c287..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_caron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_caron.glif deleted file mode 100644 index 30647a42..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_cedilla.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_cedilla.glif deleted file mode 100644 index 4c4df8a5..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_cedilla.glif +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_chwa.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_chwa.glif deleted file mode 100644 index 88fdf0f0..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_chwa.glif +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_circumflex.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_circumflex.glif deleted file mode 100644 index 27faa61b..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_commaaccent.glif deleted file mode 100644 index 503eadf9..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_dotbelow.glif deleted file mode 100644 index e630f7a4..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_caron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_caron.glif deleted file mode 100644 index 9478200a..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_cedilla.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_cedilla.glif deleted file mode 100644 index e9056099..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_cedilla.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_circumflexbelow.glif deleted file mode 100644 index e4239a57..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_circumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_commaaccent.glif deleted file mode 100644 index 13c9077c..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_dotbelow.glif deleted file mode 100644 index e4571cca..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_horn.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_horn.glif deleted file mode 100644 index 48387c22..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_horn.glif +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_linebelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_linebelow.glif deleted file mode 100644 index 8cbacb06..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_acute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_acute.glif deleted file mode 100644 index aa7e40e0..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_breve.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_breve.glif deleted file mode 100644 index 2d75fcd2..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_breve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_caron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_caron.glif deleted file mode 100644 index a518822d..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_circumflex.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_circumflex.glif deleted file mode 100644 index a790e335..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_dieresis.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_dieresis.glif deleted file mode 100644 index a6d22fd5..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_dieresisacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_dieresisacute.glif deleted file mode 100644 index ce10b66d..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_dieresisacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_dieresiscaron.glif deleted file mode 100644 index da612539..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_dieresiscaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_dieresisgrave.glif deleted file mode 100644 index 877c3631..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_dieresisgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_dieresismacron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_dieresismacron.glif deleted file mode 100644 index 7ad542b1..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_dieresismacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_dotbelow.glif deleted file mode 100644 index 92e6fae5..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_grave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_grave.glif deleted file mode 100644 index d27e9ec0..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_hookabove.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_hookabove.glif deleted file mode 100644 index 5a7b97cf..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_horn.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_horn.glif deleted file mode 100644 index e1e8daa6..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_horn.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_hornacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_hornacute.glif deleted file mode 100644 index b3dff414..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_hornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_horndotbelow.glif deleted file mode 100644 index 654c67ae..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_horndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_horngrave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_horngrave.glif deleted file mode 100644 index 7c31ea4d..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_horngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_hornhookabove.glif deleted file mode 100644 index 0cd806c5..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_hornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_horntilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_horntilde.glif deleted file mode 100644 index 1822b4fa..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_horntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_hungarumlaut.glif deleted file mode 100644 index 2fb78f3e..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_hungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_macron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_macron.glif deleted file mode 100644 index f0eb5564..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_ogonek.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_ogonek.glif deleted file mode 100644 index 24510048..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_ogonek.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_ring.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_ring.glif deleted file mode 100644 index 349ebf10..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_ring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_tilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_tilde.glif deleted file mode 100644 index 52835fdf..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/V_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/V_dotbelow.glif deleted file mode 100644 index 28dd4706..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/V_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/W_acute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/W_acute.glif deleted file mode 100644 index eff2da56..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/W_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/W_circumflex.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/W_circumflex.glif deleted file mode 100644 index d51dcbeb..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/W_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/W_dieresis.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/W_dieresis.glif deleted file mode 100644 index a1dbedd3..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/W_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/W_grave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/W_grave.glif deleted file mode 100644 index feb2e8e7..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/W_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/X_dieresis.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/X_dieresis.glif deleted file mode 100644 index a96b53ca..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/X_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_acute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_acute.glif deleted file mode 100644 index d36664e7..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_circumflex.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_circumflex.glif deleted file mode 100644 index 3a80ffe0..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_dieresis.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_dieresis.glif deleted file mode 100644 index c384b223..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_dotaccent.glif deleted file mode 100644 index cc8899df..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_dotbelow.glif deleted file mode 100644 index e2143b99..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_grave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_grave.glif deleted file mode 100644 index d88f56b4..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_hookabove.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_hookabove.glif deleted file mode 100644 index 903d7542..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_macron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_macron.glif deleted file mode 100644 index 94fde7a3..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_tilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_tilde.glif deleted file mode 100644 index 06cce476..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Z_acute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Z_acute.glif deleted file mode 100644 index 06a82271..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Z_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Z_caron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Z_caron.glif deleted file mode 100644 index 93df7ae8..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Z_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Z_circumflex.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Z_circumflex.glif deleted file mode 100644 index 0567fd8d..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Z_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Z_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Z_dotaccent.glif deleted file mode 100644 index 7f6073ed..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Z_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/aacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/aacute.glif deleted file mode 100644 index 3ab3b352..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/aacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/abreve.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/abreve.glif deleted file mode 100644 index c8f21069..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/abreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/abreveacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/abreveacute.glif deleted file mode 100644 index fda1a690..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/abreveacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/abrevedotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/abrevedotbelow.glif deleted file mode 100644 index 162c2209..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/abrevedotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/abrevegrave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/abrevegrave.glif deleted file mode 100644 index 0ae6e7c4..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/abrevegrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/abrevehookabove.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/abrevehookabove.glif deleted file mode 100644 index 1eca410b..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/abrevehookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/abrevetilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/abrevetilde.glif deleted file mode 100644 index 6dcd83b5..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/abrevetilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acaron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acaron.glif deleted file mode 100644 index 63d31888..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acircumflex.glif deleted file mode 100644 index 34675586..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acircumflexacute.glif deleted file mode 100644 index 8ebc1159..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acircumflexdotbelow.glif deleted file mode 100644 index cd3195c4..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acircumflexgrave.glif deleted file mode 100644 index 495aab5d..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acircumflexhookabove.glif deleted file mode 100644 index 9e2b784f..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acircumflextilde.glif deleted file mode 100644 index 835f4f57..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/adieresis.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/adieresis.glif deleted file mode 100644 index 97ea469e..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/adieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/adotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/adotaccent.glif deleted file mode 100644 index 53f40ddf..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/adotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/adotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/adotbelow.glif deleted file mode 100644 index 5194acc0..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/adotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ae.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ae.glif deleted file mode 100644 index 08b6052e..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ae.glif +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/agrave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/agrave.glif deleted file mode 100644 index 79ab8a1b..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/agrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ahookabove.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ahookabove.glif deleted file mode 100644 index 51465b86..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ahookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/amacron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/amacron.glif deleted file mode 100644 index bce14e49..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/amacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/aogonek.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/aogonek.glif deleted file mode 100644 index 587eb39a..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/aogonek.glif +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/aring.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/aring.glif deleted file mode 100644 index e470e7a7..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/aring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/atilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/atilde.glif deleted file mode 100644 index 49e679ee..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/atilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/breveacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/breveacute.glif deleted file mode 100644 index f6ad2348..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/breveacute.glif +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevegrave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevegrave.glif deleted file mode 100644 index 4692e64f..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevegrave.glif +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevehook.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevehook.glif deleted file mode 100644 index 20b1f68f..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevehook.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevetilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevetilde.glif deleted file mode 100644 index 9b77b088..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevetilde.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/cacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/cacute.glif deleted file mode 100644 index c5db79e2..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/cacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ccaron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ccaron.glif deleted file mode 100644 index 2a811d07..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ccaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ccedilla.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ccedilla.glif deleted file mode 100644 index 12c5ace0..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ccedilla.glif +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/cdotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/cdotaccent.glif deleted file mode 100644 index 2de85b26..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/cdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflexhook.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflexhook.glif deleted file mode 100644 index 08e1ed52..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflexhook.glif +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflextilde.glif deleted file mode 100644 index aa788ee6..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflextilde.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/commaturnedabovecmb.glif deleted file mode 100644 index ccf7df33..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/commaturnedabovecmb.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/contents.plist b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/contents.plist deleted file mode 100644 index 9b3fa25c..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/contents.plist +++ /dev/null @@ -1,1374 +0,0 @@ - - - - - .notdef - _notdef.glif - A - A_.glif - AE - A_E_.glif - Aacute - A_acute.glif - Abreve - A_breve.glif - Abreveacute - A_breveacute.glif - Abrevedotbelow - A_brevedotbelow.glif - Abrevegrave - A_brevegrave.glif - Abrevehookabove - A_brevehookabove.glif - Abrevetilde - A_brevetilde.glif - Acaron - A_caron.glif - Acircumflex - A_circumflex.glif - Acircumflexacute - A_circumflexacute.glif - Acircumflexdotbelow - A_circumflexdotbelow.glif - Acircumflexgrave - A_circumflexgrave.glif - Acircumflexhookabove - A_circumflexhookabove.glif - Acircumflextilde - A_circumflextilde.glif - Adieresis - A_dieresis.glif - Adotaccent - A_dotaccent.glif - Adotbelow - A_dotbelow.glif - Agrave - A_grave.glif - Ahookabove - A_hookabove.glif - Amacron - A_macron.glif - Aogonek - A_ogonek.glif - Aring - A_ring.glif - Atilde - A_tilde.glif - B - B_.glif - Blinebelow - B_linebelow.glif - C - C_.glif - Cacute - C_acute.glif - Ccaron - C_caron.glif - Ccedilla - C_cedilla.glif - Ccircumflex - C_circumflex.glif - Cdotaccent - C_dotaccent.glif - D - D_.glif - Dcaron - D_caron.glif - Dcircumflexbelow - D_circumflexbelow.glif - Dcroat - D_croat.glif - Ddotbelow - D_dotbelow.glif - Dlinebelow - D_linebelow.glif - E - E_.glif - Eacute - E_acute.glif - Ebreve - E_breve.glif - Ecaron - E_caron.glif - Ecircumflex - E_circumflex.glif - Ecircumflexacute - E_circumflexacute.glif - Ecircumflexdotbelow - E_circumflexdotbelow.glif - Ecircumflexgrave - E_circumflexgrave.glif - Ecircumflexhookabove - E_circumflexhookabove.glif - Ecircumflextilde - E_circumflextilde.glif - Edieresis - E_dieresis.glif - Edotaccent - E_dotaccent.glif - Edotbelow - E_dotbelow.glif - Egrave - E_grave.glif - Ehookabove - E_hookabove.glif - Emacron - E_macron.glif - Eng - E_ng.glif - Eogonek - E_ogonek.glif - Eth - E_th.glif - Etilde - E_tilde.glif - Euro - E_uro.glif - F - F_.glif - G - G_.glif - Gbreve - G_breve.glif - Gcaron - G_caron.glif - Gcircumflex - G_circumflex.glif - Gcommaaccent - G_commaaccent.glif - Gdotaccent - G_dotaccent.glif - Gmacron - G_macron.glif - H - H_.glif - Hbar - H_bar.glif - Hbrevebelow - H_brevebelow.glif - Hcedilla - H_cedilla.glif - Hcircumflex - H_circumflex.glif - Hdotbelow - H_dotbelow.glif - I - I_.glif - Iacute - I_acute.glif - Ibreve - I_breve.glif - Icaron - I_caron.glif - Icircumflex - I_circumflex.glif - Idieresis - I_dieresis.glif - Idotaccent - I_dotaccent.glif - Idotbelow - I_dotbelow.glif - Igrave - I_grave.glif - Ihookabove - I_hookabove.glif - Imacron - I_macron.glif - Iogonek - I_ogonek.glif - Itilde - I_tilde.glif - J - J_.glif - Jcircumflex - J_circumflex.glif - K - K_.glif - Kcommaaccent - K_commaaccent.glif - Kdotbelow - K_dotbelow.glif - Klinebelow - K_linebelow.glif - L - L_.glif - L.dot - L_.dot.glif - Lacute - L_acute.glif - Lcaron - L_caron.glif - Lcircumflexbelow - L_circumflexbelow.glif - Lcommaaccent - L_commaaccent.glif - Ldotbelow - L_dotbelow.glif - Llinebelow - L_linebelow.glif - Lmacrondotbelow - L_macrondotbelow.glif - Lslash - L_slash.glif - M - M_.glif - Macute - M_acute.glif - Mdotaccent - M_dotaccent.glif - Mdotbelow - M_dotbelow.glif - N - N_.glif - Nacute - N_acute.glif - Ncaron - N_caron.glif - Ncircumflexbelow - N_circumflexbelow.glif - Ncommaaccent - N_commaaccent.glif - Ndotaccent - N_dotaccent.glif - Ndotbelow - N_dotbelow.glif - Ngrave - N_grave.glif - Nlinebelow - N_linebelow.glif - Ntilde - N_tilde.glif - O - O_.glif - OE - O_E_.glif - Oacute - O_acute.glif - Obreve - O_breve.glif - Ocaron - O_caron.glif - Ocircumflex - O_circumflex.glif - Ocircumflexacute - O_circumflexacute.glif - Ocircumflexdotbelow - O_circumflexdotbelow.glif - Ocircumflexgrave - O_circumflexgrave.glif - Ocircumflexhookabove - O_circumflexhookabove.glif - Ocircumflextilde - O_circumflextilde.glif - Odieresis - O_dieresis.glif - Odotaccent - O_dotaccent.glif - Odotbelow - O_dotbelow.glif - Ograve - O_grave.glif - Ohookabove - O_hookabove.glif - Ohorn - O_horn.glif - Ohornacute - O_hornacute.glif - Ohorndotbelow - O_horndotbelow.glif - Ohorngrave - O_horngrave.glif - Ohornhookabove - O_hornhookabove.glif - Ohorntilde - O_horntilde.glif - Ohungarumlaut - O_hungarumlaut.glif - Omacron - O_macron.glif - Oogonek - O_ogonek.glif - Oslash - O_slash.glif - Otilde - O_tilde.glif - P - P_.glif - Q - Q_.glif - R - R_.glif - Racute - R_acute.glif - Rcaron - R_caron.glif - Rcommaaccent - R_commaaccent.glif - Rdotaccent - R_dotaccent.glif - Rdotbelow - R_dotbelow.glif - Rlinebelow - R_linebelow.glif - Rmacrondotbelow - R_macrondotbelow.glif - S - S_.glif - Sacute - S_acute.glif - Scaron - S_caron.glif - Scedilla - S_cedilla.glif - Schwa - S_chwa.glif - Scircumflex - S_circumflex.glif - Scommaaccent - S_commaaccent.glif - Sdotbelow - S_dotbelow.glif - T - T_.glif - Tbar - T_bar.glif - Tcaron - T_caron.glif - Tcedilla - T_cedilla.glif - Tcircumflexbelow - T_circumflexbelow.glif - Tcommaaccent - T_commaaccent.glif - Tdotbelow - T_dotbelow.glif - Thorn - T_horn.glif - Tlinebelow - T_linebelow.glif - U - U_.glif - Uacute - U_acute.glif - Ubreve - U_breve.glif - Ucaron - U_caron.glif - Ucircumflex - U_circumflex.glif - Udieresis - U_dieresis.glif - Udieresisacute - U_dieresisacute.glif - Udieresiscaron - U_dieresiscaron.glif - Udieresisgrave - U_dieresisgrave.glif - Udieresismacron - U_dieresismacron.glif - Udotbelow - U_dotbelow.glif - Ugrave - U_grave.glif - Uhookabove - U_hookabove.glif - Uhorn - U_horn.glif - Uhornacute - U_hornacute.glif - Uhorndotbelow - U_horndotbelow.glif - Uhorngrave - U_horngrave.glif - Uhornhookabove - U_hornhookabove.glif - Uhorntilde - U_horntilde.glif - Uhungarumlaut - U_hungarumlaut.glif - Umacron - U_macron.glif - Uogonek - U_ogonek.glif - Uring - U_ring.glif - Utilde - U_tilde.glif - V - V_.glif - Vdotbelow - V_dotbelow.glif - W - W_.glif - Wacute - W_acute.glif - Wcircumflex - W_circumflex.glif - Wdieresis - W_dieresis.glif - Wgrave - W_grave.glif - X - X_.glif - Xdieresis - X_dieresis.glif - Y - Y_.glif - Yacute - Y_acute.glif - Ycircumflex - Y_circumflex.glif - Ydieresis - Y_dieresis.glif - Ydotaccent - Y_dotaccent.glif - Ydotbelow - Y_dotbelow.glif - Ygrave - Y_grave.glif - Yhookabove - Y_hookabove.glif - Ymacron - Y_macron.glif - Ytilde - Y_tilde.glif - Z - Z_.glif - Zacute - Z_acute.glif - Zcaron - Z_caron.glif - Zcircumflex - Z_circumflex.glif - Zdotaccent - Z_dotaccent.glif - Zdotbelow - Z_dotbelow.glif - Zlinebelow - Z_linebelow.glif - a - a.glif - aacute - aacute.glif - abreve - abreve.glif - abreveacute - abreveacute.glif - abrevedotbelow - abrevedotbelow.glif - abrevegrave - abrevegrave.glif - abrevehookabove - abrevehookabove.glif - abrevetilde - abrevetilde.glif - acaron - acaron.glif - acircumflex - acircumflex.glif - acircumflexacute - acircumflexacute.glif - acircumflexdotbelow - acircumflexdotbelow.glif - acircumflexgrave - acircumflexgrave.glif - acircumflexhookabove - acircumflexhookabove.glif - acircumflextilde - acircumflextilde.glif - acute - acute.glif - acutecmb - acutecmb.glif - acutecmb.cap - acutecmb.cap.glif - adieresis - adieresis.glif - adotaccent - adotaccent.glif - adotbelow - adotbelow.glif - ae - ae.glif - agrave - agrave.glif - ahookabove - ahookabove.glif - amacron - amacron.glif - ampersand - ampersand.glif - aogonek - aogonek.glif - apostrophemod - apostrophemod.glif - approxequal - approxequal.glif - aring - aring.glif - asciicircum - asciicircum.glif - asciitilde - asciitilde.glif - asterisk - asterisk.glif - at - at.glif - atilde - atilde.glif - b - b.glif - backslash - backslash.glif - bahtthai - bahtthai.glif - bar - bar.glif - blinebelow - blinebelow.glif - braceleft - braceleft.glif - braceright - braceright.glif - bracketleft - bracketleft.glif - bracketright - bracketright.glif - breve - breve.glif - breveacute - breveacute.glif - breveacute.cap - breveacute.cap.glif - brevebelowcmb - brevebelowcmb.glif - brevecmb - brevecmb.glif - brevecmb.cap - brevecmb.cap.glif - brevegrave - brevegrave.glif - brevegrave.cap - brevegrave.cap.glif - brevehook - brevehook.glif - brevehook.cap - brevehook.cap.glif - brevetilde - brevetilde.glif - brevetilde.cap - brevetilde.cap.glif - bullet - bullet.glif - c - c.glif - cacute - cacute.glif - caron - caron.glif - caroncmb - caroncmb.glif - caroncmb.cap - caroncmb.cap.glif - ccaron - ccaron.glif - ccedilla - ccedilla.glif - ccircumflex - ccircumflex.glif - cdotaccent - cdotaccent.glif - cedilla - cedilla.glif - cedillacmb - cedillacmb.glif - cent - cent.glif - circumflex - circumflex.glif - circumflexacute - circumflexacute.glif - circumflexacute.cap - circumflexacute.cap.glif - circumflexbelowcmb - circumflexbelowcmb.glif - circumflexcmb - circumflexcmb.glif - circumflexcmb.cap - circumflexcmb.cap.glif - circumflexgrave - circumflexgrave.glif - circumflexgrave.cap - circumflexgrave.cap.glif - circumflexhook - circumflexhook.glif - circumflexhook.cap - circumflexhook.cap.glif - circumflextilde - circumflextilde.glif - circumflextilde.cap - circumflextilde.cap.glif - colon - colon.glif - colon.fig - colon.fig.glif - comma - comma.glif - commaaboverightcmb - commaaboverightcmb.glif - commaturnedabovecmb - commaturnedabovecmb.glif - commaturnedmod - commaturnedmod.glif - copyright - copyright.glif - d - d.glif - dagger - dagger.glif - daggerdbl - daggerdbl.glif - dblprimemod - dblprimemod.glif - dcaron - dcaron.glif - dcircumflexbelow - dcircumflexbelow.glif - dcroat - dcroat.glif - ddotbelow - ddotbelow.glif - degree - degree.glif - dieresis - dieresis.glif - dieresisacute - dieresisacute.glif - dieresisacute.cap - dieresisacute.cap.glif - dieresisbelowcmb - dieresisbelowcmb.glif - dieresiscaron - dieresiscaron.glif - dieresiscaron.cap - dieresiscaron.cap.glif - dieresiscmb - dieresiscmb.glif - dieresiscmb.cap - dieresiscmb.cap.glif - dieresisgrave - dieresisgrave.glif - dieresisgrave.cap - dieresisgrave.cap.glif - dieresismacron - dieresismacron.glif - dieresismacron.cap - dieresismacron.cap.glif - divide - divide.glif - dlinebelow - dlinebelow.glif - dollar - dollar.glif - dong - dong.glif - dotaccent - dotaccent.glif - dotaccentcmb - dotaccentcmb.glif - dotaccentcmb.cap - dotaccentcmb.cap.glif - dotbelowcmb - dotbelowcmb.glif - dotlessi - dotlessi.glif - dotlessj - dotlessj.glif - e - e.glif - eacute - eacute.glif - ebreve - ebreve.glif - ecaron - ecaron.glif - ecircumflex - ecircumflex.glif - ecircumflexacute - ecircumflexacute.glif - ecircumflexdotbelow - ecircumflexdotbelow.glif - ecircumflexgrave - ecircumflexgrave.glif - ecircumflexhookabove - ecircumflexhookabove.glif - ecircumflextilde - ecircumflextilde.glif - edieresis - edieresis.glif - edotaccent - edotaccent.glif - edotbelow - edotbelow.glif - egrave - egrave.glif - ehookabove - ehookabove.glif - eight - eight.glif - eight.den - eight.den.glif - eight.inf - eight.inf.glif - eight.num - eight.num.glif - eight.sup - eight.sup.glif - ellipsis - ellipsis.glif - emacron - emacron.glif - emdash - emdash.glif - endash - endash.glif - eng - eng.glif - eogonek - eogonek.glif - equal - equal.glif - eth - eth.glif - etilde - etilde.glif - exclam - exclam.glif - exclamdown - exclamdown.glif - f - f.glif - five - five.glif - five.den - five.den.glif - five.inf - five.inf.glif - five.num - five.num.glif - five.sup - five.sup.glif - fiveeighths - fiveeighths.glif - fivesixths - fivesixths.glif - four - four.glif - four.den - four.den.glif - four.inf - four.inf.glif - four.num - four.num.glif - four.sup - four.sup.glif - fourfifths - fourfifths.glif - fracbar - fracbar.glif - fraction - fraction.glif - g - g.glif - gbreve - gbreve.glif - gcaron - gcaron.glif - gcircumflex - gcircumflex.glif - gcommaaccent - gcommaaccent.glif - gdotaccent - gdotaccent.glif - germandbls - germandbls.glif - gmacron - gmacron.glif - grave - grave.glif - gravecmb - gravecmb.glif - gravecmb.cap - gravecmb.cap.glif - greater - greater.glif - greaterequal - greaterequal.glif - guillemetleft - guillemetleft.glif - guillemetright - guillemetright.glif - guilsinglleft - guilsinglleft.glif - guilsinglright - guilsinglright.glif - h - h.glif - hbar - hbar.glif - hbrevebelow - hbrevebelow.glif - hcedilla - hcedilla.glif - hcircumflex - hcircumflex.glif - hdotbelow - hdotbelow.glif - hlinebelow - hlinebelow.glif - hookcmb - hookcmb.glif - hookcmb.cap - hookcmb.cap.glif - horizontalbar - horizontalbar.glif - hungarumlaut - hungarumlaut.glif - hungarumlautcmb - hungarumlautcmb.glif - hungarumlautcmb.cap - hungarumlautcmb.cap.glif - hyphen - hyphen.glif - i - i.glif - iacute - iacute.glif - ibreve - ibreve.glif - icaron - icaron.glif - icircumflex - icircumflex.glif - idieresis - idieresis.glif - idotaccent - idotaccent.glif - idotbelow - idotbelow.glif - igrave - igrave.glif - ihookabove - ihookabove.glif - imacron - imacron.glif - iogonek - iogonek.glif - itilde - itilde.glif - j - j.glif - jcaron - jcaron.glif - jcircumflex - jcircumflex.glif - k - k.glif - kcommaaccent - kcommaaccent.glif - kdotbelow - kdotbelow.glif - klinebelow - klinebelow.glif - l - l.glif - l.dot - l.dot.glif - lacute - lacute.glif - lcaron - lcaron.glif - lcircumflexbelow - lcircumflexbelow.glif - lcommaaccent - lcommaaccent.glif - ldotbelow - ldotbelow.glif - less - less.glif - lessequal - lessequal.glif - llinebelow - llinebelow.glif - lmacrondotbelow - lmacrondotbelow.glif - lslash - lslash.glif - m - m.glif - macron - macron.glif - macronbelowcmb - macronbelowcmb.glif - macroncmb - macroncmb.glif - macroncmb.cap - macroncmb.cap.glif - macronlowmod - macronlowmod.glif - macute - macute.glif - mdotaccent - mdotaccent.glif - mdotbelow - mdotbelow.glif - middotcat - middotcat.glif - middotcat.cap - middotcat.cap.glif - minus - minus.glif - mu - mu.glif - multiply - multiply.glif - n - n.glif - nacute - nacute.glif - naira - naira.glif - ncaron - ncaron.glif - ncircumflexbelow - ncircumflexbelow.glif - ncommaaccent - ncommaaccent.glif - ndotaccent - ndotaccent.glif - ndotbelow - ndotbelow.glif - ngrave - ngrave.glif - nine - nine.glif - nine.den - nine.den.glif - nine.inf - nine.inf.glif - nine.num - nine.num.glif - nine.sup - nine.sup.glif - nlinebelow - nlinebelow.glif - notequal - notequal.glif - ntilde - ntilde.glif - numbersign - numbersign.glif - o - o.glif - oacute - oacute.glif - obreve - obreve.glif - ocaron - ocaron.glif - ocircumflex - ocircumflex.glif - ocircumflexacute - ocircumflexacute.glif - ocircumflexdotbelow - ocircumflexdotbelow.glif - ocircumflexgrave - ocircumflexgrave.glif - ocircumflexhookabove - ocircumflexhookabove.glif - ocircumflextilde - ocircumflextilde.glif - odieresis - odieresis.glif - odotaccent - odotaccent.glif - odotbelow - odotbelow.glif - oe - oe.glif - ogonek - ogonek.glif - ogonekcmb - ogonekcmb.glif - ograve - ograve.glif - ohookabove - ohookabove.glif - ohorn - ohorn.glif - ohornacute - ohornacute.glif - ohorndotbelow - ohorndotbelow.glif - ohorngrave - ohorngrave.glif - ohornhookabove - ohornhookabove.glif - ohorntilde - ohorntilde.glif - ohungarumlaut - ohungarumlaut.glif - omacron - omacron.glif - one - one.glif - one.den - one.den.glif - one.inf - one.inf.glif - one.num - one.num.glif - one.sup - one.sup.glif - oneeighth - oneeighth.glif - onefifth - onefifth.glif - onehalf - onehalf.glif - onequarter - onequarter.glif - onesixth - onesixth.glif - onethird - onethird.glif - oogonek - oogonek.glif - ordfeminine - ordfeminine.glif - ordmasculine - ordmasculine.glif - oslash - oslash.glif - otilde - otilde.glif - p - p.glif - paragraph - paragraph.glif - parenleft - parenleft.glif - parenright - parenright.glif - percent - percent.glif - period - period.glif - periodcentered - periodcentered.glif - peso - peso.glif - plus - plus.glif - plusminus - plusminus.glif - primemod - primemod.glif - published - published.glif - q - q.glif - question - question.glif - questiondown - questiondown.glif - quotedbl - quotedbl.glif - quotedblbase - quotedblbase.glif - quotedblleft - quotedblleft.glif - quotedblright - quotedblright.glif - quoteleft - quoteleft.glif - quoteright - quoteright.glif - quotesinglbase - quotesinglbase.glif - quotesingle - quotesingle.glif - r - r.glif - racute - racute.glif - rcaron - rcaron.glif - rcommaaccent - rcommaaccent.glif - rdotaccent - rdotaccent.glif - rdotbelow - rdotbelow.glif - registered - registered.glif - ring - ring.glif - ringcmb - ringcmb.glif - ringcmb.cap - ringcmb.cap.glif - ringhalfleft - ringhalfleft.glif - ringhalfright - ringhalfright.glif - rlinebelow - rlinebelow.glif - rmacrondotbelow - rmacrondotbelow.glif - s - s.glif - sacute - sacute.glif - scaron - scaron.glif - scedilla - scedilla.glif - schwa - schwa.glif - scircumflex - scircumflex.glif - scommaaccent - scommaaccent.glif - sdotbelow - sdotbelow.glif - section - section.glif - semicolon - semicolon.glif - servicemark - servicemark.glif - seven - seven.glif - seven.den - seven.den.glif - seven.inf - seven.inf.glif - seven.num - seven.num.glif - seven.sup - seven.sup.glif - seveneighths - seveneighths.glif - six - six.glif - six.den - six.den.glif - six.inf - six.inf.glif - six.num - six.num.glif - six.sup - six.sup.glif - slash - slash.glif - space - space.glif - sterling - sterling.glif - t - t.glif - tbar - tbar.glif - tcaron - tcaron.glif - tcedilla - tcedilla.glif - tcircumflexbelow - tcircumflexbelow.glif - tcommaaccent - tcommaaccent.glif - tdotbelow - tdotbelow.glif - thorn - thorn.glif - three - three.glif - three.den - three.den.glif - three.inf - three.inf.glif - three.num - three.num.glif - three.sup - three.sup.glif - threeeighths - threeeighths.glif - threefifths - threefifths.glif - threequarters - threequarters.glif - tilde - tilde.glif - tildecmb - tildecmb.glif - tildecmb.cap - tildecmb.cap.glif - tlinebelow - tlinebelow.glif - trademark - trademark.glif - two - two.glif - two.den - two.den.glif - two.inf - two.inf.glif - two.num - two.num.glif - two.sup - two.sup.glif - twodotleader - twodotleader.glif - twofifths - twofifths.glif - twothirds - twothirds.glif - u - u.glif - uacute - uacute.glif - ubreve - ubreve.glif - ucaron - ucaron.glif - ucircumflex - ucircumflex.glif - udieresis - udieresis.glif - udieresisacute - udieresisacute.glif - udieresiscaron - udieresiscaron.glif - udieresisgrave - udieresisgrave.glif - udieresismacron - udieresismacron.glif - udotbelow - udotbelow.glif - ugrave - ugrave.glif - uhookabove - uhookabove.glif - uhorn - uhorn.glif - uhornacute - uhornacute.glif - uhorndotbelow - uhorndotbelow.glif - uhorngrave - uhorngrave.glif - uhornhookabove - uhornhookabove.glif - uhorntilde - uhorntilde.glif - uhungarumlaut - uhungarumlaut.glif - umacron - umacron.glif - underscore - underscore.glif - uni00A0 - uni00A_0.glif - uni0326 - uni0326.glif - uni1E9E - uni1E_9E_.glif - uni2011 - uni2011.glif - uni20B9 - uni20B_9.glif - uni20BA - uni20B_A_.glif - uni20BD - uni20B_D_.glif - uniA788 - uniA_788.glif - uogonek - uogonek.glif - uring - uring.glif - utilde - utilde.glif - v - v.glif - vdotbelow - vdotbelow.glif - verticallinelowmod - verticallinelowmod.glif - verticallinemod - verticallinemod.glif - w - w.glif - wacute - wacute.glif - wcircumflex - wcircumflex.glif - wdieresis - wdieresis.glif - wgrave - wgrave.glif - won - won.glif - x - x.glif - xdieresis - xdieresis.glif - y - y.glif - yacute - yacute.glif - ycircumflex - ycircumflex.glif - ydieresis - ydieresis.glif - ydotaccent - ydotaccent.glif - ydotbelow - ydotbelow.glif - yen - yen.glif - ygrave - ygrave.glif - yhookabove - yhookabove.glif - ymacron - ymacron.glif - ytilde - ytilde.glif - z - z.glif - zacute - zacute.glif - zcaron - zcaron.glif - zcircumflex - zcircumflex.glif - zdotaccent - zdotaccent.glif - zdotbelow - zdotbelow.glif - zero - zero.glif - zero.den - zero.den.glif - zero.inf - zero.inf.glif - zero.num - zero.num.glif - zero.sup - zero.sup.glif - zlinebelow - zlinebelow.glif - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dcaron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dcaron.glif deleted file mode 100644 index 93f7970d..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dcroat.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dcroat.glif deleted file mode 100644 index 9ca1ef86..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dcroat.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresisacute.cap.glif deleted file mode 100644 index b2abee28..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresisacute.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresisacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresisacute.glif deleted file mode 100644 index 899f323d..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresisacute.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresisbelowcmb.glif deleted file mode 100644 index 21e86953..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresisbelowcmb.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresiscaron.cap.glif deleted file mode 100644 index 689078e1..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresiscaron.cap.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresiscaron.glif deleted file mode 100644 index 949442f9..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresiscaron.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresisgrave.cap.glif deleted file mode 100644 index 34041362..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresisgrave.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresisgrave.glif deleted file mode 100644 index b61944c8..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresisgrave.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresismacron.cap.glif deleted file mode 100644 index aaefff96..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresismacron.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresismacron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresismacron.glif deleted file mode 100644 index 24c727c1..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresismacron.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dotlessj.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dotlessj.glif deleted file mode 100644 index 688256a4..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dotlessj.glif +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eacute.glif deleted file mode 100644 index 40b65bd8..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ebreve.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ebreve.glif deleted file mode 100644 index 61efc8a9..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ebreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecaron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecaron.glif deleted file mode 100644 index d90792c5..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecircumflex.glif deleted file mode 100644 index 738da0e2..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecircumflexacute.glif deleted file mode 100644 index eb402956..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecircumflexdotbelow.glif deleted file mode 100644 index 45303dc0..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecircumflexgrave.glif deleted file mode 100644 index 37156eda..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecircumflexhookabove.glif deleted file mode 100644 index 52cf96a9..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecircumflextilde.glif deleted file mode 100644 index 8b56f652..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ecircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/edieresis.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/edieresis.glif deleted file mode 100644 index 8796b5a9..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/edieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/edotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/edotaccent.glif deleted file mode 100644 index 58d527e1..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/edotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/egrave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/egrave.glif deleted file mode 100644 index 5e24108b..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/egrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ehookabove.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ehookabove.glif deleted file mode 100644 index 3f9d22b4..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ehookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eight.num.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eight.num.glif deleted file mode 100644 index 3b295fae..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eight.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/emacron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/emacron.glif deleted file mode 100644 index d44b0a78..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/emacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eng.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eng.glif deleted file mode 100644 index e718ab8a..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eng.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eogonek.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eogonek.glif deleted file mode 100644 index 88cc9d33..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eogonek.glif +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eth.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eth.glif deleted file mode 100644 index 268f5410..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eth.glif +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/etilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/etilde.glif deleted file mode 100644 index 296cb825..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/etilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/five.num.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/five.num.glif deleted file mode 100644 index d531edc8..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/five.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/four.num.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/four.num.glif deleted file mode 100644 index a78544ed..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/four.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gbreve.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gbreve.glif deleted file mode 100644 index adba4268..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gbreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gcaron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gcaron.glif deleted file mode 100644 index 36edb12a..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gcircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gcircumflex.glif deleted file mode 100644 index 0073b092..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gcommaaccent.glif deleted file mode 100644 index ee4c9d02..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gdotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gdotaccent.glif deleted file mode 100644 index 6f9642c0..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/germandbls.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/germandbls.glif deleted file mode 100644 index 06b090ef..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/germandbls.glif +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gmacron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gmacron.glif deleted file mode 100644 index 6106a90f..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gmacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hbar.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hbar.glif deleted file mode 100644 index 1ab3d736..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hbar.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hbrevebelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hbrevebelow.glif deleted file mode 100644 index 708f53c8..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hbrevebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hcedilla.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hcedilla.glif deleted file mode 100644 index f813dfb4..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hcedilla.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hcircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hcircumflex.glif deleted file mode 100644 index 098aaf8f..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hdotbelow.glif deleted file mode 100644 index 6125d382..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hlinebelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hlinebelow.glif deleted file mode 100644 index a7a396cb..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hookcmb.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hookcmb.glif deleted file mode 100644 index 672b9ee5..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hookcmb.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/horizontalbar.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/horizontalbar.glif deleted file mode 100644 index 19ce9f0d..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/horizontalbar.glif +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/iacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/iacute.glif deleted file mode 100644 index 2d806cb4..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/iacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ibreve.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ibreve.glif deleted file mode 100644 index fbe27f23..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ibreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/icaron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/icaron.glif deleted file mode 100644 index 532f0e26..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/icaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/icircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/icircumflex.glif deleted file mode 100644 index 65762659..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/icircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/idieresis.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/idieresis.glif deleted file mode 100644 index e355db80..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/idieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/idotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/idotaccent.glif deleted file mode 100644 index 4370f326..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/idotaccent.glif +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/idotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/idotbelow.glif deleted file mode 100644 index a771154b..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/idotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/igrave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/igrave.glif deleted file mode 100644 index da7a7d70..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/igrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ihookabove.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ihookabove.glif deleted file mode 100644 index 299c594b..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ihookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/imacron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/imacron.glif deleted file mode 100644 index 46db9051..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/imacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/iogonek.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/iogonek.glif deleted file mode 100644 index 77112f96..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/iogonek.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/itilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/itilde.glif deleted file mode 100644 index 9c337636..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/itilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/l.dot.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/l.dot.glif deleted file mode 100644 index a81f988b..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/l.dot.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/lacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/lacute.glif deleted file mode 100644 index 0d34e46e..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/lacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/lcaron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/lcaron.glif deleted file mode 100644 index 9fed7e9c..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/lcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/lcircumflexbelow.glif deleted file mode 100644 index db2edd36..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/lcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/lcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/lcommaaccent.glif deleted file mode 100644 index 6bd9ea37..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/lcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ldotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ldotbelow.glif deleted file mode 100644 index adac8e79..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ldotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/llinebelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/llinebelow.glif deleted file mode 100644 index e9d9ffc6..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/llinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/lmacrondotbelow.glif deleted file mode 100644 index b36341ed..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/lmacrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/lslash.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/lslash.glif deleted file mode 100644 index 34606b01..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/lslash.glif +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/macute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/macute.glif deleted file mode 100644 index 4e350eab..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/macute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/mdotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/mdotaccent.glif deleted file mode 100644 index 535319a3..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/mdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/mdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/mdotbelow.glif deleted file mode 100644 index cb17b3c8..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/mdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/middotcat.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/middotcat.glif deleted file mode 100644 index 74122aa6..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/middotcat.glif +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/nacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/nacute.glif deleted file mode 100644 index ba27e168..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/nacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ncaron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ncaron.glif deleted file mode 100644 index 154c2712..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ncaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ncircumflexbelow.glif deleted file mode 100644 index 38407b92..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ncircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ncommaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ncommaaccent.glif deleted file mode 100644 index 5bca2662..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ncommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ndotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ndotaccent.glif deleted file mode 100644 index 91c47c76..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ndotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ndotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ndotbelow.glif deleted file mode 100644 index adff018d..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ngrave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ngrave.glif deleted file mode 100644 index 5a212e2f..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/nine.num.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/nine.num.glif deleted file mode 100644 index 67b40ebf..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/nine.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/nlinebelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/nlinebelow.glif deleted file mode 100644 index c1113f0e..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/nlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ntilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ntilde.glif deleted file mode 100644 index a4377105..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/oacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/oacute.glif deleted file mode 100644 index a87ca051..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/oacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/obreve.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/obreve.glif deleted file mode 100644 index 9d50fb61..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/obreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocaron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocaron.glif deleted file mode 100644 index e412d578..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocircumflex.glif deleted file mode 100644 index aa2cf425..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocircumflexacute.glif deleted file mode 100644 index e12659e4..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocircumflexdotbelow.glif deleted file mode 100644 index 31439fea..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocircumflexgrave.glif deleted file mode 100644 index fad0cb72..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocircumflexhookabove.glif deleted file mode 100644 index 06f6ed24..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocircumflextilde.glif deleted file mode 100644 index 31ad70d2..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ocircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/odieresis.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/odieresis.glif deleted file mode 100644 index 3d61b10f..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/odieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/odotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/odotaccent.glif deleted file mode 100644 index 24834f7d..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/odotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/odotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/odotbelow.glif deleted file mode 100644 index b8af3467..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/odotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/oe.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/oe.glif deleted file mode 100644 index 1ae62a4b..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/oe.glif +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ograve.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ograve.glif deleted file mode 100644 index 39502ecd..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ograve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohookabove.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohookabove.glif deleted file mode 100644 index 5933e5ba..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohorn.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohorn.glif deleted file mode 100644 index e247b7ac..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohorn.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohornacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohornacute.glif deleted file mode 100644 index b50fa34e..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohorndotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohorndotbelow.glif deleted file mode 100644 index 5af08285..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohorndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohorngrave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohorngrave.glif deleted file mode 100644 index 4e08f1f5..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohorngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohornhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohornhookabove.glif deleted file mode 100644 index 70dae60f..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohorntilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohorntilde.glif deleted file mode 100644 index 8011e712..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohorntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohungarumlaut.glif deleted file mode 100644 index b2fae980..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ohungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/omacron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/omacron.glif deleted file mode 100644 index 3cfe4eda..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/omacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/one.num.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/one.num.glif deleted file mode 100644 index 2c736483..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/one.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/oogonek.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/oogonek.glif deleted file mode 100644 index d762bc92..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/oogonek.glif +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/oslash.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/oslash.glif deleted file mode 100644 index 7688bf57..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/oslash.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/otilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/otilde.glif deleted file mode 100644 index 40b21287..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/otilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/racute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/racute.glif deleted file mode 100644 index f56cab38..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/racute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/rcaron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/rcaron.glif deleted file mode 100644 index 7c1081e6..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/rcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/rcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/rcommaaccent.glif deleted file mode 100644 index 74e35ff2..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/rcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/rdotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/rdotaccent.glif deleted file mode 100644 index 0d514b9f..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/rdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/rdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/rdotbelow.glif deleted file mode 100644 index e51ca080..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/rdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ringcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ringcmb.cap.glif deleted file mode 100644 index af5f6f79..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ringcmb.cap.glif +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/rlinebelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/rlinebelow.glif deleted file mode 100644 index 73261da0..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/rlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/rmacrondotbelow.glif deleted file mode 100644 index a8065fbf..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/rmacrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/scedilla.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/scedilla.glif deleted file mode 100644 index e0412a07..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/scedilla.glif +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/schwa.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/schwa.glif deleted file mode 100644 index 8452c60e..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/schwa.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/scircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/scircumflex.glif deleted file mode 100644 index 91919b1e..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/scircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/scommaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/scommaaccent.glif deleted file mode 100644 index 2beff1be..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/scommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/sdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/sdotbelow.glif deleted file mode 100644 index ee866181..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/sdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/seven.num.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/seven.num.glif deleted file mode 100644 index 4a2870c3..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/seven.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/six.num.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/six.num.glif deleted file mode 100644 index 5de7ecf5..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/six.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tbar.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tbar.glif deleted file mode 100644 index e43f6602..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tbar.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tcaron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tcaron.glif deleted file mode 100644 index bc226a82..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tcedilla.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tcedilla.glif deleted file mode 100644 index 827563fd..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tcedilla.glif +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/thorn.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/thorn.glif deleted file mode 100644 index edf8893b..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/thorn.glif +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/three.num.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/three.num.glif deleted file mode 100644 index a260e860..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/three.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/two.num.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/two.num.glif deleted file mode 100644 index 76a642f3..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/two.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uacute.glif deleted file mode 100644 index 908fe21f..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ubreve.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ubreve.glif deleted file mode 100644 index dd693107..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ubreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ucaron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ucaron.glif deleted file mode 100644 index eb88caaf..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ucaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ucircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ucircumflex.glif deleted file mode 100644 index 2bdf1339..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ucircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/udieresis.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/udieresis.glif deleted file mode 100644 index c6a891e9..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/udieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/udieresisacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/udieresisacute.glif deleted file mode 100644 index 03fec78d..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/udieresisacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/udieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/udieresiscaron.glif deleted file mode 100644 index 202c7ecc..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/udieresiscaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/udieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/udieresisgrave.glif deleted file mode 100644 index 22deee31..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/udieresisgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/udieresismacron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/udieresismacron.glif deleted file mode 100644 index 9d78c1c0..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/udieresismacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ugrave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ugrave.glif deleted file mode 100644 index f45fbcfa..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ugrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhookabove.glif deleted file mode 100644 index 24dfadf3..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhorn.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhorn.glif deleted file mode 100644 index bae409eb..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhorn.glif +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhornacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhornacute.glif deleted file mode 100644 index 67b9c732..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhorngrave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhorngrave.glif deleted file mode 100644 index 6dcf561e..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhorngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhornhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhornhookabove.glif deleted file mode 100644 index 3a3f3ade..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhorntilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhorntilde.glif deleted file mode 100644 index e5af70ef..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhorntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhungarumlaut.glif deleted file mode 100644 index 6fc1e0c0..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/umacron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/umacron.glif deleted file mode 100644 index 5e86b3f5..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/umacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uni1E_9E_.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uni1E_9E_.glif deleted file mode 100644 index ce1c7c47..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uni1E_9E_.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uni2011.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uni2011.glif deleted file mode 100644 index cb2d7998..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uni2011.glif +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uogonek.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uogonek.glif deleted file mode 100644 index ad80365d..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uogonek.glif +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uring.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uring.glif deleted file mode 100644 index 06244d91..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/utilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/utilde.glif deleted file mode 100644 index b84d010d..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/utilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/vdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/vdotbelow.glif deleted file mode 100644 index 00f9f759..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/vdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/wacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/wacute.glif deleted file mode 100644 index 6fe74964..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/wacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/wcircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/wcircumflex.glif deleted file mode 100644 index cce418d0..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/wcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/wdieresis.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/wdieresis.glif deleted file mode 100644 index 6868f0a1..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/wdieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/wgrave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/wgrave.glif deleted file mode 100644 index 3b1e8ab0..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/wgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/xdieresis.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/xdieresis.glif deleted file mode 100644 index 47f3dc77..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/xdieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/yacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/yacute.glif deleted file mode 100644 index 037c1b53..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/yacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ycircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ycircumflex.glif deleted file mode 100644 index 236829c9..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ycircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ydieresis.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ydieresis.glif deleted file mode 100644 index da49414a..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ydieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ydotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ydotaccent.glif deleted file mode 100644 index 42484a25..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ydotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ygrave.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ygrave.glif deleted file mode 100644 index dfd75c25..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ygrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/yhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/yhookabove.glif deleted file mode 100644 index 3a536e02..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/yhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ymacron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ymacron.glif deleted file mode 100644 index f4d2ee7b..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ymacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ytilde.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ytilde.glif deleted file mode 100644 index a494e3cd..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ytilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zacute.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zacute.glif deleted file mode 100644 index 25c9cfbc..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zcaron.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zcaron.glif deleted file mode 100644 index e98f26ed..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zcircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zcircumflex.glif deleted file mode 100644 index e7f08b62..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zdotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zdotaccent.glif deleted file mode 100644 index 4799ef18..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zdotbelow.glif deleted file mode 100644 index a2da3878..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zero.num.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zero.num.glif deleted file mode 100644 index eabd1785..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zero.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zlinebelow.glif b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zlinebelow.glif deleted file mode 100644 index 2d4919b9..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/lib.plist b/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/lib.plist deleted file mode 100644 index 6cee22db..00000000 --- a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/lib.plist +++ /dev/null @@ -1,1288 +0,0 @@ - - - - - com.typemytype.robofont.compileSettings.autohint - - com.typemytype.robofont.compileSettings.checkOutlines - - com.typemytype.robofont.compileSettings.createDummyDSIG - - com.typemytype.robofont.compileSettings.decompose - - com.typemytype.robofont.compileSettings.generateFormat - 1 - com.typemytype.robofont.compileSettings.releaseMode - 1 - com.typemytype.robofont.italicSlantOffset - 0 - com.typemytype.robofont.segmentType - curve - com.typemytype.robofont.shouldAddPointsInSplineConversion - 1 - public.glyphOrder - - .notdef - A - B - C - D - E - F - G - H - I - J - K - L - M - N - O - P - Q - R - S - T - U - V - W - X - Y - Z - a - b - c - d - e - f - g - h - i - j - k - l - m - n - o - p - q - r - s - t - u - v - w - x - y - z - period - comma - colon - semicolon - question - exclam - questiondown - exclamdown - ellipsis - twodotleader - quotedblleft - quotedblright - quotedblbase - quoteleft - quoteright - quotesinglbase - guillemetleft - guillemetright - guilsinglleft - guilsinglright - parenleft - parenright - bracketleft - bracketright - braceleft - braceright - slash - backslash - bar - hyphen - endash - emdash - periodcentered - bullet - underscore - ampersand - at - published - copyright - registered - servicemark - trademark - asterisk - dagger - daggerdbl - section - paragraph - zero - one - two - three - four - five - six - seven - eight - nine - colon.fig - plus - divide - minus - equal - notequal - asciitilde - approxequal - multiply - less - greater - lessequal - greaterequal - plusminus - asciicircum - mu - numbersign - percent - quotedbl - quotesingle - ordfeminine - ordmasculine - degree - dollar - sterling - yen - Euro - naira - peso - uni20BA - uni20BD - uni20B9 - bahtthai - won - cent - dong - onehalf - onethird - twothirds - onequarter - threequarters - onefifth - twofifths - threefifths - fourfifths - onesixth - fivesixths - oneeighth - threeeighths - fiveeighths - seveneighths - zero.sup - one.sup - two.sup - three.sup - four.sup - five.sup - six.sup - seven.sup - eight.sup - nine.sup - zero.inf - one.inf - two.inf - three.inf - four.inf - five.inf - six.inf - seven.inf - eight.inf - nine.inf - primemod - dblprimemod - commaturnedmod - apostrophemod - ringhalfleft - ringhalfright - verticallinemod - verticallinelowmod - acute - hungarumlaut - grave - circumflex - caron - breve - tilde - macron - dieresis - dotaccent - ring - uniA788 - macronlowmod - cedilla - ogonek - Aacute - Agrave - Acircumflex - Acircumflexdotbelow - Acircumflexacute - Acircumflexgrave - Acircumflexhookabove - Acircumflextilde - Acaron - Abreve - Abrevedotbelow - Abreveacute - Abrevegrave - Abrevehookabove - Abrevetilde - Atilde - Amacron - Adieresis - Adotaccent - Aring - Ahookabove - Adotbelow - Aogonek - AE - Blinebelow - Cacute - Ccircumflex - Ccaron - Cdotaccent - Ccedilla - Dcaron - Dcircumflexbelow - Dlinebelow - Ddotbelow - Dcroat - Eacute - Egrave - Ecircumflex - Ecircumflexdotbelow - Ecircumflexacute - Ecircumflexgrave - Ecircumflexhookabove - Ecircumflextilde - Ecaron - Ebreve - Etilde - Emacron - Edieresis - Edotaccent - Ehookabove - Edotbelow - Eogonek - Gcircumflex - Gcaron - Gbreve - Gmacron - Gdotaccent - Gcommaaccent - Hcircumflex - Hbrevebelow - Hdotbelow - Hcedilla - Hbar - Iacute - Igrave - Icircumflex - Icaron - Ibreve - Itilde - Imacron - Idieresis - Idotaccent - Ihookabove - Idotbelow - Iogonek - Jcircumflex - Klinebelow - Kcommaaccent - Kdotbelow - Lacute - Lcaron - Lcommaaccent - Lcircumflexbelow - Llinebelow - Lmacrondotbelow - Ldotbelow - L.dot - Lslash - Macute - Mdotaccent - Mdotbelow - Nacute - Ngrave - Ncaron - Ntilde - Ndotaccent - Ncircumflexbelow - Ncommaaccent - Ndotbelow - Nlinebelow - Eng - Oacute - Ohungarumlaut - Ograve - Ocircumflex - Ocircumflexdotbelow - Ocircumflexacute - Ocircumflexgrave - Ocircumflexhookabove - Ocircumflextilde - Ocaron - Obreve - Otilde - Omacron - Odieresis - Odotaccent - Ohookabove - Odotbelow - Oogonek - Oslash - OE - Ohorn - Ohornacute - Ohorngrave - Ohorntilde - Ohornhookabove - Ohorndotbelow - Racute - Rcaron - Rdotaccent - Rmacrondotbelow - Rcommaaccent - Rdotbelow - Rlinebelow - Sacute - Scircumflex - Scaron - Scommaaccent - Sdotbelow - Scedilla - uni1E9E - Tcaron - Tcircumflexbelow - Tcommaaccent - Tdotbelow - Tlinebelow - Tcedilla - Tbar - Uacute - Uhungarumlaut - Ugrave - Ucircumflex - Ucaron - Ubreve - Utilde - Umacron - Udieresis - Udieresisacute - Udieresisgrave - Udieresiscaron - Udieresismacron - Uring - Uhookabove - Udotbelow - Uogonek - Uhorn - Uhornacute - Uhorngrave - Uhorntilde - Uhornhookabove - Uhorndotbelow - Vdotbelow - Wacute - Wgrave - Wcircumflex - Wdieresis - Xdieresis - Yacute - Ygrave - Ycircumflex - Ytilde - Ymacron - Ydieresis - Ydotaccent - Yhookabove - Ydotbelow - Zacute - Zcircumflex - Zcaron - Zdotaccent - Zdotbelow - Zlinebelow - Eth - Thorn - Schwa - aacute - agrave - acircumflex - acircumflexdotbelow - acircumflexacute - acircumflexgrave - acircumflexhookabove - acircumflextilde - acaron - abreve - abrevedotbelow - abreveacute - abrevegrave - abrevehookabove - abrevetilde - atilde - amacron - adieresis - adotaccent - aring - ahookabove - adotbelow - aogonek - ae - blinebelow - cacute - ccircumflex - ccaron - cdotaccent - ccedilla - dcaron - dcircumflexbelow - dlinebelow - ddotbelow - dcroat - eacute - egrave - ecircumflex - ecircumflexdotbelow - ecircumflexacute - ecircumflexgrave - ecircumflexhookabove - ecircumflextilde - ecaron - ebreve - etilde - emacron - edieresis - edotaccent - ehookabove - edotbelow - eogonek - gcircumflex - gcaron - gbreve - gmacron - gdotaccent - gcommaaccent - hcircumflex - hbrevebelow - hlinebelow - hdotbelow - hcedilla - hbar - dotlessi - iacute - igrave - icircumflex - icaron - ibreve - itilde - imacron - idieresis - idotaccent - ihookabove - idotbelow - iogonek - dotlessj - jcircumflex - jcaron - klinebelow - kcommaaccent - kdotbelow - lacute - lcaron - lcommaaccent - lcircumflexbelow - llinebelow - lmacrondotbelow - ldotbelow - l.dot - lslash - macute - mdotaccent - mdotbelow - nacute - ngrave - ncaron - ntilde - ndotaccent - ncircumflexbelow - ncommaaccent - ndotbelow - nlinebelow - eng - oacute - ohungarumlaut - ograve - ocircumflex - ocircumflexdotbelow - ocircumflexacute - ocircumflexgrave - ocircumflexhookabove - ocircumflextilde - ocaron - obreve - otilde - omacron - odieresis - odotaccent - ohookabove - odotbelow - oogonek - oslash - oe - ohorn - ohornacute - ohorngrave - ohorntilde - ohornhookabove - ohorndotbelow - racute - rcaron - rdotaccent - rmacrondotbelow - rcommaaccent - rdotbelow - rlinebelow - sacute - scircumflex - scaron - scommaaccent - sdotbelow - scedilla - germandbls - tcaron - tcircumflexbelow - tcommaaccent - tdotbelow - tlinebelow - tcedilla - tbar - uacute - uhungarumlaut - ugrave - ucircumflex - ucaron - ubreve - utilde - umacron - udieresis - udieresisacute - udieresisgrave - udieresiscaron - udieresismacron - uring - uhookabove - udotbelow - uogonek - uhorn - uhornacute - uhorngrave - uhorntilde - uhornhookabove - uhorndotbelow - vdotbelow - wacute - wgrave - wcircumflex - wdieresis - xdieresis - yacute - ygrave - ycircumflex - ytilde - ymacron - ydieresis - ydotaccent - yhookabove - ydotbelow - zacute - zcircumflex - zcaron - zdotaccent - zdotbelow - zlinebelow - eth - thorn - schwa - space - uni00A0 - zero.num - one.num - two.num - three.num - four.num - five.num - six.num - seven.num - eight.num - nine.num - fraction - fracbar - zero.den - one.den - two.den - three.den - four.den - five.den - six.den - seven.den - eight.den - nine.den - uni2011 - horizontalbar - middotcat - middotcat.cap - acutecmb - hungarumlautcmb - gravecmb - commaaboverightcmb - circumflexcmb - caroncmb - brevecmb - tildecmb - macroncmb - dieresiscmb - dotaccentcmb - ringcmb - commaturnedabovecmb - hookcmb - circumflexbelowcmb - brevebelowcmb - macronbelowcmb - dieresisbelowcmb - dotbelowcmb - uni0326 - cedillacmb - ogonekcmb - dieresisacute - dieresisgrave - dieresiscaron - dieresismacron - breveacute - brevegrave - brevehook - brevetilde - circumflexacute - circumflexgrave - circumflexhook - circumflextilde - acutecmb.cap - hungarumlautcmb.cap - gravecmb.cap - circumflexcmb.cap - caroncmb.cap - brevecmb.cap - tildecmb.cap - macroncmb.cap - dieresiscmb.cap - dotaccentcmb.cap - ringcmb.cap - hookcmb.cap - dieresisacute.cap - dieresisgrave.cap - dieresiscaron.cap - dieresismacron.cap - breveacute.cap - brevegrave.cap - brevehook.cap - brevetilde.cap - circumflexacute.cap - circumflexgrave.cap - circumflexhook.cap - circumflextilde.cap - - public.postscriptNames - - Abreveacute - uni1EAE - Abrevedotbelow - uni1EB6 - Abrevegrave - uni1EB0 - Abrevehookabove - uni1EB2 - Abrevetilde - uni1EB4 - Acaron - uni01CD - Acircumflexacute - uni1EA4 - Acircumflexdotbelow - uni1EAC - Acircumflexgrave - uni1EA6 - Acircumflexhookabove - uni1EA8 - Acircumflextilde - uni1EAA - Adotaccent - uni0226 - Adotbelow - uni1EA0 - Ahookabove - uni1EA2 - Blinebelow - uni1E06 - Dcircumflexbelow - uni1E12 - Ddotbelow - uni1E0C - Dlinebelow - uni1E0E - Ecircumflexacute - uni1EBE - Ecircumflexdotbelow - uni1EC6 - Ecircumflexgrave - uni1EC0 - Ecircumflexhookabove - uni1EC2 - Ecircumflextilde - uni1EC4 - Edotbelow - uni1EB8 - Ehookabove - uni1EBA - Etilde - uni1EBC - Gcommaaccent - uni0122 - Gmacron - uni1E20 - Hbrevebelow - uni1E2A - Hcedilla - uni1E28 - Hdotbelow - uni1E24 - Icaron - uni01CF - Idotbelow - uni1ECA - Ihookabove - uni1EC8 - Kcommaaccent - uni0136 - Kdotbelow - uni1E32 - Klinebelow - uni1E34 - L.dot - Ldot - Lcircumflexbelow - uni1E3C - Lcommaaccent - uni013B - Ldotbelow - uni1E36 - Llinebelow - uni1E3A - Lmacrondotbelow - uni1E38 - Macute - uni1E3E - Mdotaccent - uni1E40 - Mdotbelow - uni1E42 - Ncircumflexbelow - uni1E4A - Ncommaaccent - uni0145 - Ndotaccent - uni1E44 - Ndotbelow - uni1E46 - Ngrave - uni01F8 - Nlinebelow - uni1E48 - Ocaron - uni01D1 - Ocircumflexacute - uni1ED0 - Ocircumflexdotbelow - uni1ED8 - Ocircumflexgrave - uni1ED2 - Ocircumflexhookabove - uni1ED4 - Ocircumflextilde - uni1ED6 - Odotaccent - uni022E - Odotbelow - uni1ECC - Ohookabove - uni1ECE - Ohornacute - uni1EDA - Ohorndotbelow - uni1EE2 - Ohorngrave - uni1EDC - Ohornhookabove - uni1EDE - Ohorntilde - uni1EE0 - Oogonek - uni01EA - Rcommaaccent - uni0156 - Rdotaccent - uni1E58 - Rdotbelow - uni1E5A - Rlinebelow - uni1E5E - Rmacrondotbelow - uni1E5C - Scedilla - uni015E - Schwa - uni018F - Scommaaccent - uni0218 - Sdotbelow - uni1E62 - Tcedilla - uni0162 - Tcircumflexbelow - uni1E70 - Tcommaaccent - uni021A - Tdotbelow - uni1E6C - Tlinebelow - uni1E6E - Ucaron - uni01D3 - Udieresisacute - uni01D7 - Udieresiscaron - uni01D9 - Udieresisgrave - uni01DB - Udieresismacron - uni01D5 - Udotbelow - uni1EE4 - Uhookabove - uni1EE6 - Uhornacute - uni1EE8 - Uhorndotbelow - uni1EF0 - Uhorngrave - uni1EEA - Uhornhookabove - uni1EEC - Uhorntilde - uni1EEE - Vdotbelow - uni1E7E - Xdieresis - uni1E8C - Ydotaccent - uni1E8E - Ydotbelow - uni1EF4 - Yhookabove - uni1EF6 - Ymacron - uni0232 - Ytilde - uni1EF8 - Zcircumflex - uni1E90 - Zdotbelow - uni1E92 - Zlinebelow - uni1E94 - abreveacute - uni1EAF - abrevedotbelow - uni1EB7 - abrevegrave - uni1EB1 - abrevehookabove - uni1EB3 - abrevetilde - uni1EB5 - acaron - uni01CE - acircumflexacute - uni1EA5 - acircumflexdotbelow - uni1EAD - acircumflexgrave - uni1EA7 - acircumflexhookabove - uni1EA9 - acircumflextilde - uni1EAB - acutecmb - uni0301 - acutecmb.cap - uni0301.cap - adotaccent - uni0227 - adotbelow - uni1EA1 - ahookabove - uni1EA3 - apostrophemod - uni02BC - bahtthai - uni0E3F - blinebelow - uni1E07 - breveacute - uni02D80301 - breveacute.cap - uni02D80301.cap - brevebelowcmb - uni032E - brevecmb - uni0306 - brevecmb.cap - uni0306.cap - brevegrave - uni02D80300 - brevegrave.cap - uni02D80300.cap - brevehook - uni02D80309 - brevehook.cap - uni02D80309.cap - brevetilde - uni02D80303 - brevetilde.cap - uni02D80303.cap - caroncmb - uni030C - caroncmb.cap - uni030C.cap - cedillacmb - uni0327 - circumflexacute - uni02C60301 - circumflexacute.cap - uni02C60301.cap - circumflexbelowcmb - uni032D - circumflexcmb - uni0302 - circumflexcmb.cap - uni0302.cap - circumflexgrave - uni02C60300 - circumflexgrave.cap - uni02C60300.cap - circumflexhook - uni02C60309 - circumflexhook.cap - uni02C60309.cap - circumflextilde - uni02C60303 - circumflextilde.cap - uni02C60303.cap - commaaboverightcmb - uni0315 - commaturnedabovecmb - uni0312 - commaturnedmod - uni02BB - dblprimemod - uni02BA - dcircumflexbelow - uni1E13 - ddotbelow - uni1E0D - dieresisacute - uni00A80301 - dieresisacute.cap - uni00A80301.cap - dieresisbelowcmb - uni0324 - dieresiscaron - uni00A8030C - dieresiscaron.cap - uni00A8030C.cap - dieresiscmb - uni0308 - dieresiscmb.cap - uni0308.cap - dieresisgrave - uni00A80300 - dieresisgrave.cap - uni00A80300.cap - dieresismacron - uni00A80304 - dieresismacron.cap - uni00A80304.cap - dlinebelow - uni1E0F - dotaccentcmb - uni0307 - dotaccentcmb.cap - uni0307.cap - dotbelowcmb - uni0323 - dotlessj - uni0237 - ecircumflexacute - uni1EBF - ecircumflexdotbelow - uni1EC7 - ecircumflexgrave - uni1EC1 - ecircumflexhookabove - uni1EC3 - ecircumflextilde - uni1EC5 - edotbelow - uni1EB9 - ehookabove - uni1EBB - etilde - uni1EBD - gcommaaccent - uni0123 - gmacron - uni1E21 - gravecmb - uni0300 - gravecmb.cap - uni0300.cap - guillemetleft - uni00AB - guillemetright - uni00BB - hbrevebelow - uni1E2B - hcedilla - uni1E29 - hdotbelow - uni1E25 - hlinebelow - uni1E96 - hookcmb - uni0309 - hookcmb.cap - uni0309.cap - horizontalbar - uni2015 - hungarumlautcmb - uni030B - hungarumlautcmb.cap - uni030B.cap - icaron - uni01D0 - idotaccent - i.dot - idotbelow - uni1ECB - ihookabove - uni1EC9 - jcaron - uni01F0 - kcommaaccent - uni0137 - kdotbelow - uni1E33 - klinebelow - uni1E35 - l.dot - ldot - lcircumflexbelow - uni1E3D - lcommaaccent - uni013C - ldotbelow - uni1E37 - llinebelow - uni1E3B - lmacrondotbelow - uni1E39 - macronbelowcmb - uni0331 - macroncmb - uni0304 - macroncmb.cap - uni0304.cap - macronlowmod - uni02CD - macute - uni1E3F - mdotaccent - uni1E41 - mdotbelow - uni1E43 - naira - uni20A6 - ncircumflexbelow - uni1E4B - ncommaaccent - uni0146 - ndotaccent - uni1E45 - ndotbelow - uni1E47 - ngrave - uni01F9 - nlinebelow - uni1E49 - ocaron - uni01D2 - ocircumflexacute - uni1ED1 - ocircumflexdotbelow - uni1ED9 - ocircumflexgrave - uni1ED3 - ocircumflexhookabove - uni1ED5 - ocircumflextilde - uni1ED7 - odotaccent - uni022F - odotbelow - uni1ECD - ogonekcmb - uni0328 - ohookabove - uni1ECF - ohornacute - uni1EDB - ohorndotbelow - uni1EE3 - ohorngrave - uni1EDD - ohornhookabove - uni1EDF - ohorntilde - uni1EE1 - oogonek - uni01EB - peso - uni20B1 - primemod - uni02B9 - published - uni2117 - rcommaaccent - uni0157 - rdotaccent - uni1E59 - rdotbelow - uni1E5B - ringcmb - uni030A - ringcmb.cap - uni030A.cap - ringhalfleft - uni02BF - ringhalfright - uni02BE - rlinebelow - uni1E5F - rmacrondotbelow - uni1E5D - scedilla - uni015F - schwa - uni0259 - scommaaccent - uni0219 - sdotbelow - uni1E63 - servicemark - uni2120 - tcedilla - uni0163 - tcircumflexbelow - uni1E71 - tcommaaccent - uni021B - tdotbelow - uni1E6D - tildecmb - uni0303 - tildecmb.cap - uni0303.cap - tlinebelow - uni1E6F - twodotleader - uni2025 - ucaron - uni01D4 - udieresisacute - uni01D8 - udieresiscaron - uni01DA - udieresisgrave - uni01DC - udieresismacron - uni01D6 - udotbelow - uni1EE5 - uhookabove - uni1EE7 - uhornacute - uni1EE9 - uhorndotbelow - uni1EF1 - uhorngrave - uni1EEB - uhornhookabove - uni1EED - uhorntilde - uni1EEF - uni1E9E - uni1E9E - vdotbelow - uni1E7F - verticallinelowmod - uni02CC - verticallinemod - uni02C8 - won - uni20A9 - xdieresis - uni1E8D - ydotaccent - uni1E8F - ydotbelow - uni1EF5 - yhookabove - uni1EF7 - ymacron - uni0233 - ytilde - uni1EF9 - zcircumflex - uni1E91 - zdotbelow - uni1E93 - zlinebelow - uni1E95 - - - diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/features.fea b/sources/instances/truetype/IntelOneMono-Medium.ufo/features.fea new file mode 100644 index 00000000..288197ba --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/features.fea @@ -0,0 +1,6 @@ + +include(../../features/shared.fea); + +include(../../features/mark/IntelOneMono-Medium mark.fea); + +include(../../features/aalt.fea); diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/fontinfo.plist b/sources/instances/truetype/IntelOneMono-Medium.ufo/fontinfo.plist new file mode 100644 index 00000000..2a8ff2bb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/fontinfo.plist @@ -0,0 +1,408 @@ + + + + + ascender + 740 + capHeight + 655 + copyright + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + descender + -260 + familyName + Intel One Mono + guidelines + + italicAngle + 0.0 + openTypeHeadFlags + + 0 + 1 + + openTypeHheaAscender + 1090 + openTypeHheaDescender + -290 + openTypeHheaLineGap + 0 + openTypeNameDesigner + Fred Shallcrass + openTypeNameDesignerURL + http://frerejones.com + openTypeNameLicense + This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL + openTypeNameLicenseURL + https://github.com/intel/intel-one-mono/blob/main/license + openTypeNameManufacturer + Frere-Jones Type LLC + openTypeNameManufacturerURL + http://frerejones.com + openTypeNamePreferredFamilyName + Intel One Mono + openTypeNamePreferredSubfamilyName + Medium + openTypeNameRecords + + + encodingID + 0 + languageID + 0 + nameID + 0 + platformID + 1 + string + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + + + encodingID + 1 + languageID + 1033 + nameID + 0 + platformID + 3 + string + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + + + encodingID + 0 + languageID + 0 + nameID + 1 + platformID + 1 + string + Intel One Mono Medium + + + encodingID + 1 + languageID + 1033 + nameID + 1 + platformID + 3 + string + Intel One Mono Medium + + + encodingID + 0 + languageID + 0 + nameID + 2 + platformID + 1 + string + Regular + + + encodingID + 1 + languageID + 1033 + nameID + 2 + platformID + 3 + string + Regular + + + encodingID + 0 + languageID + 0 + nameID + 4 + platformID + 1 + string + Intel One Mono Medium + + + encodingID + 1 + languageID + 1033 + nameID + 4 + platformID + 3 + string + Intel One Mono Medium + + + encodingID + 0 + languageID + 0 + nameID + 6 + platformID + 1 + string + IntelOneMono-Medium + + + encodingID + 1 + languageID + 1033 + nameID + 6 + platformID + 3 + string + IntelOneMono-Medium + + + encodingID + 0 + languageID + 0 + nameID + 8 + platformID + 1 + string + Frere-Jones Type LLC + + + encodingID + 1 + languageID + 1033 + nameID + 8 + platformID + 3 + string + Frere-Jones Type LLC + + + encodingID + 0 + languageID + 0 + nameID + 9 + platformID + 1 + string + Fred Shallcrass + + + encodingID + 1 + languageID + 1033 + nameID + 9 + platformID + 3 + string + Fred Shallcrass + + + encodingID + 0 + languageID + 0 + nameID + 11 + platformID + 1 + string + http://frerejones.com + + + encodingID + 1 + languageID + 1033 + nameID + 11 + platformID + 3 + string + http://frerejones.com + + + encodingID + 0 + languageID + 0 + nameID + 12 + platformID + 1 + string + http://frerejones.com + + + encodingID + 1 + languageID + 1033 + nameID + 12 + platformID + 3 + string + http://frerejones.com + + + encodingID + 1 + languageID + 1033 + nameID + 16 + platformID + 3 + string + Intel One Mono + + + encodingID + 1 + languageID + 1033 + nameID + 17 + platformID + 3 + string + Medium + + + openTypeOS2CodePageRanges + + 0 + 1 + 4 + 7 + 8 + 29 + + openTypeOS2Panose + + 2 + 11 + 7 + 9 + 2 + 2 + 3 + 2 + 2 + 4 + + openTypeOS2Selection + + 7 + 8 + + openTypeOS2StrikeoutPosition + 286 + openTypeOS2StrikeoutSize + 50 + openTypeOS2Type + + openTypeOS2TypoAscender + 1090 + openTypeOS2TypoDescender + -290 + openTypeOS2TypoLineGap + 0 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 29 + 32 + + openTypeOS2VendorID + FRJN + openTypeOS2WeightClass + 500 + openTypeOS2WidthClass + 5 + openTypeOS2WinAscent + 1090 + openTypeOS2WinDescent + 290 + postscriptBlueFuzz + 0 + postscriptBlueScale + 0.05 + postscriptBlueValues + + -15 + 0 + 471 + 486 + 655 + 670 + 710 + 725 + + postscriptDefaultWidthX + 614 + postscriptFamilyBlues + + postscriptFamilyOtherBlues + + postscriptFontName + IntelOneMono-Medium + postscriptForceBold + + postscriptFullName + Intel One Mono Medium + postscriptIsFixedPitch + + postscriptOtherBlues + + -245 + -230 + + postscriptStemSnapH + + 94 + + postscriptStemSnapV + + 112 + 116 + + postscriptUnderlinePosition + -75 + postscriptUnderlineThickness + 50 + styleMapFamilyName + Intel One Mono Medium + styleMapStyleName + regular + styleName + Medium + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 4 + xHeight + 471 + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_E_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_E_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_E_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_E_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_acute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_acute.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_breve.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_breve.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_breveacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_breveacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_breveacute.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_breveacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_brevedotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_brevedotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_brevedotbelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_brevedotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_brevegrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_brevegrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_brevegrave.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_brevegrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_brevehookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_brevehookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_brevehookabove.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_brevehookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_brevetilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_brevetilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_brevetilde.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_brevetilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_caron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_caron.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_circumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_circumflexdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_circumflexdotbelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_circumflexdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_circumflexhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_circumflexhookabove.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_circumflexhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_circumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_circumflextilde.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_circumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_dieresis.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_dieresis.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_grave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_grave.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_hookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_hookabove.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_macron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_macron.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_ogonek.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_ogonek.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_ring.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_ring.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_ring.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_ring.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_tilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/A_tilde.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/A_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/B_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/B_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/B_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/B_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/B_linebelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/B_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/B_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/B_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/C_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/C_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/C_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/C_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/C_acute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/C_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/C_acute.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/C_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/C_caron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/C_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/C_caron.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/C_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/C_cedilla.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/C_cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/C_cedilla.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/C_cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/C_circumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/C_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/C_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/C_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/C_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/C_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/C_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/C_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/D_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/D_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/D_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/D_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/D_caron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/D_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/D_caron.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/D_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/D_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/D_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/D_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/D_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/D_croat.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/D_croat.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/D_croat.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/D_croat.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/D_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/D_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/D_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/D_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/D_linebelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/D_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/D_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/D_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_acute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_acute.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_breve.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_breve.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_caron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_caron.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_circumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_circumflexdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_circumflexdotbelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_circumflexdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_circumflexhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_circumflexhookabove.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_circumflexhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_circumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_circumflextilde.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_circumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_dieresis.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_dieresis.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_grave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_grave.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_hookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_hookabove.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_macron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_macron.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_ng.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_ng.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_ng.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_ng.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_ogonek.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_ogonek.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_th.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_th.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_th.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_th.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_tilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_tilde.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_uro.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_uro.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/E_uro.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/E_uro.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/F_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/F_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/F_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/F_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/G_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/G_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/G_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/G_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/G_breve.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/G_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/G_breve.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/G_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/G_caron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/G_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/G_caron.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/G_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/G_circumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/G_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/G_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/G_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/G_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/G_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/G_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/G_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/G_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/G_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/G_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/G_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/G_macron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/G_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/G_macron.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/G_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/H_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/H_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/H_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/H_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/H_bar.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/H_bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/H_bar.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/H_bar.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/H_brevebelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/H_brevebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/H_brevebelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/H_brevebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/H_cedilla.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/H_cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/H_cedilla.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/H_cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/H_circumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/H_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/H_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/H_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/H_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/H_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/H_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/H_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_acute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_acute.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_breve.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_breve.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_caron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_caron.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_circumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_dieresis.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_dieresis.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_grave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_grave.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_hookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_hookabove.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_macron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_macron.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_ogonek.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_ogonek.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_tilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/I_tilde.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/I_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/J_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/J_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/J_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/J_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/J_circumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/J_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/J_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/J_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/K_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/K_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/K_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/K_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/K_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/K_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/K_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/K_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/K_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/K_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/K_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/K_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/K_linebelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/K_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/K_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/K_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_.dot.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_.dot.glif new file mode 100644 index 00000000..3baf366d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_.dot.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + public.objectLibs + + component0 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + component1 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + component2 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + + public.truetype.overlap + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_acute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_acute.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_caron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_caron.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_linebelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_macrondotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_macrondotbelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_macrondotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_slash.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_slash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/L_slash.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/L_slash.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/M_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/M_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/M_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/M_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/M_acute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/M_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/M_acute.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/M_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/M_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/M_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/M_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/M_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/M_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/M_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/M_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/M_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/N_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/N_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/N_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/N_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/N_acute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/N_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/N_acute.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/N_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/N_caron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/N_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/N_caron.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/N_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/N_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/N_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/N_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/N_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/N_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/N_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/N_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/N_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/N_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/N_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/N_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/N_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/N_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/N_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/N_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/N_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/N_grave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/N_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/N_grave.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/N_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/N_linebelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/N_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/N_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/N_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/N_tilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/N_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/N_tilde.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/N_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_E_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..297fdb3f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_E_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_acute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_acute.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_breve.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..20a13237 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_breve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_caron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_caron.glif new file mode 100644 index 00000000..9ca1ee6d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_circumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..f5e5ed00 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_circumflexacute.glif new file mode 100644 index 00000000..3d0d348a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_circumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_circumflexdotbelow.glif new file mode 100644 index 00000000..a9de3d36 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_circumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_circumflexgrave.glif new file mode 100644 index 00000000..8efd59bd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_circumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_circumflexhookabove.glif new file mode 100644 index 00000000..20c0661d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_circumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_circumflextilde.glif new file mode 100644 index 00000000..0ff6b581 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_circumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_dieresis.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..1a7cd345 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_dotaccent.glif new file mode 100644 index 00000000..8a84259c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_dotbelow.glif new file mode 100644 index 00000000..328b2629 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_grave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_grave.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_hookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_hookabove.glif new file mode 100644 index 00000000..57af63f0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_horn.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_horn.glif new file mode 100644 index 00000000..f29e7d2e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_horn.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_hornacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_hornacute.glif new file mode 100644 index 00000000..e4033ea8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_hornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_horndotbelow.glif new file mode 100644 index 00000000..93878b8d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_horndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_horngrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_horngrave.glif new file mode 100644 index 00000000..8291aefe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_horngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_hornhookabove.glif new file mode 100644 index 00000000..8ddccec2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_hornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_horntilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_horntilde.glif new file mode 100644 index 00000000..b4b5bac4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_horntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_hungarumlaut.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/O_hungarumlaut.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_hungarumlaut.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_macron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..f30b2c49 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_ogonek.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_ogonek.glif new file mode 100644 index 00000000..7198def8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_ogonek.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_slash.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..fb495f54 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_slash.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_tilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..bca62047 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/O_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/P_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/P_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/P_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/P_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Q_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Q_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Q_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Q_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/R_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_acute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..e36cebd5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_caron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..df9cb944 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..7dae30f1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_dotaccent.glif new file mode 100644 index 00000000..c7e23a35 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_dotbelow.glif new file mode 100644 index 00000000..67e350bf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_linebelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_linebelow.glif new file mode 100644 index 00000000..fd43f879 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_macrondotbelow.glif new file mode 100644 index 00000000..34fe1af3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/R_macrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/S_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_acute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..97ad10fa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_caron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..e34d329d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_cedilla.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..bbcba0c9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_chwa.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..f51e5c83 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_chwa.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_circumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..f82e9b4b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..38972fa8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_dotbelow.glif new file mode 100644 index 00000000..8393fc9b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/S_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_bar.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/T_bar.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_bar.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_caron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..23d20008 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_cedilla.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..f59b0f86 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_circumflexbelow.glif new file mode 100644 index 00000000..04e62723 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_circumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..8efd5833 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_dotbelow.glif new file mode 100644 index 00000000..3d102e5d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_horn.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..294f46d8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_horn.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_linebelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_linebelow.glif new file mode 100644 index 00000000..7c07de34 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/T_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/U_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_acute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..b0b6e168 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_breve.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..9eba3d7f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_breve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_caron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_caron.glif new file mode 100644 index 00000000..be0f3c37 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_circumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..56808f64 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_dieresis.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..c558bf10 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_dieresisacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_dieresisacute.glif new file mode 100644 index 00000000..e5cbbe3c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_dieresisacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_dieresiscaron.glif new file mode 100644 index 00000000..dc2ff1ac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_dieresiscaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_dieresisgrave.glif new file mode 100644 index 00000000..b227a449 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_dieresisgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_dieresismacron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_dieresismacron.glif new file mode 100644 index 00000000..3d8c49b3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_dieresismacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_dotbelow.glif new file mode 100644 index 00000000..d2f0ef86 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_grave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..debff763 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_hookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_hookabove.glif new file mode 100644 index 00000000..fccb10eb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_horn.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_horn.glif new file mode 100644 index 00000000..256fa52b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_horn.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_hornacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_hornacute.glif new file mode 100644 index 00000000..7e948009 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_hornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_horndotbelow.glif new file mode 100644 index 00000000..eb199a1c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_horndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_horngrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_horngrave.glif new file mode 100644 index 00000000..e2fae54b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_horngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_hornhookabove.glif new file mode 100644 index 00000000..fd1cf394 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_hornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_horntilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_horntilde.glif new file mode 100644 index 00000000..a348994a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_horntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..f97071b4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_macron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..f40fd627 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_ogonek.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..f9353762 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_ring.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..f5aa731d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_ring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_tilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..7a348d5c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/U_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/V_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/V_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/V_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/V_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/V_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/V_dotbelow.glif new file mode 100644 index 00000000..4c72e054 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/V_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/W_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/W_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/W_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/W_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/W_acute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..e279689d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/W_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/W_circumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..0593fed6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/W_dieresis.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..a513fa2d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/W_grave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..b7532bf3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/W_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/X_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/X_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/X_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/X_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/X_dieresis.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/X_dieresis.glif new file mode 100644 index 00000000..58ed5e6a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/X_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Y_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_acute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..5436f1ae --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_circumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..e211543c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_dieresis.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..2509e710 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_dotaccent.glif new file mode 100644 index 00000000..f74cfd00 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_dotbelow.glif new file mode 100644 index 00000000..e4ce370f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_grave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_grave.glif new file mode 100644 index 00000000..5a38998b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_hookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_hookabove.glif new file mode 100644 index 00000000..6aa16c3c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_macron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_macron.glif new file mode 100644 index 00000000..2358b36f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_tilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_tilde.glif new file mode 100644 index 00000000..b22db90f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Y_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Z_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Z_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Z_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Z_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Z_acute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..975288b5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Z_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Z_caron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..5396347b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Z_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Z_circumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Z_circumflex.glif new file mode 100644 index 00000000..be6ce3ba --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Z_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Z_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..8fefa51f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Z_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Z_dotbelow.glif new file mode 100644 index 00000000..e2035aaf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Z_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Z_linebelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Z_linebelow.glif new file mode 100644 index 00000000..77e97d04 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/Z_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/_notdef.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/_notdef.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/_notdef.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/_notdef.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/a.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/a.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/a.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/a.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/aacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..8095af24 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/aacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/abreve.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..e51f73d4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/abreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/abreveacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/abreveacute.glif new file mode 100644 index 00000000..379db7e1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/abreveacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/abrevedotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/abrevedotbelow.glif new file mode 100644 index 00000000..1d0995ef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/abrevedotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/abrevegrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/abrevegrave.glif new file mode 100644 index 00000000..2abf44b1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/abrevegrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/abrevehookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/abrevehookabove.glif new file mode 100644 index 00000000..4abf8c74 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/abrevehookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/abrevetilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/abrevetilde.glif new file mode 100644 index 00000000..0ac22d93 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/abrevetilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acaron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..41311b8a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..6cbf7afe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acircumflexacute.glif new file mode 100644 index 00000000..ce44730c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acircumflexdotbelow.glif new file mode 100644 index 00000000..b129b272 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acircumflexgrave.glif new file mode 100644 index 00000000..719a8b86 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acircumflexhookabove.glif new file mode 100644 index 00000000..09d4cda0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acircumflextilde.glif new file mode 100644 index 00000000..f0fbbab2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acute.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acutecmb.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acutecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acutecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acutecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acutecmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acutecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/acutecmb.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/acutecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/adieresis.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..d507b64c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/adieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/adotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/adotaccent.glif new file mode 100644 index 00000000..58df4b9a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/adotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/adotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/adotbelow.glif new file mode 100644 index 00000000..68a4d7cf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/adotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ae.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ae.glif new file mode 100644 index 00000000..6e1e7c5a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ae.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/agrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..ec66c352 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/agrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ahookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ahookabove.glif new file mode 100644 index 00000000..b1bb21a0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ahookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/amacron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..538ddb4c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/amacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ampersand.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ampersand.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ampersand.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ampersand.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ampersand_ampersand.liga.glif new file mode 100644 index 00000000..1c6899f2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ampersand_ampersand.liga.glif @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/aogonek.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..28b2cc0e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/aogonek.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/apostrophemod.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/apostrophemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/apostrophemod.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/apostrophemod.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/approxequal.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/approxequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/approxequal.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/approxequal.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/aring.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/aring.glif new file mode 100644 index 00000000..735bf814 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/aring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/asciicircum.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciicircum.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/asciicircum.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciicircum.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciicircum_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciicircum_equal.liga.glif new file mode 100644 index 00000000..56d8675c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciicircum_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/asciitilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciitilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/asciitilde.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciitilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..a8f55942 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciitilde_asciitilde.liga.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciitilde_asciitilde_greater.glif new file mode 100644 index 00000000..0f0b09f9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciitilde_asciitilde_greater.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciitilde_at.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciitilde_at.liga.glif new file mode 100644 index 00000000..5e3a605d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciitilde_at.liga.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciitilde_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciitilde_greater.liga.glif new file mode 100644 index 00000000..87dcc30a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciitilde_greater.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciitilde_hyphen.liga.glif new file mode 100644 index 00000000..3c59f342 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asciitilde_hyphen.liga.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/asterisk.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asterisk.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/asterisk.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asterisk.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asterisk_asterisk.liga.glif new file mode 100644 index 00000000..5bc18e50 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asterisk_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif new file mode 100644 index 00000000..6f072acf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asterisk_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asterisk_greater.liga.glif new file mode 100644 index 00000000..ccc8138c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asterisk_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asterisk_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asterisk_slash.liga.glif new file mode 100644 index 00000000..71046ba6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/asterisk_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/at.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/at.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/at.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/at.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/atilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..288d075c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/atilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/b.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/b.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/b.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/b.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/backslash.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/backslash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/backslash.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/backslash.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/backslash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/backslash_slash.liga.glif new file mode 100644 index 00000000..62653629 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/backslash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/bahtthai.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bahtthai.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/bahtthai.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bahtthai.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/bar.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/bar.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar.liga.glif new file mode 100644 index 00000000..6e09a289 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_bar.liga.glif new file mode 100644 index 00000000..dc1b5564 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_bar.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_bar_greater.liga.glif new file mode 100644 index 00000000..136f15f6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_bar_greater.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_equal.liga.glif new file mode 100644 index 00000000..adf04f6c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_equal.start.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_equal.start.glif new file mode 100644 index 00000000..faed63fd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_greater.liga.glif new file mode 100644 index 00000000..e5c301f3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_greater.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_hyphen.liga.glif new file mode 100644 index 00000000..452925e0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_hyphen.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_hyphen.start.glif new file mode 100644 index 00000000..f3219ea5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bar_hyphen.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_braceright.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_braceright.liga.glif new file mode 100644 index 00000000..bbae9f6d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_braceright.liga.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bracketright.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bracketright.liga.glif new file mode 100644 index 00000000..34001aa5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_bracketright.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_equal.liga.glif new file mode 100644 index 00000000..c2261396 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_equal.start.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_equal.start.glif new file mode 100644 index 00000000..eec2c7ed --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_greater.liga.glif new file mode 100644 index 00000000..6f7de0dc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_hyphen.liga.glif new file mode 100644 index 00000000..de47a208 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_hyphen.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_hyphen.start.glif new file mode 100644 index 00000000..7ddda271 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bar_hyphen.start.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/blinebelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/blinebelow.glif new file mode 100644 index 00000000..3b36c1d4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/blinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/braceleft.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/braceleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/braceleft.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/braceleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/braceleft_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/braceleft_bar.liga.glif new file mode 100644 index 00000000..33b291b7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/braceleft_bar.liga.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/braceright.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/braceright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/braceright.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/braceright.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/bracketleft.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bracketleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/bracketleft.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bracketleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bracketleft_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bracketleft_bar.liga.glif new file mode 100644 index 00000000..b1803fc1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bracketleft_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/bracketright.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bracketright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/bracketright.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bracketright.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bracketright_numbersign.liga.glif new file mode 100644 index 00000000..0e1c3ca7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bracketright_numbersign.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/breve.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/breve.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/breveacute.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/breveacute.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/breveacute.cap.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/breveacute.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/breveacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/breveacute.glif new file mode 100644 index 00000000..2d513754 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/breveacute.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevebelowcmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevebelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevebelowcmb.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevebelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevecmb.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevecmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevecmb.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevegrave.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevegrave.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevegrave.cap.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevegrave.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevegrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevegrave.glif new file mode 100644 index 00000000..394bad3d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevegrave.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevehook.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevehook.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevehook.cap.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevehook.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevehook.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevehook.glif new file mode 100644 index 00000000..1cc36d3f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevehook.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevetilde.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevetilde.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/brevetilde.cap.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevetilde.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevetilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevetilde.glif new file mode 100644 index 00000000..82b00fcd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/brevetilde.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/bullet.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bullet.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/bullet.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/bullet.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/c.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/c.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/c.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/c.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/cacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..91178513 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/cacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/caron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/caron.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/caroncmb.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/caroncmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/caroncmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/caroncmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/caroncmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/caroncmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/caroncmb.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/caroncmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ccaron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..1a31d365 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ccaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ccedilla.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..f475216d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ccedilla.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ccircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..bf57a1f5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/cdotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..9e22af8d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/cedilla.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/cedilla.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/cedillacmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/cedillacmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/cedillacmb.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/cedillacmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/cent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/cent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/cent.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/cent.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflex.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflexacute.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflexacute.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflexacute.cap.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflexacute.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflexbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflexbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflexbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflexbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflexcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflexcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflexcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflexcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflexcmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflexcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflexcmb.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflexcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflexgrave.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflexgrave.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflexgrave.cap.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflexgrave.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflexhook.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflexhook.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflexhook.cap.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflexhook.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflexhook.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflexhook.glif new file mode 100644 index 00000000..726717da --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflexhook.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflextilde.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflextilde.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/circumflextilde.cap.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflextilde.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflextilde.glif new file mode 100644 index 00000000..f305fa29 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/circumflextilde.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/colon.fig.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon.fig.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/colon.fig.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon.fig.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/colon.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/colon.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon_colon.liga.glif new file mode 100644 index 00000000..513ec73c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon_colon_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon_colon_colon.liga.glif new file mode 100644 index 00000000..4de5a363 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon_colon_colon.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon_colon_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon_colon_equal.liga.glif new file mode 100644 index 00000000..5349b495 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon_colon_equal.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon_equal.liga.glif new file mode 100644 index 00000000..a25ba221 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon_greater.liga.glif new file mode 100644 index 00000000..595cbffb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon_greater.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon_less.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon_less.liga.glif new file mode 100644 index 00000000..1ddf4d15 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/colon_less.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/comma.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/comma.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/comma.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/comma.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/commaaboverightcmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/commaaboverightcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/commaaboverightcmb.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/commaaboverightcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/commaturnedabovecmb.glif new file mode 100644 index 00000000..b817f36f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/commaturnedabovecmb.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/commaturnedmod.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/commaturnedmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/commaturnedmod.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/commaturnedmod.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/contents.plist b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/contents.plist new file mode 100644 index 00000000..10a2ded8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/contents.plist @@ -0,0 +1,2092 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + AE + A_E_.glif + Aacute + A_acute.glif + Abreve + A_breve.glif + Abreveacute + A_breveacute.glif + Abrevedotbelow + A_brevedotbelow.glif + Abrevegrave + A_brevegrave.glif + Abrevehookabove + A_brevehookabove.glif + Abrevetilde + A_brevetilde.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflexacute + A_circumflexacute.glif + Acircumflexdotbelow + A_circumflexdotbelow.glif + Acircumflexgrave + A_circumflexgrave.glif + Acircumflexhookabove + A_circumflexhookabove.glif + Acircumflextilde + A_circumflextilde.glif + Adieresis + A_dieresis.glif + Adotaccent + A_dotaccent.glif + Adotbelow + A_dotbelow.glif + Agrave + A_grave.glif + Ahookabove + A_hookabove.glif + Amacron + A_macron.glif + Aogonek + A_ogonek.glif + Aring + A_ring.glif + Atilde + A_tilde.glif + B + B_.glif + Blinebelow + B_linebelow.glif + C + C_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + D + D_.glif + Dcaron + D_caron.glif + Dcircumflexbelow + D_circumflexbelow.glif + Dcroat + D_croat.glif + Ddotbelow + D_dotbelow.glif + Dlinebelow + D_linebelow.glif + E + E_.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Ecircumflexacute + E_circumflexacute.glif + Ecircumflexdotbelow + E_circumflexdotbelow.glif + Ecircumflexgrave + E_circumflexgrave.glif + Ecircumflexhookabove + E_circumflexhookabove.glif + Ecircumflextilde + E_circumflextilde.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Edotbelow + E_dotbelow.glif + Egrave + E_grave.glif + Ehookabove + E_hookabove.glif + Emacron + E_macron.glif + Eng + E_ng.glif + Eogonek + E_ogonek.glif + Eth + E_th.glif + Etilde + E_tilde.glif + Euro + E_uro.glif + F + F_.glif + G + G_.glif + Gbreve + G_breve.glif + Gcaron + G_caron.glif + Gcircumflex + G_circumflex.glif + Gcommaaccent + G_commaaccent.glif + Gdotaccent + G_dotaccent.glif + Gmacron + G_macron.glif + H + H_.glif + Hbar + H_bar.glif + Hbrevebelow + H_brevebelow.glif + Hcedilla + H_cedilla.glif + Hcircumflex + H_circumflex.glif + Hdotbelow + H_dotbelow.glif + I + I_.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icaron + I_caron.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idotaccent + I_dotaccent.glif + Idotbelow + I_dotbelow.glif + Igrave + I_grave.glif + Ihookabove + I_hookabove.glif + Imacron + I_macron.glif + Iogonek + I_ogonek.glif + Itilde + I_tilde.glif + J + J_.glif + Jcircumflex + J_circumflex.glif + K + K_.glif + Kcommaaccent + K_commaaccent.glif + Kdotbelow + K_dotbelow.glif + Klinebelow + K_linebelow.glif + L + L_.glif + L.dot + L_.dot.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcircumflexbelow + L_circumflexbelow.glif + Lcommaaccent + L_commaaccent.glif + Ldotbelow + L_dotbelow.glif + Llinebelow + L_linebelow.glif + Lmacrondotbelow + L_macrondotbelow.glif + Lslash + L_slash.glif + M + M_.glif + Macute + M_acute.glif + Mdotaccent + M_dotaccent.glif + Mdotbelow + M_dotbelow.glif + N + N_.glif + Nacute + N_acute.glif + Ncaron + N_caron.glif + Ncircumflexbelow + N_circumflexbelow.glif + Ncommaaccent + N_commaaccent.glif + Ndotaccent + N_dotaccent.glif + Ndotbelow + N_dotbelow.glif + Ngrave + N_grave.glif + Nlinebelow + N_linebelow.glif + Ntilde + N_tilde.glif + O + O_.glif + OE + O_E_.glif + Oacute + O_acute.glif + Obreve + O_breve.glif + Ocaron + O_caron.glif + Ocircumflex + O_circumflex.glif + Ocircumflexacute + O_circumflexacute.glif + Ocircumflexdotbelow + O_circumflexdotbelow.glif + Ocircumflexgrave + O_circumflexgrave.glif + Ocircumflexhookabove + O_circumflexhookabove.glif + Ocircumflextilde + O_circumflextilde.glif + Odieresis + O_dieresis.glif + Odotaccent + O_dotaccent.glif + Odotbelow + O_dotbelow.glif + Ograve + O_grave.glif + Ohookabove + O_hookabove.glif + Ohorn + O_horn.glif + Ohornacute + O_hornacute.glif + Ohorndotbelow + O_horndotbelow.glif + Ohorngrave + O_horngrave.glif + Ohornhookabove + O_hornhookabove.glif + Ohorntilde + O_horntilde.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Oogonek + O_ogonek.glif + Oslash + O_slash.glif + Otilde + O_tilde.glif + P + P_.glif + Q + Q_.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Rdotaccent + R_dotaccent.glif + Rdotbelow + R_dotbelow.glif + Rlinebelow + R_linebelow.glif + Rmacrondotbelow + R_macrondotbelow.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Sdotbelow + S_dotbelow.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tcircumflexbelow + T_circumflexbelow.glif + Tcommaaccent + T_commaaccent.glif + Tdotbelow + T_dotbelow.glif + Thorn + T_horn.glif + Tlinebelow + T_linebelow.glif + U + U_.glif + Uacute + U_acute.glif + Ubreve + U_breve.glif + Ucaron + U_caron.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresisacute + U_dieresisacute.glif + Udieresiscaron + U_dieresiscaron.glif + Udieresisgrave + U_dieresisgrave.glif + Udieresismacron + U_dieresismacron.glif + Udotbelow + U_dotbelow.glif + Ugrave + U_grave.glif + Uhookabove + U_hookabove.glif + Uhorn + U_horn.glif + Uhornacute + U_hornacute.glif + Uhorndotbelow + U_horndotbelow.glif + Uhorngrave + U_horngrave.glif + Uhornhookabove + U_hornhookabove.glif + Uhorntilde + U_horntilde.glif + Uhungarumlaut + U_hungarumlaut.glif + Umacron + U_macron.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Utilde + U_tilde.glif + V + V_.glif + Vdotbelow + V_dotbelow.glif + W + W_.glif + Wacute + W_acute.glif + Wcircumflex + W_circumflex.glif + Wdieresis + W_dieresis.glif + Wgrave + W_grave.glif + X + X_.glif + Xdieresis + X_dieresis.glif + Y + Y_.glif + Yacute + Y_acute.glif + Ycircumflex + Y_circumflex.glif + Ydieresis + Y_dieresis.glif + Ydotaccent + Y_dotaccent.glif + Ydotbelow + Y_dotbelow.glif + Ygrave + Y_grave.glif + Yhookabove + Y_hookabove.glif + Ymacron + Y_macron.glif + Ytilde + Y_tilde.glif + Z + Z_.glif + Zacute + Z_acute.glif + Zcaron + Z_caron.glif + Zcircumflex + Z_circumflex.glif + Zdotaccent + Z_dotaccent.glif + Zdotbelow + Z_dotbelow.glif + Zlinebelow + Z_linebelow.glif + a + a.glif + aacute + aacute.glif + abreve + abreve.glif + abreveacute + abreveacute.glif + abrevedotbelow + abrevedotbelow.glif + abrevegrave + abrevegrave.glif + abrevehookabove + abrevehookabove.glif + abrevetilde + abrevetilde.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflexacute + acircumflexacute.glif + acircumflexdotbelow + acircumflexdotbelow.glif + acircumflexgrave + acircumflexgrave.glif + acircumflexhookabove + acircumflexhookabove.glif + acircumflextilde + acircumflextilde.glif + acute + acute.glif + acutecmb + acutecmb.glif + acutecmb.cap + acutecmb.cap.glif + adieresis + adieresis.glif + adotaccent + adotaccent.glif + adotbelow + adotbelow.glif + ae + ae.glif + agrave + agrave.glif + ahookabove + ahookabove.glif + amacron + amacron.glif + ampersand + ampersand.glif + ampersand_ampersand.liga + ampersand_ampersand.liga.glif + aogonek + aogonek.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + asciicircum + asciicircum.glif + asciicircum_equal.liga + asciicircum_equal.liga.glif + asciitilde + asciitilde.glif + asciitilde_asciitilde.liga + asciitilde_asciitilde.liga.glif + asciitilde_asciitilde_greater + asciitilde_asciitilde_greater.glif + asciitilde_at.liga + asciitilde_at.liga.glif + asciitilde_greater.liga + asciitilde_greater.liga.glif + asciitilde_hyphen.liga + asciitilde_hyphen.liga.glif + asterisk + asterisk.glif + asterisk_asterisk.liga + asterisk_asterisk.liga.glif + asterisk_asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga.glif + asterisk_greater.liga + asterisk_greater.liga.glif + asterisk_slash.liga + asterisk_slash.liga.glif + at + at.glif + atilde + atilde.glif + b + b.glif + backslash + backslash.glif + backslash_slash.liga + backslash_slash.liga.glif + bahtthai + bahtthai.glif + bar + bar.glif + bar_bar.liga + bar_bar.liga.glif + bar_bar_bar.liga + bar_bar_bar.liga.glif + bar_bar_bar_greater.liga + bar_bar_bar_greater.liga.glif + bar_bar_equal.liga + bar_bar_equal.liga.glif + bar_bar_equal.start + bar_bar_equal.start.glif + bar_bar_greater.liga + bar_bar_greater.liga.glif + bar_bar_hyphen.liga + bar_bar_hyphen.liga.glif + bar_bar_hyphen.start + bar_bar_hyphen.start.glif + bar_braceright.liga + bar_braceright.liga.glif + bar_bracketright.liga + bar_bracketright.liga.glif + bar_equal.liga + bar_equal.liga.glif + bar_equal.start + bar_equal.start.glif + bar_greater.liga + bar_greater.liga.glif + bar_hyphen.liga + bar_hyphen.liga.glif + bar_hyphen.start + bar_hyphen.start.glif + blinebelow + blinebelow.glif + braceleft + braceleft.glif + braceleft_bar.liga + braceleft_bar.liga.glif + braceright + braceright.glif + bracketleft + bracketleft.glif + bracketleft_bar.liga + bracketleft_bar.liga.glif + bracketright + bracketright.glif + bracketright_numbersign.liga + bracketright_numbersign.liga.glif + breve + breve.glif + breveacute + breveacute.glif + breveacute.cap + breveacute.cap.glif + brevebelowcmb + brevebelowcmb.glif + brevecmb + brevecmb.glif + brevecmb.cap + brevecmb.cap.glif + brevegrave + brevegrave.glif + brevegrave.cap + brevegrave.cap.glif + brevehook + brevehook.glif + brevehook.cap + brevehook.cap.glif + brevetilde + brevetilde.glif + brevetilde.cap + brevetilde.cap.glif + bullet + bullet.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caroncmb + caroncmb.glif + caroncmb.cap + caroncmb.cap.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cedillacmb + cedillacmb.glif + cent + cent.glif + circumflex + circumflex.glif + circumflexacute + circumflexacute.glif + circumflexacute.cap + circumflexacute.cap.glif + circumflexbelowcmb + circumflexbelowcmb.glif + circumflexcmb + circumflexcmb.glif + circumflexcmb.cap + circumflexcmb.cap.glif + circumflexgrave + circumflexgrave.glif + circumflexgrave.cap + circumflexgrave.cap.glif + circumflexhook + circumflexhook.glif + circumflexhook.cap + circumflexhook.cap.glif + circumflextilde + circumflextilde.glif + circumflextilde.cap + circumflextilde.cap.glif + colon + colon.glif + colon.fig + colon.fig.glif + colon_colon.liga + colon_colon.liga.glif + colon_colon_colon.liga + colon_colon_colon.liga.glif + colon_colon_equal.liga + colon_colon_equal.liga.glif + colon_equal.liga + colon_equal.liga.glif + colon_greater.liga + colon_greater.liga.glif + colon_less.liga + colon_less.liga.glif + comma + comma.glif + commaaboverightcmb + commaaboverightcmb.glif + commaturnedabovecmb + commaturnedabovecmb.glif + commaturnedmod + commaturnedmod.glif + copyright + copyright.glif + d + d.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + darkshade + darkshade.glif + dbldnhorzbxd + dbldnhorzbxd.glif + dbldnleftbxd + dbldnleftbxd.glif + dbldnrightbxd + dbldnrightbxd.glif + dblhorzbxd + dblhorzbxd.glif + dblprimemod + dblprimemod.glif + dbluphorzbxd + dbluphorzbxd.glif + dblupleftbxd + dblupleftbxd.glif + dbluprightbxd + dbluprightbxd.glif + dblvertbxd + dblvertbxd.glif + dblverthorzbxd + dblverthorzbxd.glif + dblvertleftbxd + dblvertleftbxd.glif + dblvertrightbxd + dblvertrightbxd.glif + dcaron + dcaron.glif + dcircumflexbelow + dcircumflexbelow.glif + dcroat + dcroat.glif + ddotbelow + ddotbelow.glif + degree + degree.glif + dieresis + dieresis.glif + dieresisacute + dieresisacute.glif + dieresisacute.cap + dieresisacute.cap.glif + dieresisbelowcmb + dieresisbelowcmb.glif + dieresiscaron + dieresiscaron.glif + dieresiscaron.cap + dieresiscaron.cap.glif + dieresiscmb + dieresiscmb.glif + dieresiscmb.cap + dieresiscmb.cap.glif + dieresisgrave + dieresisgrave.glif + dieresisgrave.cap + dieresisgrave.cap.glif + dieresismacron + dieresismacron.glif + dieresismacron.cap + dieresismacron.cap.glif + divide + divide.glif + dlinebelow + dlinebelow.glif + dndblhorzsngbxd + dndblhorzsngbxd.glif + dndblleftsngbxd + dndblleftsngbxd.glif + dndblrightsngbxd + dndblrightsngbxd.glif + dneighthblock + dneighthblock.glif + dnfiveeighthsblock + dnfiveeighthsblock.glif + dnhalfblock + dnhalfblock.glif + dnheavyhorzlightbxd + dnheavyhorzlightbxd.glif + dnheavyleftlightbxd + dnheavyleftlightbxd.glif + dnheavyleftuplightbxd + dnheavyleftuplightbxd.glif + dnheavyrightlightbxd + dnheavyrightlightbxd.glif + dnheavyrightuplightbxd + dnheavyrightuplightbxd.glif + dnheavyuphorzlightbxd + dnheavyuphorzlightbxd.glif + dnleftquadrant + dnleftquadrant.glif + dnlighthorzheavybxd + dnlighthorzheavybxd.glif + dnlightleftheavybxd + dnlightleftheavybxd.glif + dnlightleftupheavybxd + dnlightleftupheavybxd.glif + dnlightrightheavybxd + dnlightrightheavybxd.glif + dnlightrightupheavybxd + dnlightrightupheavybxd.glif + dnlightuphorzheavybxd + dnlightuphorzheavybxd.glif + dnquarterblock + dnquarterblock.glif + dnrightquadrant + dnrightquadrant.glif + dnseveneighthsblock + dnseveneighthsblock.glif + dnsnghorzdblbxd + dnsnghorzdblbxd.glif + dnsngleftdblbxd + dnsngleftdblbxd.glif + dnsngrightdblbxd + dnsngrightdblbxd.glif + dnthreeeighthsblock + dnthreeeighthsblock.glif + dnthreequartersblock + dnthreequartersblock.glif + dollar + dollar.glif + dollar_greater.liga + dollar_greater.liga.glif + dong + dong.glif + dotaccent + dotaccent.glif + dotaccentcmb + dotaccentcmb.glif + dotaccentcmb.cap + dotaccentcmb.cap.glif + dotbelowcmb + dotbelowcmb.glif + dotlessi + dotlessi.glif + dotlessj + dotlessj.glif + e + e.glif + eacute + eacute.glif + ebreve + ebreve.glif + ecaron + ecaron.glif + ecircumflex + ecircumflex.glif + ecircumflexacute + ecircumflexacute.glif + ecircumflexdotbelow + ecircumflexdotbelow.glif + ecircumflexgrave + ecircumflexgrave.glif + ecircumflexhookabove + ecircumflexhookabove.glif + ecircumflextilde + ecircumflextilde.glif + edieresis + edieresis.glif + edotaccent + edotaccent.glif + edotbelow + edotbelow.glif + egrave + egrave.glif + ehookabove + ehookabove.glif + eight + eight.glif + eight.den + eight.den.glif + eight.inf + eight.inf.glif + eight.num + eight.num.glif + eight.sup + eight.sup.glif + ellipsis + ellipsis.glif + emacron + emacron.glif + emdash + emdash.glif + endash + endash.glif + eng + eng.glif + eogonek + eogonek.glif + equal + equal.glif + equal.end + equal.end.glif + equal.middle + equal.middle.glif + equal.start + equal.start.glif + equal_asciitilde.liga + equal_asciitilde.liga.glif + equal_bar.end + equal_bar.end.glif + equal_bar.liga + equal_bar.liga.glif + equal_bar_bar.end + equal_bar_bar.end.glif + equal_bar_bar.liga + equal_bar_bar.liga.glif + equal_bar_bar_equal.middle + equal_bar_bar_equal.middle.glif + equal_bar_equal.middle + equal_bar_equal.middle.glif + equal_colon_equal.middle + equal_colon_equal.middle.glif + equal_equal.liga + equal_equal.liga.glif + equal_equal_equal.liga + equal_equal_equal.liga.glif + equal_exclam_equal.middle + equal_exclam_equal.middle.glif + equal_greater.end + equal_greater.end.glif + equal_greater.liga + equal_greater.liga.glif + equal_greater_equal.middle + equal_greater_equal.middle.glif + equal_greater_greater.end + equal_greater_greater.end.glif + equal_greater_greater.liga + equal_greater_greater.liga.glif + equal_greater_greater_equal.m + equal_greater_greater_equal.m.glif + equal_less.end + equal_less.end.glif + equal_less.liga + equal_less.liga.glif + equal_less_equal.middle + equal_less_equal.middle.glif + equal_less_less.end + equal_less_less.end.glif + equal_less_less.liga + equal_less_less.liga.glif + equal_less_less_equal.middle + equal_less_less_equal.middle.glif + equal_slash.end + equal_slash.end.glif + equal_slash.liga + equal_slash.liga.glif + equal_slash_equal.middle + equal_slash_equal.middle.glif + equal_slash_slash.end + equal_slash_slash.end.glif + equal_slash_slash.liga + equal_slash_slash.liga.glif + equal_slash_slash_equal.middle + equal_slash_slash_equal.middle.glif + eth + eth.glif + etilde + etilde.glif + exclam + exclam.glif + exclam_asciitilde.liga + exclam_asciitilde.liga.glif + exclam_equal.liga + exclam_equal.liga.glif + exclam_equal_equal.liga + exclam_equal_equal.liga.glif + exclam_exclam.liga + exclam_exclam.liga.glif + exclam_exclam_period.liga + exclam_exclam_period.liga.glif + exclamdown + exclamdown.glif + f + f.glif + five + five.glif + five.den + five.den.glif + five.inf + five.inf.glif + five.num + five.num.glif + five.sup + five.sup.glif + fiveeighths + fiveeighths.glif + fivesixths + fivesixths.glif + four + four.glif + four.den + four.den.glif + four.inf + four.inf.glif + four.num + four.num.glif + four.sup + four.sup.glif + fourfifths + fourfifths.glif + fracbar + fracbar.glif + fraction + fraction.glif + fullblock + fullblock.glif + g + g.glif + gbreve + gbreve.glif + gcaron + gcaron.glif + gcircumflex + gcircumflex.glif + gcommaaccent + gcommaaccent.glif + gdotaccent + gdotaccent.glif + germandbls + germandbls.glif + gmacron + gmacron.glif + grave + grave.glif + gravecmb + gravecmb.glif + gravecmb.cap + gravecmb.cap.glif + greater + greater.glif + greater_colon.liga + greater_colon.liga.glif + greater_equal + greater_equal.glif + greater_equal.liga + greater_equal.liga.glif + greater_equal.start + greater_equal.start.glif + greater_equal_greater.liga + greater_equal_greater.liga.glif + greater_greater.liga + greater_greater.liga.glif + greater_greater_equal.liga + greater_greater_equal.liga.glif + greater_greater_equal.start + greater_greater_equal.start.glif + greater_greater_greater.liga + greater_greater_greater.liga.glif + greater_greater_hyphen.liga + greater_greater_hyphen.liga.glif + greater_greater_hyphen.start + greater_greater_hyphen.start.glif + greater_hyphen.liga + greater_hyphen.liga.glif + greater_hyphen.start + greater_hyphen.start.glif + greater_hyphen_greater.liga + greater_hyphen_greater.liga.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetright + guillemetright.glif + guilsinglleft + guilsinglleft.glif + guilsinglright + guilsinglright.glif + h + h.glif + hbar + hbar.glif + hbrevebelow + hbrevebelow.glif + hcedilla + hcedilla.glif + hcircumflex + hcircumflex.glif + hdotbelow + hdotbelow.glif + heavydbldashhorzbxd + heavydbldashhorzbxd.glif + heavydbldashvertbxd + heavydbldashvertbxd.glif + heavydnbxd + heavydnbxd.glif + heavydnhorzbxd + heavydnhorzbxd.glif + heavydnleftbxd + heavydnleftbxd.glif + heavydnrightbxd + heavydnrightbxd.glif + heavyhorzbxd + heavyhorzbxd.glif + heavyleftbxd + heavyleftbxd.glif + heavyleftlightrightbxd + heavyleftlightrightbxd.glif + heavyquaddashhorzbxd + heavyquaddashhorzbxd.glif + heavyquaddashvertbxd + heavyquaddashvertbxd.glif + heavyrightbxd + heavyrightbxd.glif + heavytrpldashhorzbxd + heavytrpldashhorzbxd.glif + heavytrpldashvertbxd + heavytrpldashvertbxd.glif + heavyupbxd + heavyupbxd.glif + heavyuphorzbxd + heavyuphorzbxd.glif + heavyupleftbxd + heavyupleftbxd.glif + heavyuplightdnbxd + heavyuplightdnbxd.glif + heavyuprightbxd + heavyuprightbxd.glif + heavyvertbxd + heavyvertbxd.glif + heavyverthorzbxd + heavyverthorzbxd.glif + heavyvertleftbxd + heavyvertleftbxd.glif + heavyvertrightbxd + heavyvertrightbxd.glif + hlinebelow + hlinebelow.glif + hookcmb + hookcmb.glif + hookcmb.cap + hookcmb.cap.glif + horizontalbar + horizontalbar.glif + hungarumlaut + hungarumlaut.glif + hungarumlautcmb + hungarumlautcmb.glif + hungarumlautcmb.cap + hungarumlautcmb.cap.glif + hyphen + hyphen.glif + hyphen.end + hyphen.end.glif + hyphen.middle + hyphen.middle.glif + hyphen.start + hyphen.start.glif + hyphen_asciitilde.liga + hyphen_asciitilde.liga.glif + hyphen_bar.end + hyphen_bar.end.glif + hyphen_bar.liga + hyphen_bar.liga.glif + hyphen_bar_bar.end + hyphen_bar_bar.end.glif + hyphen_bar_bar.liga + hyphen_bar_bar.liga.glif + hyphen_bar_bar_hyphen.middle + hyphen_bar_bar_hyphen.middle.glif + hyphen_bar_hyphen.middle + hyphen_bar_hyphen.middle.glif + hyphen_greater.end + hyphen_greater.end.glif + hyphen_greater.liga + hyphen_greater.liga.glif + hyphen_greater_greater.end + hyphen_greater_greater.end.glif + hyphen_greater_greater.liga + hyphen_greater_greater.liga.glif + hyphen_greater_greater_hyphen.m + hyphen_greater_greater_hyphen.m.glif + hyphen_greater_hyphen.middle + hyphen_greater_hyphen.middle.glif + hyphen_hyphen.liga + hyphen_hyphen.liga.glif + hyphen_hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga.glif + hyphen_less.end + hyphen_less.end.glif + hyphen_less.liga + hyphen_less.liga.glif + hyphen_less_hyphen.middle + hyphen_less_hyphen.middle.glif + hyphen_less_less.end + hyphen_less_less.end.glif + hyphen_less_less.liga + hyphen_less_less.liga.glif + hyphen_less_less_hyphen.middle + hyphen_less_less_hyphen.middle.glif + i + i.glif + iacute + iacute.glif + ibreve + ibreve.glif + icaron + icaron.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idotaccent + idotaccent.glif + idotbelow + idotbelow.glif + igrave + igrave.glif + ihookabove + ihookabove.glif + imacron + imacron.glif + iogonek + iogonek.glif + itilde + itilde.glif + j + j.glif + jcaron + jcaron.glif + jcircumflex + jcircumflex.glif + k + k.glif + kcommaaccent + kcommaaccent.glif + kdotbelow + kdotbelow.glif + klinebelow + klinebelow.glif + l + l.glif + l.dot + l.dot.glif + lacute + lacute.glif + lcaron + lcaron.glif + lcircumflexbelow + lcircumflexbelow.glif + lcommaaccent + lcommaaccent.glif + ldotbelow + ldotbelow.glif + leftdnheavyrightuplightbxd + leftdnheavyrightuplightbxd.glif + lefteighthblock + lefteighthblock.glif + leftfiveeighthsblock + leftfiveeighthsblock.glif + lefthalfblock + lefthalfblock.glif + leftheavyrightdnlightbxd + leftheavyrightdnlightbxd.glif + leftheavyrightuplightbxd + leftheavyrightuplightbxd.glif + leftheavyrightvertlightbxd + leftheavyrightvertlightbxd.glif + leftlightrightdnheavybxd + leftlightrightdnheavybxd.glif + leftlightrightupheavybxd + leftlightrightupheavybxd.glif + leftlightrightvertheavybxd + leftlightrightvertheavybxd.glif + leftquarterblock + leftquarterblock.glif + leftseveneighthsblock + leftseveneighthsblock.glif + leftthreeeighthsblock + leftthreeeighthsblock.glif + leftthreequartersblock + leftthreequartersblock.glif + leftupheavyrightdnlightbxd + leftupheavyrightdnlightbxd.glif + less + less.glif + less_asciitilde.liga + less_asciitilde.liga.glif + less_asciitilde_asciitilde.liga + less_asciitilde_asciitilde.liga.glif + less_asciitilde_greater.liga + less_asciitilde_greater.liga.glif + less_asterisk.liga + less_asterisk.liga.glif + less_asterisk_greater.liga + less_asterisk_greater.liga.glif + less_bar.liga + less_bar.liga.glif + less_bar_bar.liga + less_bar_bar.liga.glif + less_bar_bar_bar.liga + less_bar_bar_bar.liga.glif + less_bar_greater.liga + less_bar_greater.liga.glif + less_colon.liga + less_colon.liga.glif + less_dollar.liga + less_dollar.liga.glif + less_dollar_greater.liga + less_dollar_greater.liga.glif + less_equal + less_equal.glif + less_equal.liga + less_equal.liga.glif + less_equal.start + less_equal.start.glif + less_equal_greater.liga + less_equal_greater.liga.glif + less_equal_less.liga + less_equal_less.liga.glif + less_exclam_hyphen_hyphen.liga + less_exclam_hyphen_hyphen.liga.glif + less_greater.liga + less_greater.liga.glif + less_hyphen.liga + less_hyphen.liga.glif + less_hyphen.start + less_hyphen.start.glif + less_hyphen_greater.liga + less_hyphen_greater.liga.glif + less_hyphen_less.liga + less_hyphen_less.liga.glif + less_less.liga + less_less.liga.glif + less_less_equal.liga + less_less_equal.liga.glif + less_less_equal.start + less_less_equal.start.glif + less_less_hyphen.liga + less_less_hyphen.liga.glif + less_less_hyphen.start + less_less_hyphen.start.glif + less_less_less.liga + less_less_less.liga.glif + less_plus.liga + less_plus.liga.glif + less_plus_greater.liga + less_plus_greater.liga.glif + less_slash.liga + less_slash.liga.glif + less_slash_greater.liga + less_slash_greater.liga.glif + lessequal + lessequal.glif + lightarcdnleftbxd + lightarcdnleftbxd.glif + lightarcdnrightbxd + lightarcdnrightbxd.glif + lightarcupleftbxd + lightarcupleftbxd.glif + lightarcuprightbxd + lightarcuprightbxd.glif + lightdbldashhorzbxd + lightdbldashhorzbxd.glif + lightdbldashvertbxd + lightdbldashvertbxd.glif + lightdiagcrossbxd + lightdiagcrossbxd.glif + lightdiagupleftdnrightbxd + lightdiagupleftdnrightbxd.glif + lightdiaguprightdnleftbxd + lightdiaguprightdnleftbxd.glif + lightdnbxd + lightdnbxd.glif + lightdnhorzbxd + lightdnhorzbxd.glif + lightdnleftbxd + lightdnleftbxd.glif + lightdnrightbxd + lightdnrightbxd.glif + lighthorzbxd + lighthorzbxd.glif + lightleftbxd + lightleftbxd.glif + lightleftheavyrightbxd + lightleftheavyrightbxd.glif + lightquaddashhorzbxd + lightquaddashhorzbxd.glif + lightquaddashvertbxd + lightquaddashvertbxd.glif + lightrightbxd + lightrightbxd.glif + lightshade + lightshade.glif + lighttrpldashhorzbxd + lighttrpldashhorzbxd.glif + lighttrpldashvertbxd + lighttrpldashvertbxd.glif + lightupbxd + lightupbxd.glif + lightupheavydnbxd + lightupheavydnbxd.glif + lightuphorzbxd + lightuphorzbxd.glif + lightupleftbxd + lightupleftbxd.glif + lightuprightbxd + lightuprightbxd.glif + lightvertbxd + lightvertbxd.glif + lightverthorzbxd + lightverthorzbxd.glif + lightvertleftbxd + lightvertleftbxd.glif + lightvertrightbxd + lightvertrightbxd.glif + ligspacer + ligspacer.glif + llinebelow + llinebelow.glif + lmacrondotbelow + lmacrondotbelow.glif + lslash + lslash.glif + m + m.glif + macron + macron.glif + macronbelowcmb + macronbelowcmb.glif + macroncmb + macroncmb.glif + macroncmb.cap + macroncmb.cap.glif + macronlowmod + macronlowmod.glif + macute + macute.glif + mdotaccent + mdotaccent.glif + mdotbelow + mdotbelow.glif + mediumshade + mediumshade.glif + middotcat + middotcat.glif + middotcat.cap + middotcat.cap.glif + minus + minus.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + naira + naira.glif + ncaron + ncaron.glif + ncircumflexbelow + ncircumflexbelow.glif + ncommaaccent + ncommaaccent.glif + ndotaccent + ndotaccent.glif + ndotbelow + ndotbelow.glif + ngrave + ngrave.glif + nine + nine.glif + nine.den + nine.den.glif + nine.inf + nine.inf.glif + nine.num + nine.num.glif + nine.sup + nine.sup.glif + nlinebelow + nlinebelow.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numbersign.end + numbersign.end.glif + numbersign.middle + numbersign.middle.glif + numbersign.start + numbersign.start.glif + numbersign_braceleft.liga + numbersign_braceleft.liga.glif + numbersign_bracketleft.liga + numbersign_bracketleft.liga.glif + numbersign_colon.liga + numbersign_colon.liga.glif + numbersign_equal.liga + numbersign_equal.liga.glif + numbersign_exclam.liga + numbersign_exclam.liga.glif + numbersign_parenleft.liga + numbersign_parenleft.liga.glif + numbersign_question.liga + numbersign_question.liga.glif + numbersign_underscore.liga + numbersign_underscore.liga.glif + numbersign_underscore_parenleft + numbersign_underscore_parenleft.glif + o + o.glif + oacute + oacute.glif + obreve + obreve.glif + ocaron + ocaron.glif + ocircumflex + ocircumflex.glif + ocircumflexacute + ocircumflexacute.glif + ocircumflexdotbelow + ocircumflexdotbelow.glif + ocircumflexgrave + ocircumflexgrave.glif + ocircumflexhookabove + ocircumflexhookabove.glif + ocircumflextilde + ocircumflextilde.glif + odieresis + odieresis.glif + odotaccent + odotaccent.glif + odotbelow + odotbelow.glif + oe + oe.glif + ogonek + ogonek.glif + ogonekcmb + ogonekcmb.glif + ograve + ograve.glif + ohookabove + ohookabove.glif + ohorn + ohorn.glif + ohornacute + ohornacute.glif + ohorndotbelow + ohorndotbelow.glif + ohorngrave + ohorngrave.glif + ohornhookabove + ohornhookabove.glif + ohorntilde + ohorntilde.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + one + one.glif + one.den + one.den.glif + one.inf + one.inf.glif + one.num + one.num.glif + one.sup + one.sup.glif + oneeighth + oneeighth.glif + onefifth + onefifth.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesixth + onesixth.glif + onethird + onethird.glif + oogonek + oogonek.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + otilde + otilde.glif + p + p.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenright + parenright.glif + percent + percent.glif + percent_percent.liga + percent_percent.liga.glif + period + period.glif + period_equal.liga + period_equal.liga.glif + period_hyphen.liga + period_hyphen.liga.glif + period_period.liga + period_period.liga.glif + period_period_equal.liga + period_period_equal.liga.glif + period_period_less.liga + period_period_less.liga.glif + period_period_period.liga + period_period_period.liga.glif + period_question.liga + period_question.liga.glif + periodcentered + periodcentered.glif + peso + peso.glif + plus + plus.glif + plus_greater.liga + plus_greater.liga.glif + plus_plus.liga + plus_plus.liga.glif + plus_plus_plus.liga + plus_plus_plus.liga.glif + plusminus + plusminus.glif + primemod + primemod.glif + published + published.glif + q + q.glif + question + question.glif + question_colon.liga + question_colon.liga.glif + question_equal.liga + question_equal.liga.glif + question_period.liga + question_period.liga.glif + question_question.liga + question_question.liga.glif + questiondown + questiondown.glif + quotedbl + quotedbl.glif + quotedblbase + quotedblbase.glif + quotedblleft + quotedblleft.glif + quotedblright + quotedblright.glif + quoteleft + quoteleft.glif + quoteright + quoteright.glif + quotesinglbase + quotesinglbase.glif + quotesingle + quotesingle.glif + r + r.glif + racute + racute.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + rdotaccent + rdotaccent.glif + rdotbelow + rdotbelow.glif + registered + registered.glif + rightdnheavyleftuplightbxd + rightdnheavyleftuplightbxd.glif + righteighthblock + righteighthblock.glif + righthalfblock + righthalfblock.glif + rightheavyleftdnlightbxd + rightheavyleftdnlightbxd.glif + rightheavyleftuplightbxd + rightheavyleftuplightbxd.glif + rightheavyleftvertlightbxd + rightheavyleftvertlightbxd.glif + rightlightleftdnheavybxd + rightlightleftdnheavybxd.glif + rightlightleftupheavybxd + rightlightleftupheavybxd.glif + rightlightleftvertheavybxd + rightlightleftvertheavybxd.glif + rightupheavyleftdnlightbxd + rightupheavyleftdnlightbxd.glif + ring + ring.glif + ringcmb + ringcmb.glif + ringcmb.cap + ringcmb.cap.glif + ringhalfleft + ringhalfleft.glif + ringhalfright + ringhalfright.glif + rlinebelow + rlinebelow.glif + rmacrondotbelow + rmacrondotbelow.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwa + schwa.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + sdotbelow + sdotbelow.glif + section + section.glif + semicolon + semicolon.glif + semicolon_semicolon.liga + semicolon_semicolon.liga.glif + servicemark + servicemark.glif + seven + seven.glif + seven.den + seven.den.glif + seven.inf + seven.inf.glif + seven.num + seven.num.glif + seven.sup + seven.sup.glif + seveneighths + seveneighths.glif + six + six.glif + six.den + six.den.glif + six.inf + six.inf.glif + six.num + six.num.glif + six.sup + six.sup.glif + slash + slash.glif + slash_asterisk.liga + slash_asterisk.liga.glif + slash_backslash.liga + slash_backslash.liga.glif + slash_equal.liga + slash_equal.liga.glif + slash_equal.start + slash_equal.start.glif + slash_greater.liga + slash_greater.liga.glif + slash_slash.liga + slash_slash.liga.glif + slash_slash_equal.liga + slash_slash_equal.liga.glif + slash_slash_equal.start + slash_slash_equal.start.glif + slash_slash_slash.liga + slash_slash_slash.liga.glif + space + space.glif + sterling + sterling.glif + t + t.glif + tbar + tbar.glif + tcaron + tcaron.glif + tcedilla + tcedilla.glif + tcircumflexbelow + tcircumflexbelow.glif + tcommaaccent + tcommaaccent.glif + tdotbelow + tdotbelow.glif + thorn + thorn.glif + three + three.glif + three.den + three.den.glif + three.inf + three.inf.glif + three.num + three.num.glif + three.sup + three.sup.glif + threeeighths + threeeighths.glif + threefifths + threefifths.glif + threequarters + threequarters.glif + tilde + tilde.glif + tildecmb + tildecmb.glif + tildecmb.cap + tildecmb.cap.glif + tlinebelow + tlinebelow.glif + trademark + trademark.glif + two + two.glif + two.den + two.den.glif + two.inf + two.inf.glif + two.num + two.num.glif + two.sup + two.sup.glif + twodotleader + twodotleader.glif + twofifths + twofifths.glif + twothirds + twothirds.glif + u + u.glif + uacute + uacute.glif + ubreve + ubreve.glif + ucaron + ucaron.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresisacute + udieresisacute.glif + udieresiscaron + udieresiscaron.glif + udieresisgrave + udieresisgrave.glif + udieresismacron + udieresismacron.glif + udotbelow + udotbelow.glif + ugrave + ugrave.glif + uhookabove + uhookabove.glif + uhorn + uhorn.glif + uhornacute + uhornacute.glif + uhorndotbelow + uhorndotbelow.glif + uhorngrave + uhorngrave.glif + uhornhookabove + uhornhookabove.glif + uhorntilde + uhorntilde.glif + uhungarumlaut + uhungarumlaut.glif + umacron + umacron.glif + underscore + underscore.glif + underscore.end + underscore.end.glif + underscore.middle + underscore.middle.glif + underscore.start + underscore.start.glif + underscore_bar_underscore.m + underscore_bar_underscore.m.glif + uni00A0 + uni00A_0.glif + uni0326 + uni0326.glif + uni1E9E + uni1E_9E_.glif + uni2011 + uni2011.glif + uni20B9 + uni20B_9.glif + uni20BA + uni20B_A_.glif + uni20BD + uni20B_D_.glif + uni2610 + uni2610.glif + uni2611 + uni2611.glif + uni2612 + uni2612.glif + uni2713 + uni2713.glif + uniA788 + uniA_788.glif + uniE0A0 + uniE_0A_0.glif + uniE0A1 + uniE_0A_1.glif + uniE0A2 + uniE_0A_2.glif + uniE0B0 + uniE_0B_0.glif + uniE0B1 + uniE_0B_1.glif + uniE0B2 + uniE_0B_2.glif + uniE0B3 + uniE_0B_3.glif + uogonek + uogonek.glif + updblhorzsngbxd + updblhorzsngbxd.glif + updblleftsngbxd + updblleftsngbxd.glif + updblrightsngbxd + updblrightsngbxd.glif + upeighthblock + upeighthblock.glif + uphalfblock + uphalfblock.glif + upheavydnhorzlightbxd + upheavydnhorzlightbxd.glif + upheavyhorzlightbxd + upheavyhorzlightbxd.glif + upheavyleftdnlightbxd + upheavyleftdnlightbxd.glif + upheavyleftlightbxd + upheavyleftlightbxd.glif + upheavyrightdnlightbxd + upheavyrightdnlightbxd.glif + upheavyrightlightbxd + upheavyrightlightbxd.glif + upleftdnleftdnrightquadrant + upleftdnleftdnrightquadrant.glif + upleftdnrightquadrant + upleftdnrightquadrant.glif + upleftquadrant + upleftquadrant.glif + upleftuprightdnleftquadrant + upleftuprightdnleftquadrant.glif + upleftuprightdnrightquadrant + upleftuprightdnrightquadrant.glif + uplightdnhorzheavybxd + uplightdnhorzheavybxd.glif + uplighthorzheavybxd + uplighthorzheavybxd.glif + uplightleftdnheavybxd + uplightleftdnheavybxd.glif + uplightleftheavybxd + uplightleftheavybxd.glif + uplightrightdnheavybxd + uplightrightdnheavybxd.glif + uplightrightheavybxd + uplightrightheavybxd.glif + uprightdnleftdnrightquadrant + uprightdnleftdnrightquadrant.glif + uprightdnleftquadrant + uprightdnleftquadrant.glif + uprightquadrant + uprightquadrant.glif + upsnghorzdblbxd + upsnghorzdblbxd.glif + upsngleftdblbxd + upsngleftdblbxd.glif + upsngrightdblbxd + upsngrightdblbxd.glif + uring + uring.glif + utilde + utilde.glif + v + v.glif + vdotbelow + vdotbelow.glif + vertdblhorzsngbxd + vertdblhorzsngbxd.glif + vertdblleftsngbxd + vertdblleftsngbxd.glif + vertdblrightsngbxd + vertdblrightsngbxd.glif + vertheavyhorzlightbxd + vertheavyhorzlightbxd.glif + vertheavyleftlightbxd + vertheavyleftlightbxd.glif + vertheavyrightlightbxd + vertheavyrightlightbxd.glif + verticallinelowmod + verticallinelowmod.glif + verticallinemod + verticallinemod.glif + vertlighthorzheavybxd + vertlighthorzheavybxd.glif + vertlightleftheavybxd + vertlightleftheavybxd.glif + vertlightrightheavybxd + vertlightrightheavybxd.glif + vertsnghorzdblbxd + vertsnghorzdblbxd.glif + vertsngleftdblbxd + vertsngleftdblbxd.glif + vertsngrightdblbxd + vertsngrightdblbxd.glif + w + w.glif + w_w_w.liga + w_w_w.liga.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wgrave + wgrave.glif + won + won.glif + x + x.glif + xdieresis + xdieresis.glif + y + y.glif + yacute + yacute.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + ydotaccent + ydotaccent.glif + ydotbelow + ydotbelow.glif + yen + yen.glif + ygrave + ygrave.glif + yhookabove + yhookabove.glif + ymacron + ymacron.glif + ytilde + ytilde.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zcircumflex + zcircumflex.glif + zdotaccent + zdotaccent.glif + zdotbelow + zdotbelow.glif + zero + zero.glif + zero.den + zero.den.glif + zero.inf + zero.inf.glif + zero.num + zero.num.glif + zero.sup + zero.sup.glif + zlinebelow + zlinebelow.glif + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/copyright.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/copyright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/copyright.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/copyright.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/d.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/d.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/d.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/d.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dagger.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dagger.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dagger.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dagger.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/daggerdbl.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/daggerdbl.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/daggerdbl.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/daggerdbl.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/darkshade.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/darkshade.glif new file mode 100644 index 00000000..a56d0f0a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/darkshade.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dbldnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dbldnhorzbxd.glif new file mode 100644 index 00000000..482239eb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dbldnhorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dbldnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dbldnleftbxd.glif new file mode 100644 index 00000000..e6164a8a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dbldnleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dbldnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dbldnrightbxd.glif new file mode 100644 index 00000000..a65921b1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dbldnrightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dblhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dblhorzbxd.glif new file mode 100644 index 00000000..cdf40305 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dblhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dblprimemod.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dblprimemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dblprimemod.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dblprimemod.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dbluphorzbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dbluphorzbxd.glif new file mode 100644 index 00000000..799b9909 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dbluphorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dblupleftbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dblupleftbxd.glif new file mode 100644 index 00000000..9314c4b2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dblupleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dbluprightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dbluprightbxd.glif new file mode 100644 index 00000000..8e569560 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dbluprightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dblvertbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dblvertbxd.glif new file mode 100644 index 00000000..2782cf47 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dblvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dblverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dblverthorzbxd.glif new file mode 100644 index 00000000..b2f439e1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dblverthorzbxd.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dblvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dblvertleftbxd.glif new file mode 100644 index 00000000..aa937fdc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dblvertleftbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dblvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dblvertrightbxd.glif new file mode 100644 index 00000000..04b553a0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dblvertrightbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dcaron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..a97e3f30 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dcircumflexbelow.glif new file mode 100644 index 00000000..c3c274d1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dcroat.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..22243b0a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dcroat.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ddotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ddotbelow.glif new file mode 100644 index 00000000..ca0d7f79 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ddotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/degree.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/degree.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/degree.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/degree.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresis.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresis.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresisacute.cap.glif new file mode 100644 index 00000000..832f3dcf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresisacute.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresisacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..df87f594 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresisbelowcmb.glif new file mode 100644 index 00000000..5387583c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresisbelowcmb.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresiscaron.cap.glif new file mode 100644 index 00000000..2e61ef4a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresiscaron.cap.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresiscaron.glif new file mode 100644 index 00000000..245f46f1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresiscaron.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresiscmb.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresiscmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresiscmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresiscmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresiscmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresiscmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dieresiscmb.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresiscmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresisgrave.cap.glif new file mode 100644 index 00000000..93f3e56f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresisgrave.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresisgrave.glif new file mode 100644 index 00000000..6485d09a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresisgrave.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresismacron.cap.glif new file mode 100644 index 00000000..e1bbe44b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresismacron.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresismacron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresismacron.glif new file mode 100644 index 00000000..c1576240 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dieresismacron.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/divide.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/divide.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/divide.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/divide.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dlinebelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dlinebelow.glif new file mode 100644 index 00000000..faaf1771 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dndblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dndblhorzsngbxd.glif new file mode 100644 index 00000000..80b29fc5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dndblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dndblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dndblleftsngbxd.glif new file mode 100644 index 00000000..e44b7ce9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dndblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dndblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dndblrightsngbxd.glif new file mode 100644 index 00000000..7f72ef64 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dndblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dneighthblock.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dneighthblock.glif new file mode 100644 index 00000000..f9382474 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dneighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnfiveeighthsblock.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnfiveeighthsblock.glif new file mode 100644 index 00000000..6d6b327e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnhalfblock.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnhalfblock.glif new file mode 100644 index 00000000..5cb2299a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnhalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnheavyhorzlightbxd.glif new file mode 100644 index 00000000..3b377cc0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnheavyleftlightbxd.glif new file mode 100644 index 00000000..6430993a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnheavyleftuplightbxd.glif new file mode 100644 index 00000000..ed86355e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnheavyrightlightbxd.glif new file mode 100644 index 00000000..80afed4f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnheavyrightuplightbxd.glif new file mode 100644 index 00000000..1d9843a5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnheavyuphorzlightbxd.glif new file mode 100644 index 00000000..4872115c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnheavyuphorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnleftquadrant.glif new file mode 100644 index 00000000..0f752b04 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnlighthorzheavybxd.glif new file mode 100644 index 00000000..584d0f63 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnlighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnlightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnlightleftheavybxd.glif new file mode 100644 index 00000000..c2e158ab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnlightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnlightleftupheavybxd.glif new file mode 100644 index 00000000..52d5e2f1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnlightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnlightrightheavybxd.glif new file mode 100644 index 00000000..e278422a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnlightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnlightrightupheavybxd.glif new file mode 100644 index 00000000..fd2feb01 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnlightuphorzheavybxd.glif new file mode 100644 index 00000000..ab145979 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnlightuphorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnquarterblock.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnquarterblock.glif new file mode 100644 index 00000000..5dc81108 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnrightquadrant.glif new file mode 100644 index 00000000..012bd532 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnrightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnseveneighthsblock.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnseveneighthsblock.glif new file mode 100644 index 00000000..a47c62d6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnsnghorzdblbxd.glif new file mode 100644 index 00000000..13463632 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnsngleftdblbxd.glif new file mode 100644 index 00000000..9c38e4da --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnsngrightdblbxd.glif new file mode 100644 index 00000000..be821c4d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnthreeeighthsblock.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnthreeeighthsblock.glif new file mode 100644 index 00000000..e54a10a3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnthreequartersblock.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnthreequartersblock.glif new file mode 100644 index 00000000..e7b739c3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dnthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dollar.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dollar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dollar.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dollar.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dollar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dollar_greater.liga.glif new file mode 100644 index 00000000..6e22b4cf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dollar_greater.liga.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dong.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dong.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dong.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dong.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dotaccentcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dotaccentcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dotaccentcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dotaccentcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dotaccentcmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dotaccentcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dotaccentcmb.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dotaccentcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dotbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dotbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dotbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dotbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dotlessi.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dotlessi.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dotlessi.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dotlessi.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dotlessj.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dotlessj.glif new file mode 100644 index 00000000..cab17f6b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/dotlessj.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/e.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/e.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/e.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/e.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..399df89f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ebreve.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..18c2ad77 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ebreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecaron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..26eb285c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..15d961ab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecircumflexacute.glif new file mode 100644 index 00000000..371187bd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecircumflexdotbelow.glif new file mode 100644 index 00000000..e4f3512e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecircumflexgrave.glif new file mode 100644 index 00000000..cf7e48cd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecircumflexhookabove.glif new file mode 100644 index 00000000..87cf745c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecircumflextilde.glif new file mode 100644 index 00000000..7c93e1af --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ecircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/edieresis.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..48a77fa0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/edieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/edotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..9f5a28c1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/edotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/edotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/edotbelow.glif new file mode 100644 index 00000000..9066127f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/edotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/egrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..d1f3f1ca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/egrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ehookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ehookabove.glif new file mode 100644 index 00000000..5bd60e3f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ehookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eight.den.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eight.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eight.den.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eight.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eight.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eight.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eight.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eight.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eight.inf.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eight.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eight.inf.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eight.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eight.num.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eight.num.glif new file mode 100644 index 00000000..b8fc65b8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eight.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eight.sup.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eight.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/eight.sup.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eight.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ellipsis.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ellipsis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ellipsis.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ellipsis.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/emacron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..85931f32 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/emacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/emdash.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/emdash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/emdash.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/emdash.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/endash.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/endash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/endash.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/endash.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eng.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eng.glif new file mode 100644 index 00000000..0052fb5e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eng.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eogonek.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..23e18d48 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eogonek.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal.end.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal.end.glif new file mode 100644 index 00000000..86475e94 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/equal.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/equal.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal.middle.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal.middle.glif new file mode 100644 index 00000000..b38ee576 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal.start.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal.start.glif new file mode 100644 index 00000000..651671b8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_asciitilde.liga.glif new file mode 100644 index 00000000..49dca9b1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_asciitilde.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_bar.end.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_bar.end.glif new file mode 100644 index 00000000..c25914da --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_bar.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_bar.liga.glif new file mode 100644 index 00000000..1d38ede4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_bar.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_bar_bar.end.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_bar_bar.end.glif new file mode 100644 index 00000000..42f6052f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_bar_bar.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_bar_bar.liga.glif new file mode 100644 index 00000000..f062c98b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_bar_bar.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_bar_bar_equal.middle.glif new file mode 100644 index 00000000..f7073f62 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_bar_bar_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_bar_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_bar_equal.middle.glif new file mode 100644 index 00000000..92a69f6c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_bar_equal.middle.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_colon_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_colon_equal.middle.glif new file mode 100644 index 00000000..dd980e58 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_colon_equal.middle.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_equal.liga.glif new file mode 100644 index 00000000..742182dc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_equal.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_equal_equal.liga.glif new file mode 100644 index 00000000..416f57fb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_equal_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_exclam_equal.middle.glif new file mode 100644 index 00000000..afb69767 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_exclam_equal.middle.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_greater.end.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_greater.end.glif new file mode 100644 index 00000000..7420cf3a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_greater.end.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_greater.liga.glif new file mode 100644 index 00000000..3c2da02f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_greater_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_greater_equal.middle.glif new file mode 100644 index 00000000..7567c0bf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_greater_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_greater_greater.end.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_greater_greater.end.glif new file mode 100644 index 00000000..d1ecc074 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_greater_greater.end.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_greater_greater.liga.glif new file mode 100644 index 00000000..75499cde --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_greater_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_greater_greater_equal.m.glif new file mode 100644 index 00000000..1286a1e9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_greater_greater_equal.m.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_less.end.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_less.end.glif new file mode 100644 index 00000000..f85ab0cb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_less.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_less.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_less.liga.glif new file mode 100644 index 00000000..e8f3e8ea --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_less.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_less_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_less_equal.middle.glif new file mode 100644 index 00000000..1613c207 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_less_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_less_less.end.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_less_less.end.glif new file mode 100644 index 00000000..f1329996 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_less_less.end.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_less_less.liga.glif new file mode 100644 index 00000000..8ae43cdf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_less_less.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_less_less_equal.middle.glif new file mode 100644 index 00000000..9ce4440a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_less_less_equal.middle.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_slash.end.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_slash.end.glif new file mode 100644 index 00000000..ed11a11a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_slash.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_slash.liga.glif new file mode 100644 index 00000000..6975423d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_slash.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_slash_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_slash_equal.middle.glif new file mode 100644 index 00000000..a3efc06c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_slash_equal.middle.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_slash_slash.end.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_slash_slash.end.glif new file mode 100644 index 00000000..8b922a5c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_slash_slash.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_slash_slash.liga.glif new file mode 100644 index 00000000..b3e0f9a5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_slash_slash.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_slash_slash_equal.middle.glif new file mode 100644 index 00000000..7fd902fc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/equal_slash_slash_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eth.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eth.glif new file mode 100644 index 00000000..e79070a6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/eth.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/etilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/etilde.glif new file mode 100644 index 00000000..4270e672 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/etilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/exclam.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/exclam.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/exclam.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/exclam.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/exclam_asciitilde.liga.glif new file mode 100644 index 00000000..d953c324 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/exclam_asciitilde.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/exclam_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/exclam_equal.liga.glif new file mode 100644 index 00000000..20f01069 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/exclam_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/exclam_equal_equal.liga.glif new file mode 100644 index 00000000..bf832424 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/exclam_equal_equal.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/exclam_exclam.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/exclam_exclam.liga.glif new file mode 100644 index 00000000..92766d8a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/exclam_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/exclam_exclam_period.liga.glif new file mode 100644 index 00000000..aaa387b3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/exclam_exclam_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/exclamdown.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/exclamdown.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/exclamdown.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/exclamdown.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/f.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/f.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/f.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/f.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/five.den.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/five.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/five.den.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/five.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/five.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/five.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/five.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/five.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/five.inf.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/five.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/five.inf.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/five.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/five.num.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/five.num.glif new file mode 100644 index 00000000..1e32166f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/five.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/five.sup.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/five.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/five.sup.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/five.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/fiveeighths.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/fiveeighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/fiveeighths.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/fiveeighths.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/fivesixths.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/fivesixths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/fivesixths.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/fivesixths.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/four.den.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/four.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/four.den.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/four.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/four.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/four.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/four.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/four.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/four.inf.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/four.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/four.inf.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/four.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/four.num.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/four.num.glif new file mode 100644 index 00000000..62ef719b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/four.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/four.sup.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/four.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/four.sup.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/four.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/fourfifths.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/fourfifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/fourfifths.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/fourfifths.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/fracbar.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/fracbar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/fracbar.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/fracbar.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/fraction.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/fraction.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/fraction.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/fraction.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/fullblock.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/fullblock.glif new file mode 100644 index 00000000..c0d56679 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/fullblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/g.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/g.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/g.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/g.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gbreve.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..8106dac7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gbreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gcaron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gcaron.glif new file mode 100644 index 00000000..92d0ec94 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gcircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..b9208df8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..99102b10 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gdotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..8317dbf6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/germandbls.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..8a633578 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/germandbls.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gmacron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gmacron.glif new file mode 100644 index 00000000..a3359b27 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gmacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/grave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/grave.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gravecmb.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gravecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gravecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gravecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gravecmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gravecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/gravecmb.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/gravecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/greater.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/greater.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_colon.liga.glif new file mode 100644 index 00000000..d04ff877 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_equal.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_equal.glif new file mode 100644 index 00000000..9ee7dab6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_equal.liga.glif new file mode 100644 index 00000000..00278bfc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_equal.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_equal.start.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_equal.start.glif new file mode 100644 index 00000000..f3a26d04 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_equal.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_equal_greater.liga.glif new file mode 100644 index 00000000..951334b2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_equal_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_greater.liga.glif new file mode 100644 index 00000000..b9a70b76 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_greater_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_greater_equal.liga.glif new file mode 100644 index 00000000..5e184094 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_greater_equal.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_greater_equal.start.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_greater_equal.start.glif new file mode 100644 index 00000000..9e98651d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_greater_equal.start.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_greater_greater.liga.glif new file mode 100644 index 00000000..b8a795e4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_greater_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_greater_hyphen.liga.glif new file mode 100644 index 00000000..b35e09fc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_greater_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_greater_hyphen.start.glif new file mode 100644 index 00000000..47102bcc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_greater_hyphen.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_hyphen.liga.glif new file mode 100644 index 00000000..8f4ecf5f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_hyphen.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_hyphen.start.glif new file mode 100644 index 00000000..fb9e61ff --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_hyphen.start.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_hyphen_greater.liga.glif new file mode 100644 index 00000000..9a58d6ca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greater_hyphen_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/greaterequal.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greaterequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/greaterequal.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/greaterequal.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/guillemetleft.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/guillemetleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/guillemetleft.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/guillemetleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/guillemetright.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/guillemetright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/guillemetright.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/guillemetright.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/guilsinglleft.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/guilsinglleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/guilsinglleft.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/guilsinglleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/guilsinglright.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/guilsinglright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/guilsinglright.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/guilsinglright.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/h.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/h.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/h.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/h.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hbar.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..1e447d79 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hbar.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hbrevebelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hbrevebelow.glif new file mode 100644 index 00000000..d6e375cd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hbrevebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hcedilla.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hcedilla.glif new file mode 100644 index 00000000..2c2a64c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hcedilla.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hcircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..88d5d131 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hdotbelow.glif new file mode 100644 index 00000000..016e22b4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavydbldashhorzbxd.glif new file mode 100644 index 00000000..6b6b3ec9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavydbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavydbldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavydbldashvertbxd.glif new file mode 100644 index 00000000..de2fa836 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavydbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavydnbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavydnbxd.glif new file mode 100644 index 00000000..324980b7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavydnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavydnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavydnhorzbxd.glif new file mode 100644 index 00000000..376e91dc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavydnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavydnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavydnleftbxd.glif new file mode 100644 index 00000000..c2d69ad1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavydnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavydnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavydnrightbxd.glif new file mode 100644 index 00000000..5583fea9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavydnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyhorzbxd.glif new file mode 100644 index 00000000..56e53e4c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyhorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyleftbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyleftbxd.glif new file mode 100644 index 00000000..e4627b09 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyleftlightrightbxd.glif new file mode 100644 index 00000000..40d48710 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyleftlightrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyquaddashhorzbxd.glif new file mode 100644 index 00000000..38b3d246 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyquaddashvertbxd.glif new file mode 100644 index 00000000..d7820ca2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyrightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyrightbxd.glif new file mode 100644 index 00000000..c56dcccb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavytrpldashhorzbxd.glif new file mode 100644 index 00000000..9a237227 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavytrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavytrpldashvertbxd.glif new file mode 100644 index 00000000..04aa39fd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavytrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyupbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyupbxd.glif new file mode 100644 index 00000000..76f4399d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyuphorzbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyuphorzbxd.glif new file mode 100644 index 00000000..5187a583 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyupleftbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyupleftbxd.glif new file mode 100644 index 00000000..306d20f4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyuplightdnbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyuplightdnbxd.glif new file mode 100644 index 00000000..033d9e8c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyuplightdnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyuprightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyuprightbxd.glif new file mode 100644 index 00000000..fdc00674 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyvertbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyvertbxd.glif new file mode 100644 index 00000000..ce9b09bc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyverthorzbxd.glif new file mode 100644 index 00000000..249c7e2c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyvertleftbxd.glif new file mode 100644 index 00000000..9d68de86 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyvertrightbxd.glif new file mode 100644 index 00000000..61590c89 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/heavyvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hlinebelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hlinebelow.glif new file mode 100644 index 00000000..67f92c1e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hookcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hookcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hookcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hookcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hookcmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hookcmb.glif new file mode 100644 index 00000000..2baf0f7f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hookcmb.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/horizontalbar.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/horizontalbar.glif new file mode 100644 index 00000000..ef4b3086 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/horizontalbar.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hungarumlaut.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hungarumlaut.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hungarumlaut.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hungarumlautcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hungarumlautcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hungarumlautcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hungarumlautcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hungarumlautcmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hungarumlautcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hungarumlautcmb.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hungarumlautcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen.end.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen.end.glif new file mode 100644 index 00000000..fcba8fae --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hyphen.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/hyphen.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen.middle.glif new file mode 100644 index 00000000..d2ae26be --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen.start.glif new file mode 100644 index 00000000..377a5c0a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_asciitilde.liga.glif new file mode 100644 index 00000000..359a39da --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_asciitilde.liga.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_bar.end.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_bar.end.glif new file mode 100644 index 00000000..fc141863 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_bar.end.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_bar.liga.glif new file mode 100644 index 00000000..567d4ee6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_bar.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_bar.end.glif new file mode 100644 index 00000000..9bfe649b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_bar.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_bar.liga.glif new file mode 100644 index 00000000..3484270d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif new file mode 100644 index 00000000..a610a744 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_hyphen.middle.glif new file mode 100644 index 00000000..a026a48d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_bar_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_greater.end.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_greater.end.glif new file mode 100644 index 00000000..e673233a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_greater.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_greater.liga.glif new file mode 100644 index 00000000..774de38a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_greater.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_greater.end.glif new file mode 100644 index 00000000..ba2d4fb5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_greater.end.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_greater.liga.glif new file mode 100644 index 00000000..a0a9590b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif new file mode 100644 index 00000000..dcf71325 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_hyphen.middle.glif new file mode 100644 index 00000000..53c4d4b3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_greater_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_hyphen.liga.glif new file mode 100644 index 00000000..4c49ab56 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_hyphen.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..52fb755c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_less.end.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_less.end.glif new file mode 100644 index 00000000..7cc6eb8d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_less.end.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_less.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_less.liga.glif new file mode 100644 index 00000000..c786cb4e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_less.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_less_hyphen.middle.glif new file mode 100644 index 00000000..51509e0b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_less_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_less_less.end.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_less_less.end.glif new file mode 100644 index 00000000..37b19947 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_less_less.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_less_less.liga.glif new file mode 100644 index 00000000..236ac1a1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_less_less.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_less_less_hyphen.middle.glif new file mode 100644 index 00000000..bb8acda8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/hyphen_less_less_hyphen.middle.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/i.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/i.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/i.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/i.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/iacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..7471e458 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/iacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ibreve.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..ca4c480a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ibreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/icaron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/icaron.glif new file mode 100644 index 00000000..a656c6f5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/icaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/icircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..d783a75f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/icircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/idieresis.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..918306b0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/idieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/idotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/idotaccent.glif new file mode 100644 index 00000000..22ebdcc5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/idotaccent.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/idotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/idotbelow.glif new file mode 100644 index 00000000..2506bb5d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/idotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/igrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..3860b00b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/igrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ihookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ihookabove.glif new file mode 100644 index 00000000..4089da5e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ihookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/imacron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..bd9552a4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/imacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/iogonek.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..6e0a4277 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/iogonek.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/itilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..624ddb48 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/itilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/j.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/j.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/j.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/j.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/jcaron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/jcaron.glif new file mode 100644 index 00000000..952c55e8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/jcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/jcircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..fede4524 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/k.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/k.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/k.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/k.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/kcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..c08932c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/kdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/kdotbelow.glif new file mode 100644 index 00000000..72fc259e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/kdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/klinebelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/klinebelow.glif new file mode 100644 index 00000000..56ff055f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/klinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/l.dot.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/l.dot.glif new file mode 100644 index 00000000..3a72d8c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/l.dot.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/l.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/l.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/l.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/l.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..975c89fd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/layerinfo.plist b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/layerinfo.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/layerinfo.plist rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/layerinfo.plist diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lcaron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..2a612039 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lcircumflexbelow.glif new file mode 100644 index 00000000..efcee067 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..61eb9526 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ldotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ldotbelow.glif new file mode 100644 index 00000000..e4b01ec4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ldotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftdnheavyrightuplightbxd.glif new file mode 100644 index 00000000..e2c05404 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftdnheavyrightuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lefteighthblock.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lefteighthblock.glif new file mode 100644 index 00000000..bd0981c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lefteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftfiveeighthsblock.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftfiveeighthsblock.glif new file mode 100644 index 00000000..1db3b143 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lefthalfblock.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lefthalfblock.glif new file mode 100644 index 00000000..7ad2b780 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lefthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftheavyrightdnlightbxd.glif new file mode 100644 index 00000000..2e1372fb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftheavyrightuplightbxd.glif new file mode 100644 index 00000000..070d16da --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftheavyrightvertlightbxd.glif new file mode 100644 index 00000000..fb9387a7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftheavyrightvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftlightrightdnheavybxd.glif new file mode 100644 index 00000000..0d894614 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftlightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftlightrightupheavybxd.glif new file mode 100644 index 00000000..de9e26bd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftlightrightvertheavybxd.glif new file mode 100644 index 00000000..ab2441e6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftlightrightvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftquarterblock.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftquarterblock.glif new file mode 100644 index 00000000..0a473fc6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftseveneighthsblock.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftseveneighthsblock.glif new file mode 100644 index 00000000..e6dd7d1a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftthreeeighthsblock.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftthreeeighthsblock.glif new file mode 100644 index 00000000..c6bf4e61 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftthreequartersblock.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftthreequartersblock.glif new file mode 100644 index 00000000..75cb3ef3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftupheavyrightdnlightbxd.glif new file mode 100644 index 00000000..d5b485fe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/leftupheavyrightdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/less.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/less.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_asciitilde.liga.glif new file mode 100644 index 00000000..70322010 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_asciitilde.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..2cd76579 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_asciitilde_asciitilde.liga.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_asciitilde_greater.liga.glif new file mode 100644 index 00000000..564009d4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_asciitilde_greater.liga.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_asterisk.liga.glif new file mode 100644 index 00000000..83916b1c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_asterisk_greater.liga.glif new file mode 100644 index 00000000..f7d8ac5f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_asterisk_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_bar.liga.glif new file mode 100644 index 00000000..6741c50e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_bar.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_bar_bar.liga.glif new file mode 100644 index 00000000..23a2893b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_bar_bar.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_bar_bar_bar.liga.glif new file mode 100644 index 00000000..b4bfe5dd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_bar_bar_bar.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_bar_greater.liga.glif new file mode 100644 index 00000000..bc89e2b2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_bar_greater.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_colon.liga.glif new file mode 100644 index 00000000..9a4d568a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_dollar.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_dollar.liga.glif new file mode 100644 index 00000000..86aaedc0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_dollar.liga.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_dollar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_dollar_greater.liga.glif new file mode 100644 index 00000000..4ce6eeb1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_dollar_greater.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_equal.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_equal.glif new file mode 100644 index 00000000..7619f3fa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_equal.liga.glif new file mode 100644 index 00000000..f373219f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_equal.start.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_equal.start.glif new file mode 100644 index 00000000..6a9656e0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_equal.start.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_equal_greater.liga.glif new file mode 100644 index 00000000..480f709a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_equal_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_equal_less.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_equal_less.liga.glif new file mode 100644 index 00000000..2ff677cb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_equal_less.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..90830a77 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_greater.liga.glif new file mode 100644 index 00000000..27a7826a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_greater.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_hyphen.liga.glif new file mode 100644 index 00000000..5b2ef222 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_hyphen.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_hyphen.start.glif new file mode 100644 index 00000000..70c78234 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_hyphen.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_hyphen_greater.liga.glif new file mode 100644 index 00000000..c982f517 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_hyphen_greater.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_hyphen_less.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_hyphen_less.liga.glif new file mode 100644 index 00000000..c2206c0e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_hyphen_less.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_less.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_less.liga.glif new file mode 100644 index 00000000..92af21ce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_less.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_less_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_less_equal.liga.glif new file mode 100644 index 00000000..3a5b00b5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_less_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_less_equal.start.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_less_equal.start.glif new file mode 100644 index 00000000..88767731 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_less_equal.start.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_less_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_less_hyphen.liga.glif new file mode 100644 index 00000000..0fa66ee6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_less_hyphen.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_less_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_less_hyphen.start.glif new file mode 100644 index 00000000..8e2bdf8d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_less_hyphen.start.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_less_less.liga.glif new file mode 100644 index 00000000..a70371be --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_less_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_plus.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_plus.liga.glif new file mode 100644 index 00000000..99f638f0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_plus.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_plus_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_plus_greater.liga.glif new file mode 100644 index 00000000..9bdafccf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_plus_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_slash.liga.glif new file mode 100644 index 00000000..f6a3f8fa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_slash.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_slash_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_slash_greater.liga.glif new file mode 100644 index 00000000..02a91055 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/less_slash_greater.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/lessequal.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lessequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/lessequal.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lessequal.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightarcdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightarcdnleftbxd.glif new file mode 100644 index 00000000..5730c585 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightarcdnleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightarcdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightarcdnrightbxd.glif new file mode 100644 index 00000000..5d1f36af --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightarcdnrightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightarcupleftbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightarcupleftbxd.glif new file mode 100644 index 00000000..522e48a2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightarcupleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightarcuprightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightarcuprightbxd.glif new file mode 100644 index 00000000..f625452d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightarcuprightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdbldashhorzbxd.glif new file mode 100644 index 00000000..4fb7ffd5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdbldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdbldashvertbxd.glif new file mode 100644 index 00000000..ff83e2cc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdiagcrossbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdiagcrossbxd.glif new file mode 100644 index 00000000..0515b11c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdiagcrossbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdiagupleftdnrightbxd.glif new file mode 100644 index 00000000..013229f2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdiagupleftdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdiaguprightdnleftbxd.glif new file mode 100644 index 00000000..8d297d57 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdiaguprightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdnbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdnbxd.glif new file mode 100644 index 00000000..2a33f416 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdnhorzbxd.glif new file mode 100644 index 00000000..f5cc96a8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdnleftbxd.glif new file mode 100644 index 00000000..a69c2bc2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdnrightbxd.glif new file mode 100644 index 00000000..dade37dd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lighthorzbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lighthorzbxd.glif new file mode 100644 index 00000000..04a99835 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lighthorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightleftbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightleftbxd.glif new file mode 100644 index 00000000..a7182b26 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightleftheavyrightbxd.glif new file mode 100644 index 00000000..108b2602 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightleftheavyrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightquaddashhorzbxd.glif new file mode 100644 index 00000000..671ce01a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightquaddashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightquaddashvertbxd.glif new file mode 100644 index 00000000..3bedfc07 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightrightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightrightbxd.glif new file mode 100644 index 00000000..e37d9174 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightshade.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightshade.glif new file mode 100644 index 00000000..0e5291b7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightshade.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lighttrpldashhorzbxd.glif new file mode 100644 index 00000000..fe7a66cc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lighttrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lighttrpldashvertbxd.glif new file mode 100644 index 00000000..f230fa72 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lighttrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightupbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightupbxd.glif new file mode 100644 index 00000000..1bd58bef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightupheavydnbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightupheavydnbxd.glif new file mode 100644 index 00000000..e4dc31f7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightupheavydnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightuphorzbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightuphorzbxd.glif new file mode 100644 index 00000000..603e7ef8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightupleftbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightupleftbxd.glif new file mode 100644 index 00000000..c465c5f5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightuprightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightuprightbxd.glif new file mode 100644 index 00000000..ac24d393 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightvertbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightvertbxd.glif new file mode 100644 index 00000000..b949d420 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightverthorzbxd.glif new file mode 100644 index 00000000..d1af4cc4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightvertleftbxd.glif new file mode 100644 index 00000000..bf9d2d77 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightvertrightbxd.glif new file mode 100644 index 00000000..5383b1e4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lightvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ligspacer.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ligspacer.glif new file mode 100644 index 00000000..aaf0214e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ligspacer.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/llinebelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/llinebelow.glif new file mode 100644 index 00000000..21ce61c3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/llinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lmacrondotbelow.glif new file mode 100644 index 00000000..7d1cc20f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lmacrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lslash.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..f94f03c9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/lslash.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/m.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/m.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/m.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/m.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/macron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/macron.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/macronbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/macronbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/macronbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/macronbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/macroncmb.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/macroncmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/macroncmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/macroncmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/macroncmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/macroncmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/macroncmb.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/macroncmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/macronlowmod.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/macronlowmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/macronlowmod.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/macronlowmod.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/macute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/macute.glif new file mode 100644 index 00000000..d8da0762 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/macute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/mdotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/mdotaccent.glif new file mode 100644 index 00000000..7efa019f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/mdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/mdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/mdotbelow.glif new file mode 100644 index 00000000..13d17c03 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/mdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/mediumshade.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/mediumshade.glif new file mode 100644 index 00000000..37be9904 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/mediumshade.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/middotcat.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/middotcat.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/middotcat.cap.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/middotcat.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/middotcat.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/middotcat.glif new file mode 100644 index 00000000..8668cb70 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/middotcat.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/minus.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/minus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/minus.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/minus.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/mu.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/mu.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/mu.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/mu.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/multiply.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/multiply.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/multiply.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/multiply.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/n.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/n.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/n.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/n.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/nacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..08206b69 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/nacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/naira.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/naira.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/naira.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/naira.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ncaron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..4bc7f8e5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ncaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ncircumflexbelow.glif new file mode 100644 index 00000000..fc1e2ffc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ncircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ncommaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..8b48958f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ndotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ndotaccent.glif new file mode 100644 index 00000000..bece7a92 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ndotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ndotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ndotbelow.glif new file mode 100644 index 00000000..3bab207f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ngrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ngrave.glif new file mode 100644 index 00000000..3fa155f0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/nine.den.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/nine.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/nine.den.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/nine.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/nine.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/nine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/nine.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/nine.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/nine.inf.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/nine.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/nine.inf.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/nine.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/nine.num.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/nine.num.glif new file mode 100644 index 00000000..36a7e399 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/nine.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/nine.sup.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/nine.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/nine.sup.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/nine.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/nlinebelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/nlinebelow.glif new file mode 100644 index 00000000..4a8c4887 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/nlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/notequal.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/notequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/notequal.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/notequal.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ntilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..5c25937e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign.end.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign.end.glif new file mode 100644 index 00000000..8ea87628 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign.end.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/numbersign.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/numbersign.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign.middle.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign.middle.glif new file mode 100644 index 00000000..ecc71f32 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign.start.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign.start.glif new file mode 100644 index 00000000..54cb5caf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign.start.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_braceleft.liga.glif new file mode 100644 index 00000000..5248bd83 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_braceleft.liga.glif @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_bracketleft.liga.glif new file mode 100644 index 00000000..35181d29 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_bracketleft.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_colon.liga.glif new file mode 100644 index 00000000..d17c39ce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_colon.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_equal.liga.glif new file mode 100644 index 00000000..adad35a9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_equal.liga.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_exclam.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_exclam.liga.glif new file mode 100644 index 00000000..9dd91dfe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_parenleft.liga.glif new file mode 100644 index 00000000..8841ac72 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_parenleft.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_question.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_question.liga.glif new file mode 100644 index 00000000..736f5cfd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_underscore.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_underscore.liga.glif new file mode 100644 index 00000000..fa2439f9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_underscore.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_underscore_parenleft.glif new file mode 100644 index 00000000..b373f7e1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/numbersign_underscore_parenleft.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/o.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/o.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/o.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/o.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/oacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..96480e1f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/oacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/obreve.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..c8e69603 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/obreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocaron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocaron.glif new file mode 100644 index 00000000..b65b681b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..bf2bdac5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocircumflexacute.glif new file mode 100644 index 00000000..d74c9ec8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocircumflexdotbelow.glif new file mode 100644 index 00000000..1bd62e9f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocircumflexgrave.glif new file mode 100644 index 00000000..a7771acb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocircumflexhookabove.glif new file mode 100644 index 00000000..cb7c7b23 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocircumflextilde.glif new file mode 100644 index 00000000..61b1ceb1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ocircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/odieresis.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..486c24fe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/odieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/odotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/odotaccent.glif new file mode 100644 index 00000000..7aba8d77 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/odotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/odotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/odotbelow.glif new file mode 100644 index 00000000..59c1de4c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/odotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/oe.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/oe.glif new file mode 100644 index 00000000..5fdfb174 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/oe.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ogonek.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ogonek.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ogonekcmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ogonekcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ogonekcmb.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ogonekcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ograve.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..687bd719 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ograve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohookabove.glif new file mode 100644 index 00000000..5b7c4c04 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohorn.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohorn.glif new file mode 100644 index 00000000..449f368c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohorn.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohornacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohornacute.glif new file mode 100644 index 00000000..57c0339a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohorndotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohorndotbelow.glif new file mode 100644 index 00000000..aea32dcd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohorndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohorngrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohorngrave.glif new file mode 100644 index 00000000..40c8f18b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohorngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohornhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohornhookabove.glif new file mode 100644 index 00000000..71cf395f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohorntilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohorntilde.glif new file mode 100644 index 00000000..1dca34c8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohorntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..fc404078 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/omacron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..04a335ca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/omacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/one.den.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/one.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/one.den.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/one.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/one.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/one.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/one.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/one.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/one.inf.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/one.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/one.inf.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/one.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/one.num.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/one.num.glif new file mode 100644 index 00000000..33b01843 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/one.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/one.sup.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/one.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/one.sup.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/one.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/oneeighth.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/oneeighth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/oneeighth.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/oneeighth.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/onefifth.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/onefifth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/onefifth.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/onefifth.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/onehalf.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/onehalf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/onehalf.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/onehalf.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/onequarter.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/onequarter.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/onequarter.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/onequarter.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/onesixth.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/onesixth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/onesixth.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/onesixth.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/onethird.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/onethird.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/onethird.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/onethird.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/oogonek.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/oogonek.glif new file mode 100644 index 00000000..85ad84c8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/oogonek.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ordfeminine.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ordfeminine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ordfeminine.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ordfeminine.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ordmasculine.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ordmasculine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ordmasculine.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ordmasculine.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/oslash.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..7f84d6a1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/oslash.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/otilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..518386b6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/otilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/p.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/p.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/p.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/p.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/paragraph.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/paragraph.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/paragraph.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/paragraph.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/parenleft.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/parenleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/parenleft.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/parenleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/parenright.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/parenright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/parenright.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/parenright.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/percent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/percent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/percent.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/percent.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/percent_percent.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/percent_percent.liga.glif new file mode 100644 index 00000000..e9a6853a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/percent_percent.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/period.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/period.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_equal.liga.glif new file mode 100644 index 00000000..b8582ddb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_hyphen.liga.glif new file mode 100644 index 00000000..9a3d25b5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_period.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_period.liga.glif new file mode 100644 index 00000000..7040f36f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_period_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_period_equal.liga.glif new file mode 100644 index 00000000..72f7d809 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_period_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_period_less.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_period_less.liga.glif new file mode 100644 index 00000000..f4300be9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_period_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_period_period.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_period_period.liga.glif new file mode 100644 index 00000000..3caf3c84 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_period_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_question.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_question.liga.glif new file mode 100644 index 00000000..66f9a08d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/period_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/periodcentered.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/periodcentered.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/periodcentered.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/periodcentered.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/peso.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/peso.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/peso.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/peso.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/plus.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/plus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/plus.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/plus.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/plus_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/plus_greater.liga.glif new file mode 100644 index 00000000..79edbed2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/plus_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/plus_plus.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/plus_plus.liga.glif new file mode 100644 index 00000000..95cb3888 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/plus_plus.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/plus_plus_plus.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/plus_plus_plus.liga.glif new file mode 100644 index 00000000..4be8675b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/plus_plus_plus.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/plusminus.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/plusminus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/plusminus.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/plusminus.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/primemod.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/primemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/primemod.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/primemod.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/published.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/published.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/published.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/published.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/q.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/q.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/q.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/q.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/question.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/question.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/question.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/question.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/question_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/question_colon.liga.glif new file mode 100644 index 00000000..cfffedc2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/question_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/question_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/question_equal.liga.glif new file mode 100644 index 00000000..202bc0fa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/question_equal.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/question_period.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/question_period.liga.glif new file mode 100644 index 00000000..27df85cc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/question_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/question_question.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/question_question.liga.glif new file mode 100644 index 00000000..43c4bf3e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/question_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/questiondown.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/questiondown.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/questiondown.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/questiondown.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/quotedbl.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/quotedbl.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/quotedbl.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/quotedbl.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/quotedblbase.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/quotedblbase.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/quotedblbase.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/quotedblbase.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/quotedblleft.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/quotedblleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/quotedblleft.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/quotedblleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/quotedblright.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/quotedblright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/quotedblright.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/quotedblright.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/quoteleft.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/quoteleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/quoteleft.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/quoteleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/quoteright.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/quoteright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/quoteright.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/quoteright.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/quotesinglbase.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/quotesinglbase.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/quotesinglbase.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/quotesinglbase.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/quotesingle.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/quotesingle.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/quotesingle.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/quotesingle.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/r.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/r.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/r.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/r.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/racute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/racute.glif new file mode 100644 index 00000000..5c689693 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/racute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rcaron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..651c6aa2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..fc77b276 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rdotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rdotaccent.glif new file mode 100644 index 00000000..9d0719ef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rdotbelow.glif new file mode 100644 index 00000000..82c27bfa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/registered.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/registered.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/registered.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/registered.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightdnheavyleftuplightbxd.glif new file mode 100644 index 00000000..919f0f95 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightdnheavyleftuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/righteighthblock.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/righteighthblock.glif new file mode 100644 index 00000000..ee46a32d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/righteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/righthalfblock.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/righthalfblock.glif new file mode 100644 index 00000000..9f3ba315 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/righthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightheavyleftdnlightbxd.glif new file mode 100644 index 00000000..9f532883 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightheavyleftuplightbxd.glif new file mode 100644 index 00000000..e3261e35 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightheavyleftvertlightbxd.glif new file mode 100644 index 00000000..b57ced9a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightheavyleftvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightlightleftdnheavybxd.glif new file mode 100644 index 00000000..2f93f936 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightlightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightlightleftupheavybxd.glif new file mode 100644 index 00000000..f63072ce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightlightleftvertheavybxd.glif new file mode 100644 index 00000000..0e91ed45 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightlightleftvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightupheavyleftdnlightbxd.glif new file mode 100644 index 00000000..579a0eb4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rightupheavyleftdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ring.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ring.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ring.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ring.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ringcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ringcmb.cap.glif new file mode 100644 index 00000000..e5de2cb4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ringcmb.cap.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ringcmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ringcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ringcmb.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ringcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ringhalfleft.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ringhalfleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ringhalfleft.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ringhalfleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ringhalfright.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ringhalfright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ringhalfright.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ringhalfright.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rlinebelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rlinebelow.glif new file mode 100644 index 00000000..e8ff34fa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rmacrondotbelow.glif new file mode 100644 index 00000000..dc82987c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/rmacrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/s.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/s.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/s.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/s.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/sacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..73bb3773 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/sacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/scaron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..eddf370a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/scaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/scedilla.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..5dce707d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/scedilla.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/schwa.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/schwa.glif new file mode 100644 index 00000000..6b2aaaa6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/schwa.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/scircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..8b733238 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/scircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/scommaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..38ec0775 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/sdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/sdotbelow.glif new file mode 100644 index 00000000..7886ab3c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/sdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/section.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/section.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/section.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/section.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/semicolon.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/semicolon.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/semicolon.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/semicolon.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/semicolon_semicolon.liga.glif new file mode 100644 index 00000000..8ac70179 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/semicolon_semicolon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/servicemark.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/servicemark.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/servicemark.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/servicemark.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/seven.den.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/seven.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/seven.den.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/seven.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/seven.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/seven.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/seven.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/seven.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/seven.inf.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/seven.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/seven.inf.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/seven.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/seven.num.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/seven.num.glif new file mode 100644 index 00000000..16a9c596 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/seven.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/seven.sup.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/seven.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/seven.sup.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/seven.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/seveneighths.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/seveneighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/seveneighths.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/seveneighths.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/six.den.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/six.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/six.den.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/six.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/six.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/six.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/six.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/six.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/six.inf.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/six.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/six.inf.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/six.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/six.num.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/six.num.glif new file mode 100644 index 00000000..50b656e5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/six.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/six.sup.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/six.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/six.sup.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/six.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/slash.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/slash.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_asterisk.liga.glif new file mode 100644 index 00000000..d7c7e65f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_backslash.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_backslash.liga.glif new file mode 100644 index 00000000..e3d60c91 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_backslash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_equal.liga.glif new file mode 100644 index 00000000..24b6774d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_equal.start.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_equal.start.glif new file mode 100644 index 00000000..dbafe809 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_greater.liga.glif new file mode 100644 index 00000000..02859d73 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_slash.liga.glif new file mode 100644 index 00000000..2bc4a71a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_slash_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_slash_equal.liga.glif new file mode 100644 index 00000000..0a64b02b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_slash_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_slash_equal.start.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_slash_equal.start.glif new file mode 100644 index 00000000..43a1f584 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_slash_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_slash_slash.liga.glif new file mode 100644 index 00000000..3f943989 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/slash_slash_slash.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/space.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/space.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/space.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/space.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/sterling.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/sterling.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/sterling.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/sterling.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/t.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/t.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/t.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/t.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tbar.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..9703d85b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tbar.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tcaron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..6021dc46 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tcedilla.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..93ea8976 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tcedilla.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tcircumflexbelow.glif new file mode 100644 index 00000000..4aaf334a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..013cc9b9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tdotbelow.glif new file mode 100644 index 00000000..77dd783c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/thorn.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..82a69746 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/thorn.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/three.den.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/three.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/three.den.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/three.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/three.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/three.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/three.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/three.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/three.inf.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/three.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/three.inf.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/three.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/three.num.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/three.num.glif new file mode 100644 index 00000000..cfc019ee --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/three.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/three.sup.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/three.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/three.sup.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/three.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/threeeighths.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/threeeighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/threeeighths.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/threeeighths.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/threefifths.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/threefifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/threefifths.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/threefifths.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/threequarters.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/threequarters.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/threequarters.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/threequarters.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tilde.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tildecmb.cap.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tildecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tildecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tildecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tildecmb.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tildecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tildecmb.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tildecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tlinebelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tlinebelow.glif new file mode 100644 index 00000000..09c018e3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/tlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/trademark.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/trademark.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/trademark.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/trademark.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/two.den.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/two.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/two.den.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/two.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/two.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/two.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/two.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/two.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/two.inf.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/two.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/two.inf.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/two.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/two.num.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/two.num.glif new file mode 100644 index 00000000..631bd1e0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/two.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/two.sup.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/two.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/two.sup.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/two.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/twodotleader.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/twodotleader.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/twodotleader.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/twodotleader.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/twofifths.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/twofifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/twofifths.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/twofifths.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/twothirds.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/twothirds.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/twothirds.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/twothirds.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/u.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/u.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/u.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/u.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..24dbf89a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ubreve.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..5bca42ab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ubreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ucaron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ucaron.glif new file mode 100644 index 00000000..b37fa172 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ucaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ucircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..2ce0aceb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/udieresis.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..2b595972 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/udieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/udieresisacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/udieresisacute.glif new file mode 100644 index 00000000..b1c5ec3c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/udieresisacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/udieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/udieresiscaron.glif new file mode 100644 index 00000000..0bdbe632 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/udieresiscaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/udieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/udieresisgrave.glif new file mode 100644 index 00000000..1b365b1f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/udieresisgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/udieresismacron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/udieresismacron.glif new file mode 100644 index 00000000..ec678a0f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/udieresismacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/udotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/udotbelow.glif new file mode 100644 index 00000000..569493be --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/udotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ugrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..886d08ed --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ugrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhookabove.glif new file mode 100644 index 00000000..678df7dc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhorn.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhorn.glif new file mode 100644 index 00000000..fb3f9001 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhorn.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhornacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhornacute.glif new file mode 100644 index 00000000..686969fe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhorndotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhorndotbelow.glif new file mode 100644 index 00000000..a601d383 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhorndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhorngrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhorngrave.glif new file mode 100644 index 00000000..f4735601 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhorngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhornhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhornhookabove.glif new file mode 100644 index 00000000..439cc32f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhorntilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhorntilde.glif new file mode 100644 index 00000000..bc27808a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhorntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..93da49be --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/umacron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..bbdc882e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/umacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/underscore.end.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/underscore.end.glif new file mode 100644 index 00000000..822cda3a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/underscore.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/underscore.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/underscore.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/underscore.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/underscore.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/underscore.middle.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/underscore.middle.glif new file mode 100644 index 00000000..63e57a5a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/underscore.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/underscore.start.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/underscore.start.glif new file mode 100644 index 00000000..68a74572 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/underscore.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/underscore_bar_underscore.m.glif new file mode 100644 index 00000000..599d0a38 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/underscore_bar_underscore.m.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uni00A_0.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni00A_0.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uni00A_0.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni00A_0.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uni0326.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni0326.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uni0326.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni0326.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni1E_9E_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni1E_9E_.glif new file mode 100644 index 00000000..aabf9f30 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni1E_9E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni2011.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni2011.glif new file mode 100644 index 00000000..33e0d4b6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni2011.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uni20B_9.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni20B_9.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uni20B_9.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni20B_9.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uni20B_A_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni20B_A_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uni20B_A_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni20B_A_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uni20B_D_.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni20B_D_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uni20B_D_.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni20B_D_.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni2610.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni2610.glif new file mode 100644 index 00000000..8f4c99bd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni2610.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni2611.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni2611.glif new file mode 100644 index 00000000..2be8e09b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni2611.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni2612.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni2612.glif new file mode 100644 index 00000000..1820431c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni2612.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni2713.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni2713.glif new file mode 100644 index 00000000..d758b39b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uni2713.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uniA_788.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniA_788.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uniA_788.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniA_788.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0A_0.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0A_0.glif new file mode 100644 index 00000000..d79ff9ec --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0A_0.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0A_1.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0A_1.glif new file mode 100644 index 00000000..d8d16815 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0A_1.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0A_2.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0A_2.glif new file mode 100644 index 00000000..b4482921 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0A_2.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0B_0.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0B_0.glif new file mode 100644 index 00000000..4ef8ce00 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0B_0.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0B_1.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0B_1.glif new file mode 100644 index 00000000..0394e300 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0B_1.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0B_2.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0B_2.glif new file mode 100644 index 00000000..d8af7faf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0B_2.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0B_3.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0B_3.glif new file mode 100644 index 00000000..ac834c4c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uniE_0B_3.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uogonek.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..9ee3b762 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uogonek.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/updblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/updblhorzsngbxd.glif new file mode 100644 index 00000000..77dfe463 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/updblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/updblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/updblleftsngbxd.glif new file mode 100644 index 00000000..ecc547c0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/updblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/updblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/updblrightsngbxd.glif new file mode 100644 index 00000000..c5d567d8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/updblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upeighthblock.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upeighthblock.glif new file mode 100644 index 00000000..edbfe3c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upeighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uphalfblock.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uphalfblock.glif new file mode 100644 index 00000000..f6006f81 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uphalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upheavydnhorzlightbxd.glif new file mode 100644 index 00000000..7591ec1c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upheavydnhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upheavyhorzlightbxd.glif new file mode 100644 index 00000000..f73a95d9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upheavyleftdnlightbxd.glif new file mode 100644 index 00000000..0e83c612 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upheavyleftlightbxd.glif new file mode 100644 index 00000000..5a92773b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upheavyrightdnlightbxd.glif new file mode 100644 index 00000000..7689c5b8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upheavyrightlightbxd.glif new file mode 100644 index 00000000..104bff34 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upleftdnleftdnrightquadrant.glif new file mode 100644 index 00000000..e0bdb776 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upleftdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upleftdnrightquadrant.glif new file mode 100644 index 00000000..6ca0f95d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upleftdnrightquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upleftquadrant.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upleftquadrant.glif new file mode 100644 index 00000000..9ab84ae1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upleftuprightdnleftquadrant.glif new file mode 100644 index 00000000..68671562 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upleftuprightdnleftquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upleftuprightdnrightquadrant.glif new file mode 100644 index 00000000..a20ceb2d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upleftuprightdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uplightdnhorzheavybxd.glif new file mode 100644 index 00000000..36d830f5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uplightdnhorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uplighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uplighthorzheavybxd.glif new file mode 100644 index 00000000..eb2e321f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uplighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uplightleftdnheavybxd.glif new file mode 100644 index 00000000..01e9ef51 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uplightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uplightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uplightleftheavybxd.glif new file mode 100644 index 00000000..cfcd797c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uplightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uplightrightdnheavybxd.glif new file mode 100644 index 00000000..669d2c1c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uplightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uplightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uplightrightheavybxd.glif new file mode 100644 index 00000000..fb80ef60 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uplightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uprightdnleftdnrightquadrant.glif new file mode 100644 index 00000000..4211b39d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uprightdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uprightdnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uprightdnleftquadrant.glif new file mode 100644 index 00000000..aea6004b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uprightdnleftquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uprightquadrant.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uprightquadrant.glif new file mode 100644 index 00000000..245dc1dd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uprightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upsnghorzdblbxd.glif new file mode 100644 index 00000000..8fe9841c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upsngleftdblbxd.glif new file mode 100644 index 00000000..9c532a66 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upsngrightdblbxd.glif new file mode 100644 index 00000000..9fc7c404 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/upsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uring.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uring.glif new file mode 100644 index 00000000..191e9492 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/uring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/utilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..2bcf8cc3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/utilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/v.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/v.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/v.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/v.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vdotbelow.glif new file mode 100644 index 00000000..a3c1ff84 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertdblhorzsngbxd.glif new file mode 100644 index 00000000..d3f3ee70 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertdblhorzsngbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertdblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertdblleftsngbxd.glif new file mode 100644 index 00000000..628b80ba --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertdblleftsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertdblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertdblrightsngbxd.glif new file mode 100644 index 00000000..ea9a9457 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertdblrightsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertheavyhorzlightbxd.glif new file mode 100644 index 00000000..f2ad8e15 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertheavyhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertheavyleftlightbxd.glif new file mode 100644 index 00000000..91322671 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertheavyleftlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertheavyrightlightbxd.glif new file mode 100644 index 00000000..d5d3ebcc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertheavyrightlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/verticallinelowmod.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/verticallinelowmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/verticallinelowmod.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/verticallinelowmod.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/verticallinemod.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/verticallinemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/verticallinemod.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/verticallinemod.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertlighthorzheavybxd.glif new file mode 100644 index 00000000..21e1d417 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertlighthorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertlightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertlightleftheavybxd.glif new file mode 100644 index 00000000..23914784 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertlightleftheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertlightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertlightrightheavybxd.glif new file mode 100644 index 00000000..a4dcfc53 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertlightrightheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertsnghorzdblbxd.glif new file mode 100644 index 00000000..dc159a8c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertsnghorzdblbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertsngleftdblbxd.glif new file mode 100644 index 00000000..cf076318 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertsngleftdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertsngrightdblbxd.glif new file mode 100644 index 00000000..0b5d678b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/vertsngrightdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/w.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/w.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/w.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/w.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/w_w_w.liga.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/w_w_w.liga.glif new file mode 100644 index 00000000..9b354fe2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/w_w_w.liga.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/wacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..bb18b4a1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/wacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/wcircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..68278e09 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/wdieresis.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..e5a7477d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/wdieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/wgrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..32eee467 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/wgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/won.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/won.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/won.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/won.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/x.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/x.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/x.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/x.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/xdieresis.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/xdieresis.glif new file mode 100644 index 00000000..b649e86b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/xdieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/y.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/y.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/y.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/y.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/yacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..4f318ae7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/yacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ycircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..5a649977 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ydieresis.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..3cdb111e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ydieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ydotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ydotaccent.glif new file mode 100644 index 00000000..0b5a35e4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ydotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ydotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ydotbelow.glif new file mode 100644 index 00000000..50612b8e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ydotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/yen.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/yen.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/yen.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/yen.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ygrave.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ygrave.glif new file mode 100644 index 00000000..1cc3feaa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ygrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/yhookabove.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/yhookabove.glif new file mode 100644 index 00000000..0fbc6c74 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/yhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ymacron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ymacron.glif new file mode 100644 index 00000000..5b10eabd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ymacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ytilde.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ytilde.glif new file mode 100644 index 00000000..d17e2a5c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/ytilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/z.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/z.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/z.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/z.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zacute.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..0a73c1ba --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zcaron.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..ae2f1adb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zcircumflex.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zcircumflex.glif new file mode 100644 index 00000000..cfa0760e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zdotaccent.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..1054a643 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zdotbelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zdotbelow.glif new file mode 100644 index 00000000..ab0bace9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zero.den.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zero.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zero.den.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zero.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zero.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zero.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zero.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zero.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zero.inf.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zero.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zero.inf.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zero.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zero.num.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zero.num.glif new file mode 100644 index 00000000..79b7d898 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zero.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zero.sup.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zero.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/zero.sup.glif rename to sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zero.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zlinebelow.glif b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zlinebelow.glif new file mode 100644 index 00000000..2ad657e3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/glyphs/zlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/layercontents.plist b/sources/instances/truetype/IntelOneMono-Medium.ufo/layercontents.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/layercontents.plist rename to sources/instances/truetype/IntelOneMono-Medium.ufo/layercontents.plist diff --git a/sources/instances/truetype/IntelOneMono-Medium.ufo/lib.plist b/sources/instances/truetype/IntelOneMono-Medium.ufo/lib.plist new file mode 100644 index 00000000..3b3b5b25 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Medium.ufo/lib.plist @@ -0,0 +1,1649 @@ + + + + + com.typemytype.robofont.compileSettings.autohint + 0 + com.typemytype.robofont.compileSettings.checkOutlines + + com.typemytype.robofont.compileSettings.createDummyDSIG + + com.typemytype.robofont.compileSettings.decompose + + com.typemytype.robofont.compileSettings.generateFormat + 1 + com.typemytype.robofont.compileSettings.layerName + foreground + com.typemytype.robofont.compileSettings.releaseMode + 1 + com.typemytype.robofont.italicSlantOffset + 0 + com.typemytype.robofont.segmentType + curve + com.typemytype.robofont.shouldAddPointsInSplineConversion + 1 + public.glyphOrder + + .notdef + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + S + T + U + V + W + X + Y + Z + a + b + c + d + e + f + g + h + i + j + k + l + m + n + o + p + q + r + s + t + u + v + w + x + y + z + period + comma + colon + semicolon + question + exclam + questiondown + exclamdown + ellipsis + twodotleader + quotedblleft + quotedblright + quotedblbase + quoteleft + quoteright + quotesinglbase + guillemetleft + guillemetright + guilsinglleft + guilsinglright + parenleft + parenright + bracketleft + bracketright + braceleft + braceright + slash + backslash + bar + hyphen + endash + emdash + periodcentered + bullet + underscore + ampersand + at + published + copyright + registered + servicemark + trademark + asterisk + dagger + daggerdbl + section + paragraph + zero + one + two + three + four + five + six + seven + eight + nine + colon.fig + plus + divide + minus + equal + notequal + asciitilde + approxequal + multiply + less + greater + lessequal + greaterequal + plusminus + asciicircum + mu + numbersign + percent + quotedbl + quotesingle + ordfeminine + ordmasculine + degree + dollar + sterling + yen + Euro + naira + peso + uni20BA + uni20BD + uni20B9 + bahtthai + won + cent + dong + onehalf + onethird + twothirds + onequarter + threequarters + onefifth + twofifths + threefifths + fourfifths + onesixth + fivesixths + oneeighth + threeeighths + fiveeighths + seveneighths + zero.sup + one.sup + two.sup + three.sup + four.sup + five.sup + six.sup + seven.sup + eight.sup + nine.sup + zero.inf + one.inf + two.inf + three.inf + four.inf + five.inf + six.inf + seven.inf + eight.inf + nine.inf + primemod + dblprimemod + commaturnedmod + apostrophemod + ringhalfleft + ringhalfright + verticallinemod + verticallinelowmod + acute + hungarumlaut + grave + circumflex + caron + breve + tilde + macron + dieresis + dotaccent + ring + uniA788 + macronlowmod + cedilla + ogonek + Aacute + Agrave + Acircumflex + Acircumflexdotbelow + Acircumflexacute + Acircumflexgrave + Acircumflexhookabove + Acircumflextilde + Acaron + Abreve + Abrevedotbelow + Abreveacute + Abrevegrave + Abrevehookabove + Abrevetilde + Atilde + Amacron + Adieresis + Adotaccent + Aring + Ahookabove + Adotbelow + Aogonek + AE + Blinebelow + Cacute + Ccircumflex + Ccaron + Cdotaccent + Ccedilla + Dcaron + Dcircumflexbelow + Dlinebelow + Ddotbelow + Dcroat + Eacute + Egrave + Ecircumflex + Ecircumflexdotbelow + Ecircumflexacute + Ecircumflexgrave + Ecircumflexhookabove + Ecircumflextilde + Ecaron + Ebreve + Etilde + Emacron + Edieresis + Edotaccent + Ehookabove + Edotbelow + Eogonek + Gcircumflex + Gcaron + Gbreve + Gmacron + Gdotaccent + Gcommaaccent + Hcircumflex + Hbrevebelow + Hdotbelow + Hcedilla + Hbar + Iacute + Igrave + Icircumflex + Icaron + Ibreve + Itilde + Imacron + Idieresis + Idotaccent + Ihookabove + Idotbelow + Iogonek + Jcircumflex + Klinebelow + Kcommaaccent + Kdotbelow + Lacute + Lcaron + Lcommaaccent + Lcircumflexbelow + Llinebelow + Lmacrondotbelow + Ldotbelow + L.dot + Lslash + Macute + Mdotaccent + Mdotbelow + Nacute + Ngrave + Ncaron + Ntilde + Ndotaccent + Ncircumflexbelow + Ncommaaccent + Ndotbelow + Nlinebelow + Eng + Oacute + Ohungarumlaut + Ograve + Ocircumflex + Ocircumflexdotbelow + Ocircumflexacute + Ocircumflexgrave + Ocircumflexhookabove + Ocircumflextilde + Ocaron + Obreve + Otilde + Omacron + Odieresis + Odotaccent + Ohookabove + Odotbelow + Oogonek + Oslash + OE + Ohorn + Ohornacute + Ohorngrave + Ohorntilde + Ohornhookabove + Ohorndotbelow + Racute + Rcaron + Rdotaccent + Rmacrondotbelow + Rcommaaccent + Rdotbelow + Rlinebelow + Sacute + Scircumflex + Scaron + Scommaaccent + Sdotbelow + Scedilla + uni1E9E + Tcaron + Tcircumflexbelow + Tcommaaccent + Tdotbelow + Tlinebelow + Tcedilla + Tbar + Uacute + Uhungarumlaut + Ugrave + Ucircumflex + Ucaron + Ubreve + Utilde + Umacron + Udieresis + Udieresisacute + Udieresisgrave + Udieresiscaron + Udieresismacron + Uring + Uhookabove + Udotbelow + Uogonek + Uhorn + Uhornacute + Uhorngrave + Uhorntilde + Uhornhookabove + Uhorndotbelow + Vdotbelow + Wacute + Wgrave + Wcircumflex + Wdieresis + Xdieresis + Yacute + Ygrave + Ycircumflex + Ytilde + Ymacron + Ydieresis + Ydotaccent + Yhookabove + Ydotbelow + Zacute + Zcircumflex + Zcaron + Zdotaccent + Zdotbelow + Zlinebelow + Eth + Thorn + Schwa + aacute + agrave + acircumflex + acircumflexdotbelow + acircumflexacute + acircumflexgrave + acircumflexhookabove + acircumflextilde + acaron + abreve + abrevedotbelow + abreveacute + abrevegrave + abrevehookabove + abrevetilde + atilde + amacron + adieresis + adotaccent + aring + ahookabove + adotbelow + aogonek + ae + blinebelow + cacute + ccircumflex + ccaron + cdotaccent + ccedilla + dcaron + dcircumflexbelow + dlinebelow + ddotbelow + dcroat + eacute + egrave + ecircumflex + ecircumflexdotbelow + ecircumflexacute + ecircumflexgrave + ecircumflexhookabove + ecircumflextilde + ecaron + ebreve + etilde + emacron + edieresis + edotaccent + ehookabove + edotbelow + eogonek + gcircumflex + gcaron + gbreve + gmacron + gdotaccent + gcommaaccent + hcircumflex + hbrevebelow + hlinebelow + hdotbelow + hcedilla + hbar + dotlessi + iacute + igrave + icircumflex + icaron + ibreve + itilde + imacron + idieresis + idotaccent + ihookabove + idotbelow + iogonek + dotlessj + jcircumflex + jcaron + klinebelow + kcommaaccent + kdotbelow + lacute + lcaron + lcommaaccent + lcircumflexbelow + llinebelow + lmacrondotbelow + ldotbelow + l.dot + lslash + macute + mdotaccent + mdotbelow + nacute + ngrave + ncaron + ntilde + ndotaccent + ncircumflexbelow + ncommaaccent + ndotbelow + nlinebelow + eng + oacute + ohungarumlaut + ograve + ocircumflex + ocircumflexdotbelow + ocircumflexacute + ocircumflexgrave + ocircumflexhookabove + ocircumflextilde + ocaron + obreve + otilde + omacron + odieresis + odotaccent + ohookabove + odotbelow + oogonek + oslash + oe + ohorn + ohornacute + ohorngrave + ohorntilde + ohornhookabove + ohorndotbelow + racute + rcaron + rdotaccent + rmacrondotbelow + rcommaaccent + rdotbelow + rlinebelow + sacute + scircumflex + scaron + scommaaccent + sdotbelow + scedilla + germandbls + tcaron + tcircumflexbelow + tcommaaccent + tdotbelow + tlinebelow + tcedilla + tbar + uacute + uhungarumlaut + ugrave + ucircumflex + ucaron + ubreve + utilde + umacron + udieresis + udieresisacute + udieresisgrave + udieresiscaron + udieresismacron + uring + uhookabove + udotbelow + uogonek + uhorn + uhornacute + uhorngrave + uhorntilde + uhornhookabove + uhorndotbelow + vdotbelow + wacute + wgrave + wcircumflex + wdieresis + xdieresis + yacute + ygrave + ycircumflex + ytilde + ymacron + ydieresis + ydotaccent + yhookabove + ydotbelow + zacute + zcircumflex + zcaron + zdotaccent + zdotbelow + zlinebelow + eth + thorn + schwa + space + uni00A0 + zero.num + one.num + two.num + three.num + four.num + five.num + six.num + seven.num + eight.num + nine.num + fraction + fracbar + zero.den + one.den + two.den + three.den + four.den + five.den + six.den + seven.den + eight.den + nine.den + uni2011 + horizontalbar + middotcat + middotcat.cap + acutecmb + hungarumlautcmb + gravecmb + commaaboverightcmb + circumflexcmb + caroncmb + brevecmb + tildecmb + macroncmb + dieresiscmb + dotaccentcmb + ringcmb + commaturnedabovecmb + hookcmb + circumflexbelowcmb + brevebelowcmb + macronbelowcmb + dieresisbelowcmb + dotbelowcmb + uni0326 + cedillacmb + ogonekcmb + dieresisacute + dieresisgrave + dieresiscaron + dieresismacron + breveacute + brevegrave + brevehook + brevetilde + circumflexacute + circumflexgrave + circumflexhook + circumflextilde + acutecmb.cap + hungarumlautcmb.cap + gravecmb.cap + circumflexcmb.cap + caroncmb.cap + brevecmb.cap + tildecmb.cap + macroncmb.cap + dieresiscmb.cap + dotaccentcmb.cap + ringcmb.cap + hookcmb.cap + dieresisacute.cap + dieresisgrave.cap + dieresiscaron.cap + dieresismacron.cap + breveacute.cap + brevegrave.cap + brevehook.cap + brevetilde.cap + circumflexacute.cap + circumflexgrave.cap + circumflexhook.cap + circumflextilde.cap + lighthorzbxd + heavyhorzbxd + lightvertbxd + heavyvertbxd + lighttrpldashhorzbxd + heavytrpldashhorzbxd + lighttrpldashvertbxd + heavytrpldashvertbxd + lightquaddashhorzbxd + heavyquaddashhorzbxd + lightquaddashvertbxd + heavyquaddashvertbxd + lightdnrightbxd + dnlightrightheavybxd + dnheavyrightlightbxd + heavydnrightbxd + lightdnleftbxd + dnlightleftheavybxd + dnheavyleftlightbxd + heavydnleftbxd + lightuprightbxd + uplightrightheavybxd + upheavyrightlightbxd + heavyuprightbxd + lightupleftbxd + uplightleftheavybxd + upheavyleftlightbxd + heavyupleftbxd + lightvertrightbxd + vertlightrightheavybxd + upheavyrightdnlightbxd + dnheavyrightuplightbxd + vertheavyrightlightbxd + dnlightrightupheavybxd + uplightrightdnheavybxd + heavyvertrightbxd + lightvertleftbxd + vertlightleftheavybxd + upheavyleftdnlightbxd + dnheavyleftuplightbxd + vertheavyleftlightbxd + dnlightleftupheavybxd + uplightleftdnheavybxd + heavyvertleftbxd + lightdnhorzbxd + leftheavyrightdnlightbxd + rightheavyleftdnlightbxd + dnlighthorzheavybxd + dnheavyhorzlightbxd + rightlightleftdnheavybxd + leftlightrightdnheavybxd + heavydnhorzbxd + lightuphorzbxd + leftheavyrightuplightbxd + rightheavyleftuplightbxd + uplighthorzheavybxd + upheavyhorzlightbxd + rightlightleftupheavybxd + leftlightrightupheavybxd + heavyuphorzbxd + lightverthorzbxd + leftheavyrightvertlightbxd + rightheavyleftvertlightbxd + vertlighthorzheavybxd + upheavydnhorzlightbxd + dnheavyuphorzlightbxd + vertheavyhorzlightbxd + leftupheavyrightdnlightbxd + rightupheavyleftdnlightbxd + leftdnheavyrightuplightbxd + rightdnheavyleftuplightbxd + dnlightuphorzheavybxd + uplightdnhorzheavybxd + rightlightleftvertheavybxd + leftlightrightvertheavybxd + heavyverthorzbxd + lightdbldashhorzbxd + heavydbldashhorzbxd + lightdbldashvertbxd + heavydbldashvertbxd + dblhorzbxd + dblvertbxd + dnsngrightdblbxd + dndblrightsngbxd + dbldnrightbxd + dnsngleftdblbxd + dndblleftsngbxd + dbldnleftbxd + upsngrightdblbxd + updblrightsngbxd + dbluprightbxd + upsngleftdblbxd + updblleftsngbxd + dblupleftbxd + vertsngrightdblbxd + vertdblrightsngbxd + dblvertrightbxd + vertsngleftdblbxd + vertdblleftsngbxd + dblvertleftbxd + dnsnghorzdblbxd + dndblhorzsngbxd + dbldnhorzbxd + upsnghorzdblbxd + updblhorzsngbxd + dbluphorzbxd + vertsnghorzdblbxd + vertdblhorzsngbxd + dblverthorzbxd + lightarcdnrightbxd + lightarcdnleftbxd + lightarcupleftbxd + lightarcuprightbxd + lightdiaguprightdnleftbxd + lightdiagupleftdnrightbxd + lightdiagcrossbxd + lightleftbxd + lightupbxd + lightrightbxd + lightdnbxd + heavyleftbxd + heavyupbxd + heavyrightbxd + heavydnbxd + lightleftheavyrightbxd + lightupheavydnbxd + heavyleftlightrightbxd + heavyuplightdnbxd + uphalfblock + dneighthblock + dnquarterblock + dnthreeeighthsblock + dnhalfblock + dnfiveeighthsblock + dnthreequartersblock + dnseveneighthsblock + fullblock + leftseveneighthsblock + leftthreequartersblock + leftfiveeighthsblock + lefthalfblock + leftthreeeighthsblock + leftquarterblock + lefteighthblock + righthalfblock + lightshade + mediumshade + darkshade + upeighthblock + righteighthblock + dnleftquadrant + dnrightquadrant + upleftquadrant + upleftdnleftdnrightquadrant + upleftdnrightquadrant + upleftuprightdnleftquadrant + upleftuprightdnrightquadrant + uprightquadrant + uprightdnleftquadrant + uprightdnleftdnrightquadrant + ligspacer + equal.start + equal.middle + equal.end + hyphen.start + hyphen.middle + hyphen.end + underscore.start + underscore.middle + underscore.end + numbersign.start + numbersign.middle + numbersign.end + period_equal.liga + period_period_equal.liga + period_hyphen.liga + colon_equal.liga + equal_equal.liga + exclam_equal.liga + equal_equal_equal.liga + exclam_equal_equal.liga + less_hyphen_less.liga + less_less_hyphen.liga + less_hyphen.liga + less_hyphen_greater.liga + hyphen_greater.liga + hyphen_greater_greater.liga + greater_hyphen_greater.liga + less_equal_less.liga + less_less_equal.liga + less_equal_greater.liga + equal_greater.liga + less_equal.liga + equal_greater_greater.liga + greater_equal_greater.liga + greater_equal.liga + greater_greater_equal.liga + greater_greater_hyphen.liga + greater_hyphen.liga + less_asciitilde_greater.liga + hyphen_less.liga + hyphen_less_less.liga + equal_less.liga + equal_less_less.liga + less_asciitilde_asciitilde.liga + less_asciitilde.liga + asciitilde_asciitilde.liga + asciitilde_greater.liga + asciitilde_asciitilde_greater + less_exclam_hyphen_hyphen.liga + slash_equal.liga + hyphen_bar.liga + bar_hyphen.liga + bar_equal.liga + hyphen_bar_bar.liga + bar_bar_hyphen.liga + equal_bar_bar.liga + bar_bar_equal.liga + equal_bar.liga + slash_slash_equal.liga + equal_slash.liga + equal_slash_slash.liga + equal_colon_equal.middle + equal_exclam_equal.middle + underscore_bar_underscore.m + hyphen_bar_hyphen.middle + equal_bar_equal.middle + hyphen_greater_hyphen.middle + hyphen_greater_greater_hyphen.m + equal_slash_slash_equal.middle + equal_slash_equal.middle + hyphen_bar_bar_hyphen.middle + equal_bar_bar_equal.middle + hyphen_less_hyphen.middle + hyphen_less_less_hyphen.middle + equal_greater_equal.middle + equal_less_equal.middle + equal_greater_greater_equal.m + equal_less_less_equal.middle + less_hyphen.start + greater_hyphen.start + bar_hyphen.start + less_equal.start + greater_equal.start + bar_equal.start + slash_equal.start + slash_slash_equal.start + less_less_hyphen.start + greater_greater_hyphen.start + bar_bar_hyphen.start + less_less_equal.start + greater_greater_equal.start + bar_bar_equal.start + hyphen_less.end + hyphen_greater.end + hyphen_bar.end + equal_less.end + equal_greater.end + equal_bar.end + hyphen_less_less.end + hyphen_greater_greater.end + hyphen_bar_bar.end + equal_less_less.end + equal_greater_greater.end + equal_bar_bar.end + equal_slash.end + equal_slash_slash.end + less_less_less.liga + less_less.liga + less_equal + less_greater.liga + greater_equal + greater_greater.liga + greater_greater_greater.liga + braceleft_bar.liga + bracketleft_bar.liga + less_colon.liga + colon_less.liga + greater_colon.liga + colon_greater.liga + bar_braceright.liga + bar_bracketright.liga + less_bar_bar_bar.liga + less_bar_bar.liga + less_bar.liga + less_bar_greater.liga + bar_greater.liga + bar_bar_greater.liga + bar_bar_bar_greater.liga + less_dollar.liga + less_dollar_greater.liga + dollar_greater.liga + less_plus.liga + less_plus_greater.liga + plus_greater.liga + less_asterisk.liga + less_asterisk_greater.liga + asterisk_greater.liga + slash_asterisk.liga + asterisk_slash.liga + slash_slash_slash.liga + slash_slash.liga + less_slash.liga + less_slash_greater.liga + slash_greater.liga + semicolon_semicolon.liga + colon_colon.liga + colon_colon_colon.liga + period_period.liga + period_period_period.liga + period_period_less.liga + exclam_exclam.liga + question_question.liga + percent_percent.liga + ampersand_ampersand.liga + bar_bar.liga + question_period.liga + question_colon.liga + plus_plus.liga + plus_plus_plus.liga + hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga + asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga + equal_asciitilde.liga + exclam_asciitilde.liga + asciitilde_hyphen.liga + w_w_w.liga + hyphen_asciitilde.liga + asciitilde_at.liga + asciicircum_equal.liga + question_equal.liga + numbersign_exclam.liga + numbersign_equal.liga + numbersign_colon.liga + numbersign_braceleft.liga + numbersign_bracketleft.liga + bracketright_numbersign.liga + numbersign_parenleft.liga + numbersign_question.liga + numbersign_underscore.liga + numbersign_underscore_parenleft + backslash_slash.liga + bar_bar_bar.liga + colon_colon_equal.liga + exclam_exclam_period.liga + period_question.liga + slash_backslash.liga + uniE0A0 + uniE0A1 + uniE0A2 + uniE0B0 + uniE0B1 + uniE0B2 + uniE0B3 + uni2610 + uni2611 + uni2612 + uni2713 + + public.postscriptNames + + Abreveacute + uni1EAE + Abrevedotbelow + uni1EB6 + Abrevegrave + uni1EB0 + Abrevehookabove + uni1EB2 + Abrevetilde + uni1EB4 + Acaron + uni01CD + Acircumflexacute + uni1EA4 + Acircumflexdotbelow + uni1EAC + Acircumflexgrave + uni1EA6 + Acircumflexhookabove + uni1EA8 + Acircumflextilde + uni1EAA + Adotaccent + uni0226 + Adotbelow + uni1EA0 + Ahookabove + uni1EA2 + Blinebelow + uni1E06 + Dcircumflexbelow + uni1E12 + Ddotbelow + uni1E0C + Dlinebelow + uni1E0E + Ecircumflexacute + uni1EBE + Ecircumflexdotbelow + uni1EC6 + Ecircumflexgrave + uni1EC0 + Ecircumflexhookabove + uni1EC2 + Ecircumflextilde + uni1EC4 + Edotbelow + uni1EB8 + Ehookabove + uni1EBA + Etilde + uni1EBC + Gcommaaccent + uni0122 + Gmacron + uni1E20 + Hbrevebelow + uni1E2A + Hcedilla + uni1E28 + Hdotbelow + uni1E24 + Icaron + uni01CF + Idotbelow + uni1ECA + Ihookabove + uni1EC8 + Kcommaaccent + uni0136 + Kdotbelow + uni1E32 + Klinebelow + uni1E34 + L.dot + Ldot + Lcircumflexbelow + uni1E3C + Lcommaaccent + uni013B + Ldotbelow + uni1E36 + Llinebelow + uni1E3A + Lmacrondotbelow + uni1E38 + Macute + uni1E3E + Mdotaccent + uni1E40 + Mdotbelow + uni1E42 + Ncircumflexbelow + uni1E4A + Ncommaaccent + uni0145 + Ndotaccent + uni1E44 + Ndotbelow + uni1E46 + Ngrave + uni01F8 + Nlinebelow + uni1E48 + Ocaron + uni01D1 + Ocircumflexacute + uni1ED0 + Ocircumflexdotbelow + uni1ED8 + Ocircumflexgrave + uni1ED2 + Ocircumflexhookabove + uni1ED4 + Ocircumflextilde + uni1ED6 + Odotaccent + uni022E + Odotbelow + uni1ECC + Ohookabove + uni1ECE + Ohornacute + uni1EDA + Ohorndotbelow + uni1EE2 + Ohorngrave + uni1EDC + Ohornhookabove + uni1EDE + Ohorntilde + uni1EE0 + Oogonek + uni01EA + Rcommaaccent + uni0156 + Rdotaccent + uni1E58 + Rdotbelow + uni1E5A + Rlinebelow + uni1E5E + Rmacrondotbelow + uni1E5C + Scedilla + uni015E + Schwa + uni018F + Scommaaccent + uni0218 + Sdotbelow + uni1E62 + Tcedilla + uni0162 + Tcircumflexbelow + uni1E70 + Tcommaaccent + uni021A + Tdotbelow + uni1E6C + Tlinebelow + uni1E6E + Ucaron + uni01D3 + Udieresisacute + uni01D7 + Udieresiscaron + uni01D9 + Udieresisgrave + uni01DB + Udieresismacron + uni01D5 + Udotbelow + uni1EE4 + Uhookabove + uni1EE6 + Uhornacute + uni1EE8 + Uhorndotbelow + uni1EF0 + Uhorngrave + uni1EEA + Uhornhookabove + uni1EEC + Uhorntilde + uni1EEE + Vdotbelow + uni1E7E + Xdieresis + uni1E8C + Ydotaccent + uni1E8E + Ydotbelow + uni1EF4 + Yhookabove + uni1EF6 + Ymacron + uni0232 + Ytilde + uni1EF8 + Zcircumflex + uni1E90 + Zdotbelow + uni1E92 + Zlinebelow + uni1E94 + abreveacute + uni1EAF + abrevedotbelow + uni1EB7 + abrevegrave + uni1EB1 + abrevehookabove + uni1EB3 + abrevetilde + uni1EB5 + acaron + uni01CE + acircumflexacute + uni1EA5 + acircumflexdotbelow + uni1EAD + acircumflexgrave + uni1EA7 + acircumflexhookabove + uni1EA9 + acircumflextilde + uni1EAB + acutecmb + uni0301 + acutecmb.cap + uni0301.cap + adotaccent + uni0227 + adotbelow + uni1EA1 + ahookabove + uni1EA3 + apostrophemod + uni02BC + bahtthai + uni0E3F + blinebelow + uni1E07 + breveacute + uni02D80301 + breveacute.cap + uni02D80301.cap + brevebelowcmb + uni032E + brevecmb + uni0306 + brevecmb.cap + uni0306.cap + brevegrave + uni02D80300 + brevegrave.cap + uni02D80300.cap + brevehook + uni02D80309 + brevehook.cap + uni02D80309.cap + brevetilde + uni02D80303 + brevetilde.cap + uni02D80303.cap + caroncmb + uni030C + caroncmb.cap + uni030C.cap + cedillacmb + uni0327 + circumflexacute + uni02C60301 + circumflexacute.cap + uni02C60301.cap + circumflexbelowcmb + uni032D + circumflexcmb + uni0302 + circumflexcmb.cap + uni0302.cap + circumflexgrave + uni02C60300 + circumflexgrave.cap + uni02C60300.cap + circumflexhook + uni02C60309 + circumflexhook.cap + uni02C60309.cap + circumflextilde + uni02C60303 + circumflextilde.cap + uni02C60303.cap + commaaboverightcmb + uni0315 + commaturnedabovecmb + uni0312 + commaturnedmod + uni02BB + dblprimemod + uni02BA + dcircumflexbelow + uni1E13 + ddotbelow + uni1E0D + dieresisacute + uni00A80301 + dieresisacute.cap + uni00A80301.cap + dieresisbelowcmb + uni0324 + dieresiscaron + uni00A8030C + dieresiscaron.cap + uni00A8030C.cap + dieresiscmb + uni0308 + dieresiscmb.cap + uni0308.cap + dieresisgrave + uni00A80300 + dieresisgrave.cap + uni00A80300.cap + dieresismacron + uni00A80304 + dieresismacron.cap + uni00A80304.cap + dlinebelow + uni1E0F + dotaccentcmb + uni0307 + dotaccentcmb.cap + uni0307.cap + dotbelowcmb + uni0323 + dotlessj + uni0237 + ecircumflexacute + uni1EBF + ecircumflexdotbelow + uni1EC7 + ecircumflexgrave + uni1EC1 + ecircumflexhookabove + uni1EC3 + ecircumflextilde + uni1EC5 + edotbelow + uni1EB9 + ehookabove + uni1EBB + etilde + uni1EBD + gcommaaccent + uni0123 + gmacron + uni1E21 + gravecmb + uni0300 + gravecmb.cap + uni0300.cap + guillemetleft + uni00AB + guillemetright + uni00BB + hbrevebelow + uni1E2B + hcedilla + uni1E29 + hdotbelow + uni1E25 + hlinebelow + uni1E96 + hookcmb + uni0309 + hookcmb.cap + uni0309.cap + horizontalbar + uni2015 + hungarumlautcmb + uni030B + hungarumlautcmb.cap + uni030B.cap + icaron + uni01D0 + idotaccent + i.dot + idotbelow + uni1ECB + ihookabove + uni1EC9 + jcaron + uni01F0 + kcommaaccent + uni0137 + kdotbelow + uni1E33 + klinebelow + uni1E35 + l.dot + ldot + lcircumflexbelow + uni1E3D + lcommaaccent + uni013C + ldotbelow + uni1E37 + llinebelow + uni1E3B + lmacrondotbelow + uni1E39 + macronbelowcmb + uni0331 + macroncmb + uni0304 + macroncmb.cap + uni0304.cap + macronlowmod + uni02CD + macute + uni1E3F + mdotaccent + uni1E41 + mdotbelow + uni1E43 + naira + uni20A6 + ncircumflexbelow + uni1E4B + ncommaaccent + uni0146 + ndotaccent + uni1E45 + ndotbelow + uni1E47 + ngrave + uni01F9 + nlinebelow + uni1E49 + ocaron + uni01D2 + ocircumflexacute + uni1ED1 + ocircumflexdotbelow + uni1ED9 + ocircumflexgrave + uni1ED3 + ocircumflexhookabove + uni1ED5 + ocircumflextilde + uni1ED7 + odotaccent + uni022F + odotbelow + uni1ECD + ogonekcmb + uni0328 + ohookabove + uni1ECF + ohornacute + uni1EDB + ohorndotbelow + uni1EE3 + ohorngrave + uni1EDD + ohornhookabove + uni1EDF + ohorntilde + uni1EE1 + oogonek + uni01EB + peso + uni20B1 + primemod + uni02B9 + published + uni2117 + rcommaaccent + uni0157 + rdotaccent + uni1E59 + rdotbelow + uni1E5B + ringcmb + uni030A + ringcmb.cap + uni030A.cap + ringhalfleft + uni02BF + ringhalfright + uni02BE + rlinebelow + uni1E5F + rmacrondotbelow + uni1E5D + scedilla + uni015F + schwa + uni0259 + scommaaccent + uni0219 + sdotbelow + uni1E63 + servicemark + uni2120 + tcedilla + uni0163 + tcircumflexbelow + uni1E71 + tcommaaccent + uni021B + tdotbelow + uni1E6D + tildecmb + uni0303 + tildecmb.cap + uni0303.cap + tlinebelow + uni1E6F + twodotleader + uni2025 + ucaron + uni01D4 + udieresisacute + uni01D8 + udieresiscaron + uni01DA + udieresisgrave + uni01DC + udieresismacron + uni01D6 + udotbelow + uni1EE5 + uhookabove + uni1EE7 + uhornacute + uni1EE9 + uhorndotbelow + uni1EF1 + uhorngrave + uni1EEB + uhornhookabove + uni1EED + uhorntilde + uni1EEF + uni1E9E + uni1E9E + vdotbelow + uni1E7F + verticallinelowmod + uni02CC + verticallinemod + uni02C8 + won + uni20A9 + xdieresis + uni1E8D + ydotaccent + uni1E8F + ydotbelow + uni1EF5 + yhookabove + uni1EF7 + ymacron + uni0233 + ytilde + uni1EF9 + zcircumflex + uni1E91 + zdotbelow + uni1E93 + zlinebelow + uni1E95 + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/metainfo.plist b/sources/instances/truetype/IntelOneMono-Medium.ufo/metainfo.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/metainfo.plist rename to sources/instances/truetype/IntelOneMono-Medium.ufo/metainfo.plist diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/features.fea b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/features.fea deleted file mode 100644 index a1e98359..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/features.fea +++ /dev/null @@ -1,368 +0,0 @@ -# ---------------------------- -# INTEL ONE MONO OPENTYPE CODE -# ---------------------------- - -# ---------------- -# Language Systems -# ---------------- - -languagesystem DFLT dflt; -languagesystem latn dflt; -languagesystem latn TRK; -languagesystem latn AZE; -languagesystem latn CRT; -languagesystem latn CAT; - - -# ------- -# Classes -# ------- - -# Base Letters -@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; -@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; - -# Figures -@fig = [zero one two three four five six seven eight nine]; -@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; -@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; -@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; -@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; - -# Marks Above -@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; -@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; - -# Marks Below -@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; - - -# --------------- -# Localized Forms -# --------------- - -feature locl { - script latn; - language TRK; - lookup iTurkish { - sub i by idotaccent; - } iTurkish; - language AZE; - lookup iTurkish; - language CRT; - lookup iTurkish; - language CAT; - sub l periodcentered' l by middotcat; - sub L periodcentered' L by middotcat.cap; - # try fusing them - sub L middotcat.cap by L.dot; - sub L middotcat by L.dot; - sub l middotcat by l.dot; -} locl; - - -# --------------------------------- -# Glyph Composition / Decomposition -# --------------------------------- - -feature ccmp { - - # Decompose unicode lowercase characters whose uppercase counterparts have no unicode. - lookup Decomp { - sub hlinebelow by h macronlowmod; - sub jcaron by j caron; - } Decomp; - - # Replace double above accents by combined drawings. - lookup DblMarks { - sub dieresiscmb acutecmb by dieresisacute; - sub dieresiscmb gravecmb by dieresisgrave; - sub dieresiscmb caroncmb by dieresiscaron; - sub dieresiscmb macroncmb by dieresismacron; - sub brevecmb acutecmb by breveacute; - sub brevecmb gravecmb by brevegrave; - sub brevecmb hookcmb by brevehook; - sub brevecmb tildecmb by brevetilde; - sub circumflexcmb acutecmb by circumflexacute; - sub circumflexcmb gravecmb by circumflexgrave; - sub circumflexcmb hookcmb by circumflexhook; - sub circumflexcmb tildecmb by circumflextilde; - # capital forms - sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; - sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; - sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; - sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; - sub brevecmb.cap acutecmb.cap by breveacute.cap; - sub brevecmb.cap gravecmb.cap by brevegrave.cap; - sub brevecmb.cap hookcmb.cap by brevehook.cap; - sub brevecmb.cap tildecmb.cap by brevetilde.cap; - sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; - sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; - sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; - sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; - } DblMarks; - - # Replace combining marks that follow a uppercase letter by their uppercase form - lookup CapitalMarks { - sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; - sub [@ltrUC] [@lcMarks]' by [@ucMarks]; - } CapitalMarks; - - # Replace letters with dotless counterparts when followed by a combining mark - lookup Dotless { - sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; - sub [i j]' [@lcMarks] by [dotlessi dotlessj]; - } Dotless; - - # Replace e ogonek with pre-drawn eogonek - lookup eogonek { - sub e ogonekcmb by eogonek; - } eogonek; - -} ccmp; - - -# ---------- -# Numerators -# ---------- - -feature numr { - sub @fig by @figNum; -} numr; - -# ------------ -# Denominators -# ------------ - -feature dnom { - sub @fig by @figDen; -} dnom; - -# ----------- -# Superscript -# ----------- - -feature sups { - sub @fig by @figSup; -} sups; - -# --------------------- -# Subscript & Inferiors -# --------------------- - -feature subs { - sub @fig by @figInf; -} subs; - -feature sinf { - sub @fig by @figInf; -} sinf; - - -# --------------------- -# Contextual Alternates -# --------------------- - -feature calt { - # shifts colon to align with math symbols when used together - - sub colon' [plus equal greater less hyphen] by colon.fig; - sub [plus equal less greater hyphen] colon' by colon.fig; - - sub colon' [colon colon.fig] by colon.fig; - sub colon.fig colon' by colon.fig; - -} calt; - - -# -------------- -# Stylistic Sets -# -------------- - -feature ss11 { - featureNames { - name "Raised Colon (Figures Only)"; # Windows English - name 1 0 0 "Raised Colon (Figures Only)"; # Mac English - }; - lookup FigureColonContextual { - sub @fig colon' @fig by colon.fig; - } FigureColonContextual; -} ss11; - -feature ss12 { - featureNames { - name "Raised Colon (Global)"; # Windows English - name 1 0 0 "Raised Colon (Global)"; # Mac English - }; - lookup FigureColon { - sub colon by colon.fig; - } FigureColon; -} ss12; - - -# -------------------- -# Stylistic Alternates -# -------------------- - -feature salt { - lookup FigureColon; # SS12 -} salt; - - -# --------------------------------------------------------------------- -# MARK | Generated: November 23, 2022 - 02:37:59 PM by 'markFeature.py' -# --------------------------------------------------------------------- - -markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; -markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; -markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; -markClass [cedillacmb] @mark_belowcedilla; -markClass [ogonekcmb] @mark_belowogonek; - -feature mark { - - lookup aboveLC{ - pos base [a] mark @mark_aboveLC; - pos base [c] mark @mark_aboveLC; - pos base [dotlessi] mark @mark_aboveLC; - pos base [dotlessj] mark @mark_aboveLC; - pos base [e] mark @mark_aboveLC; - pos base [eogonek] mark @mark_aboveLC; - pos base [g] mark @mark_aboveLC; - pos base [m] mark @mark_aboveLC; - pos base [n] mark @mark_aboveLC; - pos base [o] mark @mark_aboveLC; - pos base [p] mark @mark_aboveLC; - pos base [s] mark @mark_aboveLC; - pos base [u] mark @mark_aboveLC; - pos base [z] mark @mark_aboveLC; - } aboveLC; - - lookup aboveUC{ - pos base [A] mark @mark_aboveUC; - pos base [C] mark @mark_aboveUC; - pos base [E] mark @mark_aboveUC; - pos base [Eogonek] mark @mark_aboveUC; - pos base [G] mark @mark_aboveUC; - pos base [I] mark @mark_aboveUC; - pos base [J] mark @mark_aboveUC; - pos base [M] mark @mark_aboveUC; - pos base [N] mark @mark_aboveUC; - pos base [O] mark @mark_aboveUC; - pos base [P] mark @mark_aboveUC; - pos base [S] mark @mark_aboveUC; - pos base [U] mark @mark_aboveUC; - pos base [Z] mark @mark_aboveUC; - } aboveUC; - - lookup below{ - pos base [C] mark @mark_below; - pos base [Dcroat] mark @mark_below; - pos base [E] mark @mark_below; - pos base [H] mark @mark_below; - pos base [I] mark @mark_below; - pos base [O] mark @mark_below; - pos base [S] mark @mark_below; - pos base [U] mark @mark_below; - pos base [X] mark @mark_below; - pos base [Z] mark @mark_below; - pos base [c] mark @mark_below; - pos base [dcroat] mark @mark_below; - pos base [dotlessi] mark @mark_below; - pos base [e] mark @mark_below; - pos base [h] mark @mark_below; - pos base [o] mark @mark_below; - pos base [s] mark @mark_below; - pos base [u] mark @mark_below; - pos base [x] mark @mark_below; - pos base [z] mark @mark_below; - } below; - - lookup belowcedilla{ - pos base [Z] mark @mark_belowcedilla; - pos base [z] mark @mark_belowcedilla; - } belowcedilla; - - lookup belowogonek{ - pos base [A] mark @mark_belowogonek; - pos base [E] mark @mark_belowogonek; - pos base [I] mark @mark_belowogonek; - pos base [O] mark @mark_belowogonek; - pos base [U] mark @mark_belowogonek; - pos base [a] mark @mark_belowogonek; - pos base [dotlessi] mark @mark_belowogonek; - pos base [e] mark @mark_belowogonek; - pos base [o] mark @mark_belowogonek; - pos base [u] mark @mark_belowogonek; - } belowogonek; - -} mark; - -@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; -@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; - -table GDEF { - GlyphClassDef @BASES,,@MARKS,; -} GDEF; - - -# -------------- -# All Alternates -# -------------- - -feature aalt { - sub germandbls from [germandbls uni1E9E]; - sub uni1E9E from [uni1E9E germandbls]; - sub colon from [colon colon.fig]; - sub colon.fig from [colon.fig colon]; - sub eight from [eight eight.den eight.sup eight.num eight.inf]; - sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; - sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; - sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; - sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; - sub five from [five five.inf five.num five.den five.sup]; - sub five.sup from [five.sup five five.inf five.num five.den]; - sub five.den from [five.den five.sup five five.inf five.num]; - sub five.num from [five.num five.den five.sup five five.inf]; - sub five.inf from [five.inf five.num five.den five.sup five]; - sub four from [four four.sup four.num four.den four.inf]; - sub four.inf from [four.inf four four.sup four.num four.den]; - sub four.den from [four.den four.inf four four.sup four.num]; - sub four.num from [four.num four.den four.inf four four.sup]; - sub four.sup from [four.sup four.num four.den four.inf four]; - sub nine from [nine nine.den nine.inf nine.num nine.sup]; - sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; - sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; - sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; - sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; - sub one from [one one.den one.num one.inf one.sup]; - sub one.sup from [one.sup one one.den one.num one.inf]; - sub one.inf from [one.inf one.sup one one.den one.num]; - sub one.num from [one.num one.inf one.sup one one.den]; - sub one.den from [one.den one.num one.inf one.sup one]; - sub seven from [seven seven.inf seven.num seven.sup seven.den]; - sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; - sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; - sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; - sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; - sub six from [six six.num six.sup six.den six.inf]; - sub six.inf from [six.inf six six.num six.sup six.den]; - sub six.den from [six.den six.inf six six.num six.sup]; - sub six.sup from [six.sup six.den six.inf six six.num]; - sub six.num from [six.num six.sup six.den six.inf six]; - sub three from [three three.inf three.den three.num three.sup]; - sub three.sup from [three.sup three three.inf three.den three.num]; - sub three.num from [three.num three.sup three three.inf three.den]; - sub three.den from [three.den three.num three.sup three three.inf]; - sub three.inf from [three.inf three.den three.num three.sup three]; - sub two from [two two.inf two.sup two.num two.den]; - sub two.den from [two.den two two.inf two.sup two.num]; - sub two.num from [two.num two.den two two.inf two.sup]; - sub two.sup from [two.sup two.num two.den two two.inf]; - sub two.inf from [two.inf two.sup two.num two.den two]; - sub zero from [zero zero.sup zero.num zero.den zero.inf]; - sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; - sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; - sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; - sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; -} aalt; diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/fontinfo.plist b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/fontinfo.plist deleted file mode 100644 index c0ab0b59..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/fontinfo.plist +++ /dev/null @@ -1,407 +0,0 @@ - - - - - ascender - 740 - capHeight - 655 - copyright - Copyright 2023 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) - descender - -260 - familyName - Intel One Mono - guidelines - - italicAngle - -16.0 - openTypeHeadFlags - - 0 - 1 - - openTypeHheaAscender - 1090 - openTypeHheaDescender - -290 - openTypeHheaLineGap - 0 - openTypeNameDesigner - Fred Shallcrass - openTypeNameDesignerURL - http://frerejones.com - openTypeNameLicense - This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL - openTypeNameLicenseURL - https://github.com/intel/intel-one-mono/blob/main/license - openTypeNameManufacturer - Frere-Jones Type LLC - openTypeNameManufacturerURL - http://frerejones.com - openTypeNamePreferredFamilyName - Intel One Mono - openTypeNamePreferredSubfamilyName - Medium Italic - openTypeNameRecords - - - encodingID - 0 - languageID - 0 - nameID - 0 - platformID - 1 - string - (C) 2023 Intel Corporation - - - encodingID - 1 - languageID - 1033 - nameID - 0 - platformID - 3 - string - (C) 2023 Intel Corporation - - - encodingID - 0 - languageID - 0 - nameID - 1 - platformID - 1 - string - Intel One Mono Medium - - - encodingID - 1 - languageID - 1033 - nameID - 1 - platformID - 3 - string - Intel One Mono Medium - - - encodingID - 0 - languageID - 0 - nameID - 2 - platformID - 1 - string - Italic - - - encodingID - 1 - languageID - 1033 - nameID - 2 - platformID - 3 - string - Italic - - - encodingID - 0 - languageID - 0 - nameID - 4 - platformID - 1 - string - Intel One Mono Medium Italic - - - encodingID - 1 - languageID - 1033 - nameID - 4 - platformID - 3 - string - Intel One Mono Medium Italic - - - encodingID - 0 - languageID - 0 - nameID - 6 - platformID - 1 - string - IntelOneMono-MediumItalic - - - encodingID - 1 - languageID - 1033 - nameID - 6 - platformID - 3 - string - IntelOneMono-MediumItalic - - - encodingID - 0 - languageID - 0 - nameID - 8 - platformID - 1 - string - Frere-Jones Type LLC - - - encodingID - 1 - languageID - 1033 - nameID - 8 - platformID - 3 - string - Frere-Jones Type LLC - - - encodingID - 0 - languageID - 0 - nameID - 9 - platformID - 1 - string - Fred Shallcrass - - - encodingID - 1 - languageID - 1033 - nameID - 9 - platformID - 3 - string - Fred Shallcrass - - - encodingID - 0 - languageID - 0 - nameID - 11 - platformID - 1 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 11 - platformID - 3 - string - http://frerejones.com - - - encodingID - 0 - languageID - 0 - nameID - 12 - platformID - 1 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 12 - platformID - 3 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 16 - platformID - 3 - string - Intel One Mono - - - encodingID - 1 - languageID - 1033 - nameID - 17 - platformID - 3 - string - Medium Italic - - - openTypeOS2CodePageRanges - - 0 - 1 - 4 - 7 - 8 - 29 - - openTypeOS2Panose - - 2 - 11 - 7 - 9 - 2 - 2 - 3 - 9 - 2 - 4 - - openTypeOS2Selection - - 7 - 8 - - openTypeOS2StrikeoutPosition - 286 - openTypeOS2StrikeoutSize - 50 - openTypeOS2Type - - openTypeOS2TypoAscender - 1090 - openTypeOS2TypoDescender - -290 - openTypeOS2TypoLineGap - 0 - openTypeOS2UnicodeRanges - - 0 - 1 - 2 - 29 - 32 - - openTypeOS2VendorID - FRJN - openTypeOS2WeightClass - 500 - openTypeOS2WidthClass - 5 - openTypeOS2WinAscent - 1090 - openTypeOS2WinDescent - 290 - postscriptBlueFuzz - 0 - postscriptBlueScale - 0.05 - postscriptBlueValues - - -15 - 0 - 471 - 486 - 655 - 670 - 710 - 725 - - postscriptDefaultWidthX - 614 - postscriptFamilyBlues - - postscriptFamilyOtherBlues - - postscriptFontName - IntelOneMono-MediumItalic - postscriptForceBold - - postscriptFullName - Intel One Mono Medium Italic - postscriptIsFixedPitch - - postscriptOtherBlues - - -245 - -230 - - postscriptStemSnapH - - 94 - - postscriptStemSnapV - - 106 - - postscriptUnderlinePosition - -75 - postscriptUnderlineThickness - 50 - styleMapFamilyName - Intel One Mono Medium - styleMapStyleName - italic - styleName - Medium Italic - unitsPerEm - 1000 - versionMajor - 1 - versionMinor - 3 - xHeight - 471 - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_.dot.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_.dot.glif deleted file mode 100644 index cfdec724..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_.dot.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/R_commaaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/R_commaaccent.glif deleted file mode 100644 index f1c05090..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/R_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/R_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/R_dotbelow.glif deleted file mode 100644 index 39acd216..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/R_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/R_linebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/R_linebelow.glif deleted file mode 100644 index fe619238..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/R_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_circumflexbelow.glif deleted file mode 100644 index e4239a57..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_circumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_commaaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_commaaccent.glif deleted file mode 100644 index 13c9077c..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_dotbelow.glif deleted file mode 100644 index e4571cca..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_linebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_linebelow.glif deleted file mode 100644 index 8cbacb06..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_acute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_acute.glif deleted file mode 100644 index 37dd3ebd..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_breve.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_breve.glif deleted file mode 100644 index 33fa7a47..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_breve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_caron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_caron.glif deleted file mode 100644 index c16d807f..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_circumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_circumflex.glif deleted file mode 100644 index e5d9030e..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_dieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_dieresis.glif deleted file mode 100644 index 46656dd2..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_dieresisacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_dieresisacute.glif deleted file mode 100644 index 3eb032ed..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_dieresisacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_dieresiscaron.glif deleted file mode 100644 index 289196d5..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_dieresiscaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_dieresisgrave.glif deleted file mode 100644 index 14e82c66..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_dieresisgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_dieresismacron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_dieresismacron.glif deleted file mode 100644 index 8f109657..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_dieresismacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_dotbelow.glif deleted file mode 100644 index 00dcf823..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_grave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_grave.glif deleted file mode 100644 index a5ae168f..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_hookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_hookabove.glif deleted file mode 100644 index a302620e..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_hornacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_hornacute.glif deleted file mode 100644 index 4a473fc6..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_hornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_horndotbelow.glif deleted file mode 100644 index 7a4adb1d..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_horndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_horngrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_horngrave.glif deleted file mode 100644 index e05e1cb6..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_horngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_hornhookabove.glif deleted file mode 100644 index fe5624cc..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_hornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_horntilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_horntilde.glif deleted file mode 100644 index 1822b4fa..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_horntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_hungarumlaut.glif deleted file mode 100644 index 5eb677a2..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_hungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_macron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_macron.glif deleted file mode 100644 index 67368625..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_ring.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_ring.glif deleted file mode 100644 index 757598ba..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_ring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_tilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_tilde.glif deleted file mode 100644 index f73c408f..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/V_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/V_dotbelow.glif deleted file mode 100644 index 28dd4706..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/V_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/W_acute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/W_acute.glif deleted file mode 100644 index 06753034..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/W_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/W_circumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/W_circumflex.glif deleted file mode 100644 index a37e0ef7..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/W_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/W_dieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/W_dieresis.glif deleted file mode 100644 index 18df9770..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/W_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/W_grave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/W_grave.glif deleted file mode 100644 index 2809da4b..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/W_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/X_dieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/X_dieresis.glif deleted file mode 100644 index b0987408..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/X_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_dotbelow.glif deleted file mode 100644 index e2143b99..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Z_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Z_dotbelow.glif deleted file mode 100644 index 7a12ec4e..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Z_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Z_linebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Z_linebelow.glif deleted file mode 100644 index 15c84093..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Z_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acircumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acircumflex.glif deleted file mode 100644 index 44f78600..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acircumflexacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acircumflexacute.glif deleted file mode 100644 index c86032ed..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acircumflexgrave.glif deleted file mode 100644 index c7d5c45b..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acircumflexhookabove.glif deleted file mode 100644 index aae53e6a..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acircumflextilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acircumflextilde.glif deleted file mode 100644 index 1dbb2597..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/blinebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/blinebelow.glif deleted file mode 100644 index 61f98501..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/blinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ccircumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ccircumflex.glif deleted file mode 100644 index 6f16ad11..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ccircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/contents.plist b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/contents.plist deleted file mode 100644 index 9b3fa25c..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/contents.plist +++ /dev/null @@ -1,1374 +0,0 @@ - - - - - .notdef - _notdef.glif - A - A_.glif - AE - A_E_.glif - Aacute - A_acute.glif - Abreve - A_breve.glif - Abreveacute - A_breveacute.glif - Abrevedotbelow - A_brevedotbelow.glif - Abrevegrave - A_brevegrave.glif - Abrevehookabove - A_brevehookabove.glif - Abrevetilde - A_brevetilde.glif - Acaron - A_caron.glif - Acircumflex - A_circumflex.glif - Acircumflexacute - A_circumflexacute.glif - Acircumflexdotbelow - A_circumflexdotbelow.glif - Acircumflexgrave - A_circumflexgrave.glif - Acircumflexhookabove - A_circumflexhookabove.glif - Acircumflextilde - A_circumflextilde.glif - Adieresis - A_dieresis.glif - Adotaccent - A_dotaccent.glif - Adotbelow - A_dotbelow.glif - Agrave - A_grave.glif - Ahookabove - A_hookabove.glif - Amacron - A_macron.glif - Aogonek - A_ogonek.glif - Aring - A_ring.glif - Atilde - A_tilde.glif - B - B_.glif - Blinebelow - B_linebelow.glif - C - C_.glif - Cacute - C_acute.glif - Ccaron - C_caron.glif - Ccedilla - C_cedilla.glif - Ccircumflex - C_circumflex.glif - Cdotaccent - C_dotaccent.glif - D - D_.glif - Dcaron - D_caron.glif - Dcircumflexbelow - D_circumflexbelow.glif - Dcroat - D_croat.glif - Ddotbelow - D_dotbelow.glif - Dlinebelow - D_linebelow.glif - E - E_.glif - Eacute - E_acute.glif - Ebreve - E_breve.glif - Ecaron - E_caron.glif - Ecircumflex - E_circumflex.glif - Ecircumflexacute - E_circumflexacute.glif - Ecircumflexdotbelow - E_circumflexdotbelow.glif - Ecircumflexgrave - E_circumflexgrave.glif - Ecircumflexhookabove - E_circumflexhookabove.glif - Ecircumflextilde - E_circumflextilde.glif - Edieresis - E_dieresis.glif - Edotaccent - E_dotaccent.glif - Edotbelow - E_dotbelow.glif - Egrave - E_grave.glif - Ehookabove - E_hookabove.glif - Emacron - E_macron.glif - Eng - E_ng.glif - Eogonek - E_ogonek.glif - Eth - E_th.glif - Etilde - E_tilde.glif - Euro - E_uro.glif - F - F_.glif - G - G_.glif - Gbreve - G_breve.glif - Gcaron - G_caron.glif - Gcircumflex - G_circumflex.glif - Gcommaaccent - G_commaaccent.glif - Gdotaccent - G_dotaccent.glif - Gmacron - G_macron.glif - H - H_.glif - Hbar - H_bar.glif - Hbrevebelow - H_brevebelow.glif - Hcedilla - H_cedilla.glif - Hcircumflex - H_circumflex.glif - Hdotbelow - H_dotbelow.glif - I - I_.glif - Iacute - I_acute.glif - Ibreve - I_breve.glif - Icaron - I_caron.glif - Icircumflex - I_circumflex.glif - Idieresis - I_dieresis.glif - Idotaccent - I_dotaccent.glif - Idotbelow - I_dotbelow.glif - Igrave - I_grave.glif - Ihookabove - I_hookabove.glif - Imacron - I_macron.glif - Iogonek - I_ogonek.glif - Itilde - I_tilde.glif - J - J_.glif - Jcircumflex - J_circumflex.glif - K - K_.glif - Kcommaaccent - K_commaaccent.glif - Kdotbelow - K_dotbelow.glif - Klinebelow - K_linebelow.glif - L - L_.glif - L.dot - L_.dot.glif - Lacute - L_acute.glif - Lcaron - L_caron.glif - Lcircumflexbelow - L_circumflexbelow.glif - Lcommaaccent - L_commaaccent.glif - Ldotbelow - L_dotbelow.glif - Llinebelow - L_linebelow.glif - Lmacrondotbelow - L_macrondotbelow.glif - Lslash - L_slash.glif - M - M_.glif - Macute - M_acute.glif - Mdotaccent - M_dotaccent.glif - Mdotbelow - M_dotbelow.glif - N - N_.glif - Nacute - N_acute.glif - Ncaron - N_caron.glif - Ncircumflexbelow - N_circumflexbelow.glif - Ncommaaccent - N_commaaccent.glif - Ndotaccent - N_dotaccent.glif - Ndotbelow - N_dotbelow.glif - Ngrave - N_grave.glif - Nlinebelow - N_linebelow.glif - Ntilde - N_tilde.glif - O - O_.glif - OE - O_E_.glif - Oacute - O_acute.glif - Obreve - O_breve.glif - Ocaron - O_caron.glif - Ocircumflex - O_circumflex.glif - Ocircumflexacute - O_circumflexacute.glif - Ocircumflexdotbelow - O_circumflexdotbelow.glif - Ocircumflexgrave - O_circumflexgrave.glif - Ocircumflexhookabove - O_circumflexhookabove.glif - Ocircumflextilde - O_circumflextilde.glif - Odieresis - O_dieresis.glif - Odotaccent - O_dotaccent.glif - Odotbelow - O_dotbelow.glif - Ograve - O_grave.glif - Ohookabove - O_hookabove.glif - Ohorn - O_horn.glif - Ohornacute - O_hornacute.glif - Ohorndotbelow - O_horndotbelow.glif - Ohorngrave - O_horngrave.glif - Ohornhookabove - O_hornhookabove.glif - Ohorntilde - O_horntilde.glif - Ohungarumlaut - O_hungarumlaut.glif - Omacron - O_macron.glif - Oogonek - O_ogonek.glif - Oslash - O_slash.glif - Otilde - O_tilde.glif - P - P_.glif - Q - Q_.glif - R - R_.glif - Racute - R_acute.glif - Rcaron - R_caron.glif - Rcommaaccent - R_commaaccent.glif - Rdotaccent - R_dotaccent.glif - Rdotbelow - R_dotbelow.glif - Rlinebelow - R_linebelow.glif - Rmacrondotbelow - R_macrondotbelow.glif - S - S_.glif - Sacute - S_acute.glif - Scaron - S_caron.glif - Scedilla - S_cedilla.glif - Schwa - S_chwa.glif - Scircumflex - S_circumflex.glif - Scommaaccent - S_commaaccent.glif - Sdotbelow - S_dotbelow.glif - T - T_.glif - Tbar - T_bar.glif - Tcaron - T_caron.glif - Tcedilla - T_cedilla.glif - Tcircumflexbelow - T_circumflexbelow.glif - Tcommaaccent - T_commaaccent.glif - Tdotbelow - T_dotbelow.glif - Thorn - T_horn.glif - Tlinebelow - T_linebelow.glif - U - U_.glif - Uacute - U_acute.glif - Ubreve - U_breve.glif - Ucaron - U_caron.glif - Ucircumflex - U_circumflex.glif - Udieresis - U_dieresis.glif - Udieresisacute - U_dieresisacute.glif - Udieresiscaron - U_dieresiscaron.glif - Udieresisgrave - U_dieresisgrave.glif - Udieresismacron - U_dieresismacron.glif - Udotbelow - U_dotbelow.glif - Ugrave - U_grave.glif - Uhookabove - U_hookabove.glif - Uhorn - U_horn.glif - Uhornacute - U_hornacute.glif - Uhorndotbelow - U_horndotbelow.glif - Uhorngrave - U_horngrave.glif - Uhornhookabove - U_hornhookabove.glif - Uhorntilde - U_horntilde.glif - Uhungarumlaut - U_hungarumlaut.glif - Umacron - U_macron.glif - Uogonek - U_ogonek.glif - Uring - U_ring.glif - Utilde - U_tilde.glif - V - V_.glif - Vdotbelow - V_dotbelow.glif - W - W_.glif - Wacute - W_acute.glif - Wcircumflex - W_circumflex.glif - Wdieresis - W_dieresis.glif - Wgrave - W_grave.glif - X - X_.glif - Xdieresis - X_dieresis.glif - Y - Y_.glif - Yacute - Y_acute.glif - Ycircumflex - Y_circumflex.glif - Ydieresis - Y_dieresis.glif - Ydotaccent - Y_dotaccent.glif - Ydotbelow - Y_dotbelow.glif - Ygrave - Y_grave.glif - Yhookabove - Y_hookabove.glif - Ymacron - Y_macron.glif - Ytilde - Y_tilde.glif - Z - Z_.glif - Zacute - Z_acute.glif - Zcaron - Z_caron.glif - Zcircumflex - Z_circumflex.glif - Zdotaccent - Z_dotaccent.glif - Zdotbelow - Z_dotbelow.glif - Zlinebelow - Z_linebelow.glif - a - a.glif - aacute - aacute.glif - abreve - abreve.glif - abreveacute - abreveacute.glif - abrevedotbelow - abrevedotbelow.glif - abrevegrave - abrevegrave.glif - abrevehookabove - abrevehookabove.glif - abrevetilde - abrevetilde.glif - acaron - acaron.glif - acircumflex - acircumflex.glif - acircumflexacute - acircumflexacute.glif - acircumflexdotbelow - acircumflexdotbelow.glif - acircumflexgrave - acircumflexgrave.glif - acircumflexhookabove - acircumflexhookabove.glif - acircumflextilde - acircumflextilde.glif - acute - acute.glif - acutecmb - acutecmb.glif - acutecmb.cap - acutecmb.cap.glif - adieresis - adieresis.glif - adotaccent - adotaccent.glif - adotbelow - adotbelow.glif - ae - ae.glif - agrave - agrave.glif - ahookabove - ahookabove.glif - amacron - amacron.glif - ampersand - ampersand.glif - aogonek - aogonek.glif - apostrophemod - apostrophemod.glif - approxequal - approxequal.glif - aring - aring.glif - asciicircum - asciicircum.glif - asciitilde - asciitilde.glif - asterisk - asterisk.glif - at - at.glif - atilde - atilde.glif - b - b.glif - backslash - backslash.glif - bahtthai - bahtthai.glif - bar - bar.glif - blinebelow - blinebelow.glif - braceleft - braceleft.glif - braceright - braceright.glif - bracketleft - bracketleft.glif - bracketright - bracketright.glif - breve - breve.glif - breveacute - breveacute.glif - breveacute.cap - breveacute.cap.glif - brevebelowcmb - brevebelowcmb.glif - brevecmb - brevecmb.glif - brevecmb.cap - brevecmb.cap.glif - brevegrave - brevegrave.glif - brevegrave.cap - brevegrave.cap.glif - brevehook - brevehook.glif - brevehook.cap - brevehook.cap.glif - brevetilde - brevetilde.glif - brevetilde.cap - brevetilde.cap.glif - bullet - bullet.glif - c - c.glif - cacute - cacute.glif - caron - caron.glif - caroncmb - caroncmb.glif - caroncmb.cap - caroncmb.cap.glif - ccaron - ccaron.glif - ccedilla - ccedilla.glif - ccircumflex - ccircumflex.glif - cdotaccent - cdotaccent.glif - cedilla - cedilla.glif - cedillacmb - cedillacmb.glif - cent - cent.glif - circumflex - circumflex.glif - circumflexacute - circumflexacute.glif - circumflexacute.cap - circumflexacute.cap.glif - circumflexbelowcmb - circumflexbelowcmb.glif - circumflexcmb - circumflexcmb.glif - circumflexcmb.cap - circumflexcmb.cap.glif - circumflexgrave - circumflexgrave.glif - circumflexgrave.cap - circumflexgrave.cap.glif - circumflexhook - circumflexhook.glif - circumflexhook.cap - circumflexhook.cap.glif - circumflextilde - circumflextilde.glif - circumflextilde.cap - circumflextilde.cap.glif - colon - colon.glif - colon.fig - colon.fig.glif - comma - comma.glif - commaaboverightcmb - commaaboverightcmb.glif - commaturnedabovecmb - commaturnedabovecmb.glif - commaturnedmod - commaturnedmod.glif - copyright - copyright.glif - d - d.glif - dagger - dagger.glif - daggerdbl - daggerdbl.glif - dblprimemod - dblprimemod.glif - dcaron - dcaron.glif - dcircumflexbelow - dcircumflexbelow.glif - dcroat - dcroat.glif - ddotbelow - ddotbelow.glif - degree - degree.glif - dieresis - dieresis.glif - dieresisacute - dieresisacute.glif - dieresisacute.cap - dieresisacute.cap.glif - dieresisbelowcmb - dieresisbelowcmb.glif - dieresiscaron - dieresiscaron.glif - dieresiscaron.cap - dieresiscaron.cap.glif - dieresiscmb - dieresiscmb.glif - dieresiscmb.cap - dieresiscmb.cap.glif - dieresisgrave - dieresisgrave.glif - dieresisgrave.cap - dieresisgrave.cap.glif - dieresismacron - dieresismacron.glif - dieresismacron.cap - dieresismacron.cap.glif - divide - divide.glif - dlinebelow - dlinebelow.glif - dollar - dollar.glif - dong - dong.glif - dotaccent - dotaccent.glif - dotaccentcmb - dotaccentcmb.glif - dotaccentcmb.cap - dotaccentcmb.cap.glif - dotbelowcmb - dotbelowcmb.glif - dotlessi - dotlessi.glif - dotlessj - dotlessj.glif - e - e.glif - eacute - eacute.glif - ebreve - ebreve.glif - ecaron - ecaron.glif - ecircumflex - ecircumflex.glif - ecircumflexacute - ecircumflexacute.glif - ecircumflexdotbelow - ecircumflexdotbelow.glif - ecircumflexgrave - ecircumflexgrave.glif - ecircumflexhookabove - ecircumflexhookabove.glif - ecircumflextilde - ecircumflextilde.glif - edieresis - edieresis.glif - edotaccent - edotaccent.glif - edotbelow - edotbelow.glif - egrave - egrave.glif - ehookabove - ehookabove.glif - eight - eight.glif - eight.den - eight.den.glif - eight.inf - eight.inf.glif - eight.num - eight.num.glif - eight.sup - eight.sup.glif - ellipsis - ellipsis.glif - emacron - emacron.glif - emdash - emdash.glif - endash - endash.glif - eng - eng.glif - eogonek - eogonek.glif - equal - equal.glif - eth - eth.glif - etilde - etilde.glif - exclam - exclam.glif - exclamdown - exclamdown.glif - f - f.glif - five - five.glif - five.den - five.den.glif - five.inf - five.inf.glif - five.num - five.num.glif - five.sup - five.sup.glif - fiveeighths - fiveeighths.glif - fivesixths - fivesixths.glif - four - four.glif - four.den - four.den.glif - four.inf - four.inf.glif - four.num - four.num.glif - four.sup - four.sup.glif - fourfifths - fourfifths.glif - fracbar - fracbar.glif - fraction - fraction.glif - g - g.glif - gbreve - gbreve.glif - gcaron - gcaron.glif - gcircumflex - gcircumflex.glif - gcommaaccent - gcommaaccent.glif - gdotaccent - gdotaccent.glif - germandbls - germandbls.glif - gmacron - gmacron.glif - grave - grave.glif - gravecmb - gravecmb.glif - gravecmb.cap - gravecmb.cap.glif - greater - greater.glif - greaterequal - greaterequal.glif - guillemetleft - guillemetleft.glif - guillemetright - guillemetright.glif - guilsinglleft - guilsinglleft.glif - guilsinglright - guilsinglright.glif - h - h.glif - hbar - hbar.glif - hbrevebelow - hbrevebelow.glif - hcedilla - hcedilla.glif - hcircumflex - hcircumflex.glif - hdotbelow - hdotbelow.glif - hlinebelow - hlinebelow.glif - hookcmb - hookcmb.glif - hookcmb.cap - hookcmb.cap.glif - horizontalbar - horizontalbar.glif - hungarumlaut - hungarumlaut.glif - hungarumlautcmb - hungarumlautcmb.glif - hungarumlautcmb.cap - hungarumlautcmb.cap.glif - hyphen - hyphen.glif - i - i.glif - iacute - iacute.glif - ibreve - ibreve.glif - icaron - icaron.glif - icircumflex - icircumflex.glif - idieresis - idieresis.glif - idotaccent - idotaccent.glif - idotbelow - idotbelow.glif - igrave - igrave.glif - ihookabove - ihookabove.glif - imacron - imacron.glif - iogonek - iogonek.glif - itilde - itilde.glif - j - j.glif - jcaron - jcaron.glif - jcircumflex - jcircumflex.glif - k - k.glif - kcommaaccent - kcommaaccent.glif - kdotbelow - kdotbelow.glif - klinebelow - klinebelow.glif - l - l.glif - l.dot - l.dot.glif - lacute - lacute.glif - lcaron - lcaron.glif - lcircumflexbelow - lcircumflexbelow.glif - lcommaaccent - lcommaaccent.glif - ldotbelow - ldotbelow.glif - less - less.glif - lessequal - lessequal.glif - llinebelow - llinebelow.glif - lmacrondotbelow - lmacrondotbelow.glif - lslash - lslash.glif - m - m.glif - macron - macron.glif - macronbelowcmb - macronbelowcmb.glif - macroncmb - macroncmb.glif - macroncmb.cap - macroncmb.cap.glif - macronlowmod - macronlowmod.glif - macute - macute.glif - mdotaccent - mdotaccent.glif - mdotbelow - mdotbelow.glif - middotcat - middotcat.glif - middotcat.cap - middotcat.cap.glif - minus - minus.glif - mu - mu.glif - multiply - multiply.glif - n - n.glif - nacute - nacute.glif - naira - naira.glif - ncaron - ncaron.glif - ncircumflexbelow - ncircumflexbelow.glif - ncommaaccent - ncommaaccent.glif - ndotaccent - ndotaccent.glif - ndotbelow - ndotbelow.glif - ngrave - ngrave.glif - nine - nine.glif - nine.den - nine.den.glif - nine.inf - nine.inf.glif - nine.num - nine.num.glif - nine.sup - nine.sup.glif - nlinebelow - nlinebelow.glif - notequal - notequal.glif - ntilde - ntilde.glif - numbersign - numbersign.glif - o - o.glif - oacute - oacute.glif - obreve - obreve.glif - ocaron - ocaron.glif - ocircumflex - ocircumflex.glif - ocircumflexacute - ocircumflexacute.glif - ocircumflexdotbelow - ocircumflexdotbelow.glif - ocircumflexgrave - ocircumflexgrave.glif - ocircumflexhookabove - ocircumflexhookabove.glif - ocircumflextilde - ocircumflextilde.glif - odieresis - odieresis.glif - odotaccent - odotaccent.glif - odotbelow - odotbelow.glif - oe - oe.glif - ogonek - ogonek.glif - ogonekcmb - ogonekcmb.glif - ograve - ograve.glif - ohookabove - ohookabove.glif - ohorn - ohorn.glif - ohornacute - ohornacute.glif - ohorndotbelow - ohorndotbelow.glif - ohorngrave - ohorngrave.glif - ohornhookabove - ohornhookabove.glif - ohorntilde - ohorntilde.glif - ohungarumlaut - ohungarumlaut.glif - omacron - omacron.glif - one - one.glif - one.den - one.den.glif - one.inf - one.inf.glif - one.num - one.num.glif - one.sup - one.sup.glif - oneeighth - oneeighth.glif - onefifth - onefifth.glif - onehalf - onehalf.glif - onequarter - onequarter.glif - onesixth - onesixth.glif - onethird - onethird.glif - oogonek - oogonek.glif - ordfeminine - ordfeminine.glif - ordmasculine - ordmasculine.glif - oslash - oslash.glif - otilde - otilde.glif - p - p.glif - paragraph - paragraph.glif - parenleft - parenleft.glif - parenright - parenright.glif - percent - percent.glif - period - period.glif - periodcentered - periodcentered.glif - peso - peso.glif - plus - plus.glif - plusminus - plusminus.glif - primemod - primemod.glif - published - published.glif - q - q.glif - question - question.glif - questiondown - questiondown.glif - quotedbl - quotedbl.glif - quotedblbase - quotedblbase.glif - quotedblleft - quotedblleft.glif - quotedblright - quotedblright.glif - quoteleft - quoteleft.glif - quoteright - quoteright.glif - quotesinglbase - quotesinglbase.glif - quotesingle - quotesingle.glif - r - r.glif - racute - racute.glif - rcaron - rcaron.glif - rcommaaccent - rcommaaccent.glif - rdotaccent - rdotaccent.glif - rdotbelow - rdotbelow.glif - registered - registered.glif - ring - ring.glif - ringcmb - ringcmb.glif - ringcmb.cap - ringcmb.cap.glif - ringhalfleft - ringhalfleft.glif - ringhalfright - ringhalfright.glif - rlinebelow - rlinebelow.glif - rmacrondotbelow - rmacrondotbelow.glif - s - s.glif - sacute - sacute.glif - scaron - scaron.glif - scedilla - scedilla.glif - schwa - schwa.glif - scircumflex - scircumflex.glif - scommaaccent - scommaaccent.glif - sdotbelow - sdotbelow.glif - section - section.glif - semicolon - semicolon.glif - servicemark - servicemark.glif - seven - seven.glif - seven.den - seven.den.glif - seven.inf - seven.inf.glif - seven.num - seven.num.glif - seven.sup - seven.sup.glif - seveneighths - seveneighths.glif - six - six.glif - six.den - six.den.glif - six.inf - six.inf.glif - six.num - six.num.glif - six.sup - six.sup.glif - slash - slash.glif - space - space.glif - sterling - sterling.glif - t - t.glif - tbar - tbar.glif - tcaron - tcaron.glif - tcedilla - tcedilla.glif - tcircumflexbelow - tcircumflexbelow.glif - tcommaaccent - tcommaaccent.glif - tdotbelow - tdotbelow.glif - thorn - thorn.glif - three - three.glif - three.den - three.den.glif - three.inf - three.inf.glif - three.num - three.num.glif - three.sup - three.sup.glif - threeeighths - threeeighths.glif - threefifths - threefifths.glif - threequarters - threequarters.glif - tilde - tilde.glif - tildecmb - tildecmb.glif - tildecmb.cap - tildecmb.cap.glif - tlinebelow - tlinebelow.glif - trademark - trademark.glif - two - two.glif - two.den - two.den.glif - two.inf - two.inf.glif - two.num - two.num.glif - two.sup - two.sup.glif - twodotleader - twodotleader.glif - twofifths - twofifths.glif - twothirds - twothirds.glif - u - u.glif - uacute - uacute.glif - ubreve - ubreve.glif - ucaron - ucaron.glif - ucircumflex - ucircumflex.glif - udieresis - udieresis.glif - udieresisacute - udieresisacute.glif - udieresiscaron - udieresiscaron.glif - udieresisgrave - udieresisgrave.glif - udieresismacron - udieresismacron.glif - udotbelow - udotbelow.glif - ugrave - ugrave.glif - uhookabove - uhookabove.glif - uhorn - uhorn.glif - uhornacute - uhornacute.glif - uhorndotbelow - uhorndotbelow.glif - uhorngrave - uhorngrave.glif - uhornhookabove - uhornhookabove.glif - uhorntilde - uhorntilde.glif - uhungarumlaut - uhungarumlaut.glif - umacron - umacron.glif - underscore - underscore.glif - uni00A0 - uni00A_0.glif - uni0326 - uni0326.glif - uni1E9E - uni1E_9E_.glif - uni2011 - uni2011.glif - uni20B9 - uni20B_9.glif - uni20BA - uni20B_A_.glif - uni20BD - uni20B_D_.glif - uniA788 - uniA_788.glif - uogonek - uogonek.glif - uring - uring.glif - utilde - utilde.glif - v - v.glif - vdotbelow - vdotbelow.glif - verticallinelowmod - verticallinelowmod.glif - verticallinemod - verticallinemod.glif - w - w.glif - wacute - wacute.glif - wcircumflex - wcircumflex.glif - wdieresis - wdieresis.glif - wgrave - wgrave.glif - won - won.glif - x - x.glif - xdieresis - xdieresis.glif - y - y.glif - yacute - yacute.glif - ycircumflex - ycircumflex.glif - ydieresis - ydieresis.glif - ydotaccent - ydotaccent.glif - ydotbelow - ydotbelow.glif - yen - yen.glif - ygrave - ygrave.glif - yhookabove - yhookabove.glif - ymacron - ymacron.glif - ytilde - ytilde.glif - z - z.glif - zacute - zacute.glif - zcaron - zcaron.glif - zcircumflex - zcircumflex.glif - zdotaccent - zdotaccent.glif - zdotbelow - zdotbelow.glif - zero - zero.glif - zero.den - zero.den.glif - zero.inf - zero.inf.glif - zero.num - zero.num.glif - zero.sup - zero.sup.glif - zlinebelow - zlinebelow.glif - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dcircumflexbelow.glif deleted file mode 100644 index 93dc8509..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ddotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ddotbelow.glif deleted file mode 100644 index 14b8d4d9..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ddotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dlinebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dlinebelow.glif deleted file mode 100644 index 53f0125e..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/eacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/eacute.glif deleted file mode 100644 index 40b65bd8..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/eacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ebreve.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ebreve.glif deleted file mode 100644 index 61efc8a9..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ebreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ecaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ecaron.glif deleted file mode 100644 index d90792c5..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ecaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ecircumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ecircumflex.glif deleted file mode 100644 index f47166c0..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ecircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ecircumflexacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ecircumflexacute.glif deleted file mode 100644 index 5156e3c6..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ecircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ecircumflexgrave.glif deleted file mode 100644 index 51876dcf..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ecircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ecircumflexhookabove.glif deleted file mode 100644 index bd63fcd7..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ecircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ecircumflextilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ecircumflextilde.glif deleted file mode 100644 index a38fd96f..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ecircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/edieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/edieresis.glif deleted file mode 100644 index 8796b5a9..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/edieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/edotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/edotaccent.glif deleted file mode 100644 index 58d527e1..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/edotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/edotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/edotbelow.glif deleted file mode 100644 index 573facf4..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/edotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/egrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/egrave.glif deleted file mode 100644 index 5e24108b..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/egrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ehookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ehookabove.glif deleted file mode 100644 index 3f9d22b4..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ehookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/eight.num.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/eight.num.glif deleted file mode 100644 index 81f07dcc..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/eight.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/emacron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/emacron.glif deleted file mode 100644 index d44b0a78..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/emacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/etilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/etilde.glif deleted file mode 100644 index 296cb825..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/etilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/five.num.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/five.num.glif deleted file mode 100644 index 72178220..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/five.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/four.num.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/four.num.glif deleted file mode 100644 index 5e556b65..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/four.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/horizontalbar.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/horizontalbar.glif deleted file mode 100644 index 19ce9f0d..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/horizontalbar.glif +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/idotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/idotbelow.glif deleted file mode 100644 index fa8546ae..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/idotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/jcaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/jcaron.glif deleted file mode 100644 index 9b22a329..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/jcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/jcircumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/jcircumflex.glif deleted file mode 100644 index 80fcfe4b..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/jcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/kcommaaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/kcommaaccent.glif deleted file mode 100644 index e211c539..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/kcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/kdotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/kdotbelow.glif deleted file mode 100644 index b2145336..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/kdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/klinebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/klinebelow.glif deleted file mode 100644 index e9e0a8d6..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/klinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/macute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/macute.glif deleted file mode 100644 index 9f06011d..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/macute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/mdotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/mdotaccent.glif deleted file mode 100644 index 31b66c34..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/mdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/mdotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/mdotbelow.glif deleted file mode 100644 index cb17b3c8..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/mdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/nine.num.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/nine.num.glif deleted file mode 100644 index 878f7458..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/nine.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/odotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/odotbelow.glif deleted file mode 100644 index 7330fd8d..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/odotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ohorndotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ohorndotbelow.glif deleted file mode 100644 index 394b3e50..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ohorndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/one.num.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/one.num.glif deleted file mode 100644 index 367c2baa..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/one.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/sacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/sacute.glif deleted file mode 100644 index 29dec34a..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/sacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/scaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/scaron.glif deleted file mode 100644 index 1a4afe21..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/scaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/seven.num.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/seven.num.glif deleted file mode 100644 index 4376d42c..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/seven.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/six.num.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/six.num.glif deleted file mode 100644 index 119c6dd1..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/six.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tcircumflexbelow.glif deleted file mode 100644 index ec1788d5..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tcommaaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tcommaaccent.glif deleted file mode 100644 index 595dd81b..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tdotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tdotbelow.glif deleted file mode 100644 index 472836ae..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/three.num.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/three.num.glif deleted file mode 100644 index 3898d04c..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/three.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tlinebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tlinebelow.glif deleted file mode 100644 index eff6cee8..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/two.num.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/two.num.glif deleted file mode 100644 index 113ff06e..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/two.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/udotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/udotbelow.glif deleted file mode 100644 index cfc1b095..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/udotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uhorndotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uhorndotbelow.glif deleted file mode 100644 index 4fc8e99f..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uhorndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uni2011.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uni2011.glif deleted file mode 100644 index cb2d7998..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uni2011.glif +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/vdotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/vdotbelow.glif deleted file mode 100644 index c5d385cf..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/vdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/wcircumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/wcircumflex.glif deleted file mode 100644 index afb37d0e..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/wcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/wdieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/wdieresis.glif deleted file mode 100644 index fc820f3e..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/wdieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/xdieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/xdieresis.glif deleted file mode 100644 index ae08705b..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/xdieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ydotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ydotbelow.glif deleted file mode 100644 index d6d2c90d..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ydotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zero.num.glif b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zero.num.glif deleted file mode 100644 index 67c30058..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zero.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/lib.plist b/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/lib.plist deleted file mode 100644 index 6cee22db..00000000 --- a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/lib.plist +++ /dev/null @@ -1,1288 +0,0 @@ - - - - - com.typemytype.robofont.compileSettings.autohint - - com.typemytype.robofont.compileSettings.checkOutlines - - com.typemytype.robofont.compileSettings.createDummyDSIG - - com.typemytype.robofont.compileSettings.decompose - - com.typemytype.robofont.compileSettings.generateFormat - 1 - com.typemytype.robofont.compileSettings.releaseMode - 1 - com.typemytype.robofont.italicSlantOffset - 0 - com.typemytype.robofont.segmentType - curve - com.typemytype.robofont.shouldAddPointsInSplineConversion - 1 - public.glyphOrder - - .notdef - A - B - C - D - E - F - G - H - I - J - K - L - M - N - O - P - Q - R - S - T - U - V - W - X - Y - Z - a - b - c - d - e - f - g - h - i - j - k - l - m - n - o - p - q - r - s - t - u - v - w - x - y - z - period - comma - colon - semicolon - question - exclam - questiondown - exclamdown - ellipsis - twodotleader - quotedblleft - quotedblright - quotedblbase - quoteleft - quoteright - quotesinglbase - guillemetleft - guillemetright - guilsinglleft - guilsinglright - parenleft - parenright - bracketleft - bracketright - braceleft - braceright - slash - backslash - bar - hyphen - endash - emdash - periodcentered - bullet - underscore - ampersand - at - published - copyright - registered - servicemark - trademark - asterisk - dagger - daggerdbl - section - paragraph - zero - one - two - three - four - five - six - seven - eight - nine - colon.fig - plus - divide - minus - equal - notequal - asciitilde - approxequal - multiply - less - greater - lessequal - greaterequal - plusminus - asciicircum - mu - numbersign - percent - quotedbl - quotesingle - ordfeminine - ordmasculine - degree - dollar - sterling - yen - Euro - naira - peso - uni20BA - uni20BD - uni20B9 - bahtthai - won - cent - dong - onehalf - onethird - twothirds - onequarter - threequarters - onefifth - twofifths - threefifths - fourfifths - onesixth - fivesixths - oneeighth - threeeighths - fiveeighths - seveneighths - zero.sup - one.sup - two.sup - three.sup - four.sup - five.sup - six.sup - seven.sup - eight.sup - nine.sup - zero.inf - one.inf - two.inf - three.inf - four.inf - five.inf - six.inf - seven.inf - eight.inf - nine.inf - primemod - dblprimemod - commaturnedmod - apostrophemod - ringhalfleft - ringhalfright - verticallinemod - verticallinelowmod - acute - hungarumlaut - grave - circumflex - caron - breve - tilde - macron - dieresis - dotaccent - ring - uniA788 - macronlowmod - cedilla - ogonek - Aacute - Agrave - Acircumflex - Acircumflexdotbelow - Acircumflexacute - Acircumflexgrave - Acircumflexhookabove - Acircumflextilde - Acaron - Abreve - Abrevedotbelow - Abreveacute - Abrevegrave - Abrevehookabove - Abrevetilde - Atilde - Amacron - Adieresis - Adotaccent - Aring - Ahookabove - Adotbelow - Aogonek - AE - Blinebelow - Cacute - Ccircumflex - Ccaron - Cdotaccent - Ccedilla - Dcaron - Dcircumflexbelow - Dlinebelow - Ddotbelow - Dcroat - Eacute - Egrave - Ecircumflex - Ecircumflexdotbelow - Ecircumflexacute - Ecircumflexgrave - Ecircumflexhookabove - Ecircumflextilde - Ecaron - Ebreve - Etilde - Emacron - Edieresis - Edotaccent - Ehookabove - Edotbelow - Eogonek - Gcircumflex - Gcaron - Gbreve - Gmacron - Gdotaccent - Gcommaaccent - Hcircumflex - Hbrevebelow - Hdotbelow - Hcedilla - Hbar - Iacute - Igrave - Icircumflex - Icaron - Ibreve - Itilde - Imacron - Idieresis - Idotaccent - Ihookabove - Idotbelow - Iogonek - Jcircumflex - Klinebelow - Kcommaaccent - Kdotbelow - Lacute - Lcaron - Lcommaaccent - Lcircumflexbelow - Llinebelow - Lmacrondotbelow - Ldotbelow - L.dot - Lslash - Macute - Mdotaccent - Mdotbelow - Nacute - Ngrave - Ncaron - Ntilde - Ndotaccent - Ncircumflexbelow - Ncommaaccent - Ndotbelow - Nlinebelow - Eng - Oacute - Ohungarumlaut - Ograve - Ocircumflex - Ocircumflexdotbelow - Ocircumflexacute - Ocircumflexgrave - Ocircumflexhookabove - Ocircumflextilde - Ocaron - Obreve - Otilde - Omacron - Odieresis - Odotaccent - Ohookabove - Odotbelow - Oogonek - Oslash - OE - Ohorn - Ohornacute - Ohorngrave - Ohorntilde - Ohornhookabove - Ohorndotbelow - Racute - Rcaron - Rdotaccent - Rmacrondotbelow - Rcommaaccent - Rdotbelow - Rlinebelow - Sacute - Scircumflex - Scaron - Scommaaccent - Sdotbelow - Scedilla - uni1E9E - Tcaron - Tcircumflexbelow - Tcommaaccent - Tdotbelow - Tlinebelow - Tcedilla - Tbar - Uacute - Uhungarumlaut - Ugrave - Ucircumflex - Ucaron - Ubreve - Utilde - Umacron - Udieresis - Udieresisacute - Udieresisgrave - Udieresiscaron - Udieresismacron - Uring - Uhookabove - Udotbelow - Uogonek - Uhorn - Uhornacute - Uhorngrave - Uhorntilde - Uhornhookabove - Uhorndotbelow - Vdotbelow - Wacute - Wgrave - Wcircumflex - Wdieresis - Xdieresis - Yacute - Ygrave - Ycircumflex - Ytilde - Ymacron - Ydieresis - Ydotaccent - Yhookabove - Ydotbelow - Zacute - Zcircumflex - Zcaron - Zdotaccent - Zdotbelow - Zlinebelow - Eth - Thorn - Schwa - aacute - agrave - acircumflex - acircumflexdotbelow - acircumflexacute - acircumflexgrave - acircumflexhookabove - acircumflextilde - acaron - abreve - abrevedotbelow - abreveacute - abrevegrave - abrevehookabove - abrevetilde - atilde - amacron - adieresis - adotaccent - aring - ahookabove - adotbelow - aogonek - ae - blinebelow - cacute - ccircumflex - ccaron - cdotaccent - ccedilla - dcaron - dcircumflexbelow - dlinebelow - ddotbelow - dcroat - eacute - egrave - ecircumflex - ecircumflexdotbelow - ecircumflexacute - ecircumflexgrave - ecircumflexhookabove - ecircumflextilde - ecaron - ebreve - etilde - emacron - edieresis - edotaccent - ehookabove - edotbelow - eogonek - gcircumflex - gcaron - gbreve - gmacron - gdotaccent - gcommaaccent - hcircumflex - hbrevebelow - hlinebelow - hdotbelow - hcedilla - hbar - dotlessi - iacute - igrave - icircumflex - icaron - ibreve - itilde - imacron - idieresis - idotaccent - ihookabove - idotbelow - iogonek - dotlessj - jcircumflex - jcaron - klinebelow - kcommaaccent - kdotbelow - lacute - lcaron - lcommaaccent - lcircumflexbelow - llinebelow - lmacrondotbelow - ldotbelow - l.dot - lslash - macute - mdotaccent - mdotbelow - nacute - ngrave - ncaron - ntilde - ndotaccent - ncircumflexbelow - ncommaaccent - ndotbelow - nlinebelow - eng - oacute - ohungarumlaut - ograve - ocircumflex - ocircumflexdotbelow - ocircumflexacute - ocircumflexgrave - ocircumflexhookabove - ocircumflextilde - ocaron - obreve - otilde - omacron - odieresis - odotaccent - ohookabove - odotbelow - oogonek - oslash - oe - ohorn - ohornacute - ohorngrave - ohorntilde - ohornhookabove - ohorndotbelow - racute - rcaron - rdotaccent - rmacrondotbelow - rcommaaccent - rdotbelow - rlinebelow - sacute - scircumflex - scaron - scommaaccent - sdotbelow - scedilla - germandbls - tcaron - tcircumflexbelow - tcommaaccent - tdotbelow - tlinebelow - tcedilla - tbar - uacute - uhungarumlaut - ugrave - ucircumflex - ucaron - ubreve - utilde - umacron - udieresis - udieresisacute - udieresisgrave - udieresiscaron - udieresismacron - uring - uhookabove - udotbelow - uogonek - uhorn - uhornacute - uhorngrave - uhorntilde - uhornhookabove - uhorndotbelow - vdotbelow - wacute - wgrave - wcircumflex - wdieresis - xdieresis - yacute - ygrave - ycircumflex - ytilde - ymacron - ydieresis - ydotaccent - yhookabove - ydotbelow - zacute - zcircumflex - zcaron - zdotaccent - zdotbelow - zlinebelow - eth - thorn - schwa - space - uni00A0 - zero.num - one.num - two.num - three.num - four.num - five.num - six.num - seven.num - eight.num - nine.num - fraction - fracbar - zero.den - one.den - two.den - three.den - four.den - five.den - six.den - seven.den - eight.den - nine.den - uni2011 - horizontalbar - middotcat - middotcat.cap - acutecmb - hungarumlautcmb - gravecmb - commaaboverightcmb - circumflexcmb - caroncmb - brevecmb - tildecmb - macroncmb - dieresiscmb - dotaccentcmb - ringcmb - commaturnedabovecmb - hookcmb - circumflexbelowcmb - brevebelowcmb - macronbelowcmb - dieresisbelowcmb - dotbelowcmb - uni0326 - cedillacmb - ogonekcmb - dieresisacute - dieresisgrave - dieresiscaron - dieresismacron - breveacute - brevegrave - brevehook - brevetilde - circumflexacute - circumflexgrave - circumflexhook - circumflextilde - acutecmb.cap - hungarumlautcmb.cap - gravecmb.cap - circumflexcmb.cap - caroncmb.cap - brevecmb.cap - tildecmb.cap - macroncmb.cap - dieresiscmb.cap - dotaccentcmb.cap - ringcmb.cap - hookcmb.cap - dieresisacute.cap - dieresisgrave.cap - dieresiscaron.cap - dieresismacron.cap - breveacute.cap - brevegrave.cap - brevehook.cap - brevetilde.cap - circumflexacute.cap - circumflexgrave.cap - circumflexhook.cap - circumflextilde.cap - - public.postscriptNames - - Abreveacute - uni1EAE - Abrevedotbelow - uni1EB6 - Abrevegrave - uni1EB0 - Abrevehookabove - uni1EB2 - Abrevetilde - uni1EB4 - Acaron - uni01CD - Acircumflexacute - uni1EA4 - Acircumflexdotbelow - uni1EAC - Acircumflexgrave - uni1EA6 - Acircumflexhookabove - uni1EA8 - Acircumflextilde - uni1EAA - Adotaccent - uni0226 - Adotbelow - uni1EA0 - Ahookabove - uni1EA2 - Blinebelow - uni1E06 - Dcircumflexbelow - uni1E12 - Ddotbelow - uni1E0C - Dlinebelow - uni1E0E - Ecircumflexacute - uni1EBE - Ecircumflexdotbelow - uni1EC6 - Ecircumflexgrave - uni1EC0 - Ecircumflexhookabove - uni1EC2 - Ecircumflextilde - uni1EC4 - Edotbelow - uni1EB8 - Ehookabove - uni1EBA - Etilde - uni1EBC - Gcommaaccent - uni0122 - Gmacron - uni1E20 - Hbrevebelow - uni1E2A - Hcedilla - uni1E28 - Hdotbelow - uni1E24 - Icaron - uni01CF - Idotbelow - uni1ECA - Ihookabove - uni1EC8 - Kcommaaccent - uni0136 - Kdotbelow - uni1E32 - Klinebelow - uni1E34 - L.dot - Ldot - Lcircumflexbelow - uni1E3C - Lcommaaccent - uni013B - Ldotbelow - uni1E36 - Llinebelow - uni1E3A - Lmacrondotbelow - uni1E38 - Macute - uni1E3E - Mdotaccent - uni1E40 - Mdotbelow - uni1E42 - Ncircumflexbelow - uni1E4A - Ncommaaccent - uni0145 - Ndotaccent - uni1E44 - Ndotbelow - uni1E46 - Ngrave - uni01F8 - Nlinebelow - uni1E48 - Ocaron - uni01D1 - Ocircumflexacute - uni1ED0 - Ocircumflexdotbelow - uni1ED8 - Ocircumflexgrave - uni1ED2 - Ocircumflexhookabove - uni1ED4 - Ocircumflextilde - uni1ED6 - Odotaccent - uni022E - Odotbelow - uni1ECC - Ohookabove - uni1ECE - Ohornacute - uni1EDA - Ohorndotbelow - uni1EE2 - Ohorngrave - uni1EDC - Ohornhookabove - uni1EDE - Ohorntilde - uni1EE0 - Oogonek - uni01EA - Rcommaaccent - uni0156 - Rdotaccent - uni1E58 - Rdotbelow - uni1E5A - Rlinebelow - uni1E5E - Rmacrondotbelow - uni1E5C - Scedilla - uni015E - Schwa - uni018F - Scommaaccent - uni0218 - Sdotbelow - uni1E62 - Tcedilla - uni0162 - Tcircumflexbelow - uni1E70 - Tcommaaccent - uni021A - Tdotbelow - uni1E6C - Tlinebelow - uni1E6E - Ucaron - uni01D3 - Udieresisacute - uni01D7 - Udieresiscaron - uni01D9 - Udieresisgrave - uni01DB - Udieresismacron - uni01D5 - Udotbelow - uni1EE4 - Uhookabove - uni1EE6 - Uhornacute - uni1EE8 - Uhorndotbelow - uni1EF0 - Uhorngrave - uni1EEA - Uhornhookabove - uni1EEC - Uhorntilde - uni1EEE - Vdotbelow - uni1E7E - Xdieresis - uni1E8C - Ydotaccent - uni1E8E - Ydotbelow - uni1EF4 - Yhookabove - uni1EF6 - Ymacron - uni0232 - Ytilde - uni1EF8 - Zcircumflex - uni1E90 - Zdotbelow - uni1E92 - Zlinebelow - uni1E94 - abreveacute - uni1EAF - abrevedotbelow - uni1EB7 - abrevegrave - uni1EB1 - abrevehookabove - uni1EB3 - abrevetilde - uni1EB5 - acaron - uni01CE - acircumflexacute - uni1EA5 - acircumflexdotbelow - uni1EAD - acircumflexgrave - uni1EA7 - acircumflexhookabove - uni1EA9 - acircumflextilde - uni1EAB - acutecmb - uni0301 - acutecmb.cap - uni0301.cap - adotaccent - uni0227 - adotbelow - uni1EA1 - ahookabove - uni1EA3 - apostrophemod - uni02BC - bahtthai - uni0E3F - blinebelow - uni1E07 - breveacute - uni02D80301 - breveacute.cap - uni02D80301.cap - brevebelowcmb - uni032E - brevecmb - uni0306 - brevecmb.cap - uni0306.cap - brevegrave - uni02D80300 - brevegrave.cap - uni02D80300.cap - brevehook - uni02D80309 - brevehook.cap - uni02D80309.cap - brevetilde - uni02D80303 - brevetilde.cap - uni02D80303.cap - caroncmb - uni030C - caroncmb.cap - uni030C.cap - cedillacmb - uni0327 - circumflexacute - uni02C60301 - circumflexacute.cap - uni02C60301.cap - circumflexbelowcmb - uni032D - circumflexcmb - uni0302 - circumflexcmb.cap - uni0302.cap - circumflexgrave - uni02C60300 - circumflexgrave.cap - uni02C60300.cap - circumflexhook - uni02C60309 - circumflexhook.cap - uni02C60309.cap - circumflextilde - uni02C60303 - circumflextilde.cap - uni02C60303.cap - commaaboverightcmb - uni0315 - commaturnedabovecmb - uni0312 - commaturnedmod - uni02BB - dblprimemod - uni02BA - dcircumflexbelow - uni1E13 - ddotbelow - uni1E0D - dieresisacute - uni00A80301 - dieresisacute.cap - uni00A80301.cap - dieresisbelowcmb - uni0324 - dieresiscaron - uni00A8030C - dieresiscaron.cap - uni00A8030C.cap - dieresiscmb - uni0308 - dieresiscmb.cap - uni0308.cap - dieresisgrave - uni00A80300 - dieresisgrave.cap - uni00A80300.cap - dieresismacron - uni00A80304 - dieresismacron.cap - uni00A80304.cap - dlinebelow - uni1E0F - dotaccentcmb - uni0307 - dotaccentcmb.cap - uni0307.cap - dotbelowcmb - uni0323 - dotlessj - uni0237 - ecircumflexacute - uni1EBF - ecircumflexdotbelow - uni1EC7 - ecircumflexgrave - uni1EC1 - ecircumflexhookabove - uni1EC3 - ecircumflextilde - uni1EC5 - edotbelow - uni1EB9 - ehookabove - uni1EBB - etilde - uni1EBD - gcommaaccent - uni0123 - gmacron - uni1E21 - gravecmb - uni0300 - gravecmb.cap - uni0300.cap - guillemetleft - uni00AB - guillemetright - uni00BB - hbrevebelow - uni1E2B - hcedilla - uni1E29 - hdotbelow - uni1E25 - hlinebelow - uni1E96 - hookcmb - uni0309 - hookcmb.cap - uni0309.cap - horizontalbar - uni2015 - hungarumlautcmb - uni030B - hungarumlautcmb.cap - uni030B.cap - icaron - uni01D0 - idotaccent - i.dot - idotbelow - uni1ECB - ihookabove - uni1EC9 - jcaron - uni01F0 - kcommaaccent - uni0137 - kdotbelow - uni1E33 - klinebelow - uni1E35 - l.dot - ldot - lcircumflexbelow - uni1E3D - lcommaaccent - uni013C - ldotbelow - uni1E37 - llinebelow - uni1E3B - lmacrondotbelow - uni1E39 - macronbelowcmb - uni0331 - macroncmb - uni0304 - macroncmb.cap - uni0304.cap - macronlowmod - uni02CD - macute - uni1E3F - mdotaccent - uni1E41 - mdotbelow - uni1E43 - naira - uni20A6 - ncircumflexbelow - uni1E4B - ncommaaccent - uni0146 - ndotaccent - uni1E45 - ndotbelow - uni1E47 - ngrave - uni01F9 - nlinebelow - uni1E49 - ocaron - uni01D2 - ocircumflexacute - uni1ED1 - ocircumflexdotbelow - uni1ED9 - ocircumflexgrave - uni1ED3 - ocircumflexhookabove - uni1ED5 - ocircumflextilde - uni1ED7 - odotaccent - uni022F - odotbelow - uni1ECD - ogonekcmb - uni0328 - ohookabove - uni1ECF - ohornacute - uni1EDB - ohorndotbelow - uni1EE3 - ohorngrave - uni1EDD - ohornhookabove - uni1EDF - ohorntilde - uni1EE1 - oogonek - uni01EB - peso - uni20B1 - primemod - uni02B9 - published - uni2117 - rcommaaccent - uni0157 - rdotaccent - uni1E59 - rdotbelow - uni1E5B - ringcmb - uni030A - ringcmb.cap - uni030A.cap - ringhalfleft - uni02BF - ringhalfright - uni02BE - rlinebelow - uni1E5F - rmacrondotbelow - uni1E5D - scedilla - uni015F - schwa - uni0259 - scommaaccent - uni0219 - sdotbelow - uni1E63 - servicemark - uni2120 - tcedilla - uni0163 - tcircumflexbelow - uni1E71 - tcommaaccent - uni021B - tdotbelow - uni1E6D - tildecmb - uni0303 - tildecmb.cap - uni0303.cap - tlinebelow - uni1E6F - twodotleader - uni2025 - ucaron - uni01D4 - udieresisacute - uni01D8 - udieresiscaron - uni01DA - udieresisgrave - uni01DC - udieresismacron - uni01D6 - udotbelow - uni1EE5 - uhookabove - uni1EE7 - uhornacute - uni1EE9 - uhorndotbelow - uni1EF1 - uhorngrave - uni1EEB - uhornhookabove - uni1EED - uhorntilde - uni1EEF - uni1E9E - uni1E9E - vdotbelow - uni1E7F - verticallinelowmod - uni02CC - verticallinemod - uni02C8 - won - uni20A9 - xdieresis - uni1E8D - ydotaccent - uni1E8F - ydotbelow - uni1EF5 - yhookabove - uni1EF7 - ymacron - uni0233 - ytilde - uni1EF9 - zcircumflex - uni1E91 - zdotbelow - uni1E93 - zlinebelow - uni1E95 - - - diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/features.fea b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/features.fea new file mode 100644 index 00000000..73f722ae --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/features.fea @@ -0,0 +1,6 @@ + +include(../../features/shared.fea); + +include(../../features/mark/IntelOneMono-MediumItalic mark.fea); + +include(../../features/aalt.fea); diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/fontinfo.plist b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/fontinfo.plist new file mode 100644 index 00000000..e38a1b5e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/fontinfo.plist @@ -0,0 +1,407 @@ + + + + + ascender + 740 + capHeight + 655 + copyright + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + descender + -260 + familyName + Intel One Mono + guidelines + + italicAngle + -16.0 + openTypeHeadFlags + + 0 + 1 + + openTypeHheaAscender + 1090 + openTypeHheaDescender + -290 + openTypeHheaLineGap + 0 + openTypeNameDesigner + Fred Shallcrass + openTypeNameDesignerURL + http://frerejones.com + openTypeNameLicense + This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL + openTypeNameLicenseURL + https://github.com/intel/intel-one-mono/blob/main/license + openTypeNameManufacturer + Frere-Jones Type LLC + openTypeNameManufacturerURL + http://frerejones.com + openTypeNamePreferredFamilyName + Intel One Mono + openTypeNamePreferredSubfamilyName + Medium Italic + openTypeNameRecords + + + encodingID + 0 + languageID + 0 + nameID + 0 + platformID + 1 + string + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + + + encodingID + 1 + languageID + 1033 + nameID + 0 + platformID + 3 + string + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + + + encodingID + 0 + languageID + 0 + nameID + 1 + platformID + 1 + string + Intel One Mono Medium + + + encodingID + 1 + languageID + 1033 + nameID + 1 + platformID + 3 + string + Intel One Mono Medium + + + encodingID + 0 + languageID + 0 + nameID + 2 + platformID + 1 + string + Italic + + + encodingID + 1 + languageID + 1033 + nameID + 2 + platformID + 3 + string + Italic + + + encodingID + 0 + languageID + 0 + nameID + 4 + platformID + 1 + string + Intel One Mono Medium Italic + + + encodingID + 1 + languageID + 1033 + nameID + 4 + platformID + 3 + string + Intel One Mono Medium Italic + + + encodingID + 0 + languageID + 0 + nameID + 6 + platformID + 1 + string + IntelOneMono-MediumItalic + + + encodingID + 1 + languageID + 1033 + nameID + 6 + platformID + 3 + string + IntelOneMono-MediumItalic + + + encodingID + 0 + languageID + 0 + nameID + 8 + platformID + 1 + string + Frere-Jones Type LLC + + + encodingID + 1 + languageID + 1033 + nameID + 8 + platformID + 3 + string + Frere-Jones Type LLC + + + encodingID + 0 + languageID + 0 + nameID + 9 + platformID + 1 + string + Fred Shallcrass + + + encodingID + 1 + languageID + 1033 + nameID + 9 + platformID + 3 + string + Fred Shallcrass + + + encodingID + 0 + languageID + 0 + nameID + 11 + platformID + 1 + string + http://frerejones.com + + + encodingID + 1 + languageID + 1033 + nameID + 11 + platformID + 3 + string + http://frerejones.com + + + encodingID + 0 + languageID + 0 + nameID + 12 + platformID + 1 + string + http://frerejones.com + + + encodingID + 1 + languageID + 1033 + nameID + 12 + platformID + 3 + string + http://frerejones.com + + + encodingID + 1 + languageID + 1033 + nameID + 16 + platformID + 3 + string + Intel One Mono + + + encodingID + 1 + languageID + 1033 + nameID + 17 + platformID + 3 + string + Medium Italic + + + openTypeOS2CodePageRanges + + 0 + 1 + 4 + 7 + 8 + 29 + + openTypeOS2Panose + + 2 + 11 + 7 + 9 + 2 + 2 + 3 + 9 + 2 + 4 + + openTypeOS2Selection + + 7 + 8 + + openTypeOS2StrikeoutPosition + 286 + openTypeOS2StrikeoutSize + 50 + openTypeOS2Type + + openTypeOS2TypoAscender + 1090 + openTypeOS2TypoDescender + -290 + openTypeOS2TypoLineGap + 0 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 29 + 32 + + openTypeOS2VendorID + FRJN + openTypeOS2WeightClass + 500 + openTypeOS2WidthClass + 5 + openTypeOS2WinAscent + 1090 + openTypeOS2WinDescent + 290 + postscriptBlueFuzz + 0 + postscriptBlueScale + 0.05 + postscriptBlueValues + + -15 + 0 + 471 + 486 + 655 + 670 + 710 + 725 + + postscriptDefaultWidthX + 614 + postscriptFamilyBlues + + postscriptFamilyOtherBlues + + postscriptFontName + IntelOneMono-MediumItalic + postscriptForceBold + + postscriptFullName + Intel One Mono Medium Italic + postscriptIsFixedPitch + + postscriptOtherBlues + + -245 + -230 + + postscriptStemSnapH + + 94 + + postscriptStemSnapV + + 106 + + postscriptUnderlinePosition + -75 + postscriptUnderlineThickness + 50 + styleMapFamilyName + Intel One Mono Medium + styleMapStyleName + italic + styleName + Medium Italic + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 4 + xHeight + 471 + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_E_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_E_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_E_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_E_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_acute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_acute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_breve.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_breve.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_breveacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_breveacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_breveacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_breveacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_brevedotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_brevedotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_brevedotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_brevedotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_brevegrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_brevegrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_brevegrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_brevegrave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_brevehookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_brevehookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_brevehookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_brevehookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_brevetilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_brevetilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_brevetilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_brevetilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_caron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_caron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_circumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_circumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_circumflexdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_circumflexdotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_circumflexdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_circumflexhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_circumflexhookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_circumflexhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_circumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_circumflextilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_circumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_dieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_dieresis.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_dotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_grave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_grave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_hookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_hookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_macron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_macron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_ogonek.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_ogonek.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_ring.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_ring.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_ring.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_ring.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_tilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/A_tilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/A_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/B_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/B_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/B_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/B_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/B_linebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/B_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/B_linebelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/B_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/C_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/C_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/C_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/C_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/C_acute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/C_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/C_acute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/C_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/C_caron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/C_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/C_caron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/C_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/C_cedilla.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/C_cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/C_cedilla.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/C_cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/C_circumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/C_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/C_circumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/C_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/C_dotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/C_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/C_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/C_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/D_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/D_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/D_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/D_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/D_caron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/D_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/D_caron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/D_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/D_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/D_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/D_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/D_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/D_croat.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/D_croat.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/D_croat.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/D_croat.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/D_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/D_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/D_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/D_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/D_linebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/D_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/D_linebelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/D_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_acute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_acute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_breve.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_breve.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_caron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_caron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_circumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_circumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_circumflexdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_circumflexdotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_circumflexdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_circumflexhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_circumflexhookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_circumflexhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_circumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_circumflextilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_circumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_dieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_dieresis.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_dotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_grave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_grave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_hookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_hookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_macron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_macron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_ng.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_ng.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_ng.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_ng.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_ogonek.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_ogonek.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_th.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_th.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_th.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_th.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_tilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_tilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_uro.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_uro.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/E_uro.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/E_uro.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/F_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/F_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/F_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/F_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/G_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/G_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/G_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/G_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/G_breve.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/G_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/G_breve.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/G_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/G_caron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/G_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/G_caron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/G_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/G_circumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/G_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/G_circumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/G_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/G_commaaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/G_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/G_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/G_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/G_dotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/G_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/G_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/G_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/G_macron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/G_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/G_macron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/G_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/H_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/H_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/H_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/H_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/H_bar.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/H_bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/H_bar.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/H_bar.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/H_brevebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/H_brevebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/H_brevebelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/H_brevebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/H_cedilla.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/H_cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/H_cedilla.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/H_cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/H_circumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/H_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/H_circumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/H_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/H_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/H_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/H_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/H_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_acute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_acute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_breve.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_breve.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_caron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_caron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_circumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_circumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_dieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_dieresis.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_dotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_grave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_grave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_hookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_hookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_macron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_macron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_ogonek.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_ogonek.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_tilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/I_tilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/I_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/J_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/J_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/J_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/J_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/J_circumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/J_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/J_circumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/J_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/K_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/K_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/K_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/K_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/K_commaaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/K_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/K_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/K_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/K_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/K_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/K_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/K_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/K_linebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/K_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/K_linebelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/K_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_.dot.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_.dot.glif new file mode 100644 index 00000000..04c0af02 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_.dot.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + public.objectLibs + + component0 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + component1 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + component2 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + + public.truetype.overlap + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_acute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_acute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_caron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_caron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_commaaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_linebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_linebelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_macrondotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_macrondotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_macrondotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_slash.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_slash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/L_slash.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/L_slash.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/M_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/M_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/M_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/M_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/M_acute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/M_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/M_acute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/M_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/M_dotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/M_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/M_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/M_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/M_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/M_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/M_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/M_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/N_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/N_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/N_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/N_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/N_acute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/N_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/N_acute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/N_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/N_caron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/N_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/N_caron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/N_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/N_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/N_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/N_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/N_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/N_commaaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/N_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/N_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/N_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/N_dotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/N_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/N_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/N_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/N_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/N_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/N_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/N_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/N_grave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/N_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/N_grave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/N_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/N_linebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/N_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/N_linebelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/N_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/N_tilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/N_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/N_tilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/N_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_E_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_E_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_E_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_E_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_acute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_acute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_breve.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_breve.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_caron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_caron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_circumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_circumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_circumflexdotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_circumflexhookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflexhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_circumflextilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_circumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_dieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_dieresis.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_dotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_grave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_grave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_hookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_hookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_horn.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_horn.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_horn.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_horn.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_hornacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_hornacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_hornacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_hornacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_horndotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_horndotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_horndotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_horngrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_horngrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_horngrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_horngrave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_hornhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_hornhookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_hornhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_horntilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_horntilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_horntilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_horntilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_hungarumlaut.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_hungarumlaut.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_hungarumlaut.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_macron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_macron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_ogonek.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_ogonek.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_slash.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_slash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_slash.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_slash.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_tilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/O_tilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/O_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/P_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/P_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/P_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/P_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Q_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Q_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Q_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Q_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/R_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/R_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/R_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/R_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/R_acute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/R_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/R_acute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/R_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/R_caron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/R_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/R_caron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/R_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/R_commaaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/R_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/R_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/R_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/R_dotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/R_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/R_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/R_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/R_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/R_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/R_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/R_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/R_linebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/R_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/R_linebelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/R_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/R_macrondotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/R_macrondotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/R_macrondotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/S_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/S_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/S_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/S_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/S_acute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/S_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/S_acute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/S_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/S_caron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/S_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/S_caron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/S_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/S_cedilla.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/S_cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/S_cedilla.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/S_cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/S_chwa.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/S_chwa.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/S_chwa.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/S_chwa.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/S_circumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/S_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/S_circumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/S_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/S_commaaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/S_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/S_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/S_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/S_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/S_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/S_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/S_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/T_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/T_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_bar.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/T_bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_bar.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/T_bar.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_caron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/T_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_caron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/T_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_cedilla.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/T_cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_cedilla.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/T_cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/T_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/T_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_commaaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/T_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/T_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/T_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/T_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_horn.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/T_horn.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/T_horn.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/T_horn.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_linebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/T_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/T_linebelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/T_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_acute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_acute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_breve.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_breve.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_caron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_caron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_circumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_circumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_dieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_dieresis.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_dieresisacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresisacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_dieresisacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresisacute.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresiscaron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_dieresiscaron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresiscaron.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresisgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_dieresisgrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresisgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_dieresismacron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresismacron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_dieresismacron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_dieresismacron.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_grave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_grave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_hookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_hookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_horn.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_horn.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_horn.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_horn.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_hornacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_hornacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_hornacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_hornacute.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_horndotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_horndotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_horndotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_horngrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_horngrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_horngrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_horngrave.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_hornhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_hornhookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_hornhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_horntilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_horntilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/U_horntilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_horntilde.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_hungarumlaut.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_hungarumlaut.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_hungarumlaut.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_macron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_macron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_ogonek.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/U_ogonek.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_ring.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_ring.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/U_ring.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_ring.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_tilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/U_tilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/U_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/V_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/V_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/V_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/V_.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/V_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/V_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/V_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/V_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/W_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/W_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/W_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/W_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/W_acute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/W_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/W_acute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/W_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/W_circumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/W_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/W_circumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/W_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/W_dieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/W_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/W_dieresis.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/W_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/W_grave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/W_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/W_grave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/W_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/X_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/X_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/X_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/X_.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/X_dieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/X_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/X_dieresis.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/X_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Y_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Y_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_acute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Y_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_acute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Y_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_circumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Y_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_circumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Y_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_dieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Y_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_dieresis.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Y_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_dotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Y_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Y_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Y_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/Y_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Y_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_grave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Y_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_grave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Y_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_hookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Y_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_hookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Y_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_macron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Y_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_macron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Y_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_tilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Y_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Y_tilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Y_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Z_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Z_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Z_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Z_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Z_acute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Z_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Z_acute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Z_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Z_caron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Z_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Z_caron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Z_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Z_circumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Z_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Z_circumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Z_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Z_dotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Z_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/Z_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Z_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Z_dotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Z_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Z_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Z_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Z_linebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Z_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/Z_linebelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/Z_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/_notdef.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/_notdef.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/_notdef.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/_notdef.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/a.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/a.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/a.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/a.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/aacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/aacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/aacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/aacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/abreve.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/abreve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/abreve.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/abreve.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/abreveacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/abreveacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/abreveacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/abreveacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/abrevedotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/abrevedotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/abrevedotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/abrevedotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/abrevegrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/abrevegrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/abrevegrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/abrevegrave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/abrevehookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/abrevehookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/abrevehookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/abrevehookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/abrevetilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/abrevetilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/abrevetilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/abrevetilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/acaron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acaron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/acaron.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acircumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/acircumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acircumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/acircumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acircumflexacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acircumflexacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acircumflexdotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acircumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acircumflexhookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/acircumflexhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acircumflextilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/acircumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/acircumflextilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/acircumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/acute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acutecmb.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/acutecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acutecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/acutecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acutecmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/acutecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/acutecmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/acutecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/adieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/adieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/adieresis.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/adieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/adotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/adotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/adotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/adotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/adotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/adotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/adotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/adotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ae.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ae.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ae.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ae.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/agrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/agrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/agrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/agrave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ahookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ahookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ahookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ahookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/amacron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/amacron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/amacron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/amacron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ampersand.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ampersand.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ampersand.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ampersand.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ampersand_ampersand.liga.glif new file mode 100644 index 00000000..0d18e46c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ampersand_ampersand.liga.glif @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/aogonek.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/aogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/aogonek.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/aogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/apostrophemod.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/apostrophemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/apostrophemod.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/apostrophemod.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/approxequal.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/approxequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/approxequal.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/approxequal.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/aring.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/aring.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/aring.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/aring.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/asciicircum.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciicircum.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/asciicircum.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciicircum.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciicircum_equal.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciicircum_equal.liga.glif new file mode 100644 index 00000000..c2d86fa5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciicircum_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/asciitilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/asciitilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..92429839 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_asciitilde_greater.glif new file mode 100644 index 00000000..20d44712 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_asciitilde_greater.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_at.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_at.liga.glif new file mode 100644 index 00000000..0200e351 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_at.liga.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_greater.liga.glif new file mode 100644 index 00000000..3e130d71 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_greater.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_hyphen.liga.glif new file mode 100644 index 00000000..3372ce21 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asciitilde_hyphen.liga.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/asterisk.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asterisk.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/asterisk.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asterisk.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_asterisk.liga.glif new file mode 100644 index 00000000..b623d8fb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_asterisk.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif new file mode 100644 index 00000000..a063ce0c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_greater.liga.glif new file mode 100644 index 00000000..d7f121c1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_slash.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_slash.liga.glif new file mode 100644 index 00000000..d6a5121e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/asterisk_slash.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/at.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/at.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/at.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/at.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/atilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/atilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/atilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/atilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/b.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/b.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/b.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/b.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/backslash.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/backslash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/backslash.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/backslash.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/backslash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/backslash_slash.liga.glif new file mode 100644 index 00000000..4e066f0d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/backslash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/bahtthai.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bahtthai.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/bahtthai.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bahtthai.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/bar.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/bar.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar.liga.glif new file mode 100644 index 00000000..0bb2a5a7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_bar.liga.glif new file mode 100644 index 00000000..f494b682 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_bar.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif new file mode 100644 index 00000000..fd6327c8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_equal.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_equal.liga.glif new file mode 100644 index 00000000..2a993ba4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_equal.start.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_equal.start.glif new file mode 100644 index 00000000..58ad1804 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_greater.liga.glif new file mode 100644 index 00000000..8205d800 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_greater.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_hyphen.liga.glif new file mode 100644 index 00000000..6b603d18 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_hyphen.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_hyphen.start.glif new file mode 100644 index 00000000..c658a55e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bar_hyphen.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_braceright.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_braceright.liga.glif new file mode 100644 index 00000000..e5967c11 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_braceright.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bracketright.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bracketright.liga.glif new file mode 100644 index 00000000..8f57e806 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_bracketright.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_equal.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_equal.liga.glif new file mode 100644 index 00000000..4d5518df --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_equal.start.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_equal.start.glif new file mode 100644 index 00000000..1b9236cb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_greater.liga.glif new file mode 100644 index 00000000..52ac8f03 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_hyphen.liga.glif new file mode 100644 index 00000000..cc255850 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_hyphen.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_hyphen.start.glif new file mode 100644 index 00000000..024e30c8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bar_hyphen.start.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/blinebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/blinebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/blinebelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/blinebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/braceleft.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/braceleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/braceleft.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/braceleft.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/braceleft_bar.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/braceleft_bar.liga.glif new file mode 100644 index 00000000..1cf4c398 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/braceleft_bar.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/braceright.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/braceright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/braceright.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/braceright.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/bracketleft.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bracketleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/bracketleft.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bracketleft.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bracketleft_bar.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bracketleft_bar.liga.glif new file mode 100644 index 00000000..7962ac5d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bracketleft_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/bracketright.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bracketright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/bracketright.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bracketright.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bracketright_numbersign.liga.glif new file mode 100644 index 00000000..4c250aab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bracketright_numbersign.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/breve.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/breve.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/breve.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/breveacute.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/breveacute.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/breveacute.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/breveacute.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/breveacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/breveacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/breveacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/breveacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/brevebelowcmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/brevebelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/brevebelowcmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/brevebelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/brevecmb.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/brevecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/brevecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/brevecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/brevecmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/brevecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/brevecmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/brevecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/brevegrave.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/brevegrave.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/brevegrave.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/brevegrave.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/brevegrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/brevegrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/brevegrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/brevegrave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/brevehook.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/brevehook.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/brevehook.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/brevehook.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/brevehook.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/brevehook.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/brevehook.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/brevehook.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/brevetilde.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/brevetilde.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/brevetilde.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/brevetilde.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/brevetilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/brevetilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/brevetilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/brevetilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/bullet.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bullet.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/bullet.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/bullet.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/c.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/c.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/c.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/c.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/cacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/cacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/cacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/cacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/caron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/caron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/caron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/caroncmb.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/caroncmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/caroncmb.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/caroncmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/caroncmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/caroncmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/caroncmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/caroncmb.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ccaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ccaron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ccaron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ccaron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ccedilla.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ccedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ccedilla.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ccedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ccircumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ccircumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ccircumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ccircumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/cdotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/cdotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/cdotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/cdotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/cedilla.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/cedilla.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/cedillacmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/cedillacmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/cedillacmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/cedillacmb.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/cent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/cent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/cent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/cent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflexacute.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflexacute.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflexacute.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflexacute.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflexacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflexbelowcmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflexbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflexbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflexbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflexcmb.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflexcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflexcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflexcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflexcmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflexcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflexcmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflexcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflexgrave.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflexgrave.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflexgrave.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflexgrave.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflexhook.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflexhook.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflexhook.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflexhook.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflexhook.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflexhook.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflexhook.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflexhook.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflextilde.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflextilde.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflextilde.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflextilde.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflextilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/circumflextilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/circumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/colon.fig.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon.fig.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/colon.fig.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon.fig.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/colon.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/colon.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon_colon.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon_colon.liga.glif new file mode 100644 index 00000000..911c4fda --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon_colon.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon_colon_colon.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon_colon_colon.liga.glif new file mode 100644 index 00000000..9018cdc3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon_colon_colon.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon_colon_equal.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon_colon_equal.liga.glif new file mode 100644 index 00000000..54218ce3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon_colon_equal.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon_equal.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon_equal.liga.glif new file mode 100644 index 00000000..a9a7b25a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon_greater.liga.glif new file mode 100644 index 00000000..535799d0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon_greater.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon_less.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon_less.liga.glif new file mode 100644 index 00000000..f0754caf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/colon_less.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/comma.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/comma.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/comma.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/comma.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/commaaboverightcmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/commaaboverightcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/commaaboverightcmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/commaaboverightcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/commaturnedabovecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/commaturnedabovecmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/commaturnedabovecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/commaturnedmod.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/commaturnedmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/commaturnedmod.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/commaturnedmod.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/contents.plist b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/contents.plist new file mode 100644 index 00000000..10a2ded8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/contents.plist @@ -0,0 +1,2092 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + AE + A_E_.glif + Aacute + A_acute.glif + Abreve + A_breve.glif + Abreveacute + A_breveacute.glif + Abrevedotbelow + A_brevedotbelow.glif + Abrevegrave + A_brevegrave.glif + Abrevehookabove + A_brevehookabove.glif + Abrevetilde + A_brevetilde.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflexacute + A_circumflexacute.glif + Acircumflexdotbelow + A_circumflexdotbelow.glif + Acircumflexgrave + A_circumflexgrave.glif + Acircumflexhookabove + A_circumflexhookabove.glif + Acircumflextilde + A_circumflextilde.glif + Adieresis + A_dieresis.glif + Adotaccent + A_dotaccent.glif + Adotbelow + A_dotbelow.glif + Agrave + A_grave.glif + Ahookabove + A_hookabove.glif + Amacron + A_macron.glif + Aogonek + A_ogonek.glif + Aring + A_ring.glif + Atilde + A_tilde.glif + B + B_.glif + Blinebelow + B_linebelow.glif + C + C_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + D + D_.glif + Dcaron + D_caron.glif + Dcircumflexbelow + D_circumflexbelow.glif + Dcroat + D_croat.glif + Ddotbelow + D_dotbelow.glif + Dlinebelow + D_linebelow.glif + E + E_.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Ecircumflexacute + E_circumflexacute.glif + Ecircumflexdotbelow + E_circumflexdotbelow.glif + Ecircumflexgrave + E_circumflexgrave.glif + Ecircumflexhookabove + E_circumflexhookabove.glif + Ecircumflextilde + E_circumflextilde.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Edotbelow + E_dotbelow.glif + Egrave + E_grave.glif + Ehookabove + E_hookabove.glif + Emacron + E_macron.glif + Eng + E_ng.glif + Eogonek + E_ogonek.glif + Eth + E_th.glif + Etilde + E_tilde.glif + Euro + E_uro.glif + F + F_.glif + G + G_.glif + Gbreve + G_breve.glif + Gcaron + G_caron.glif + Gcircumflex + G_circumflex.glif + Gcommaaccent + G_commaaccent.glif + Gdotaccent + G_dotaccent.glif + Gmacron + G_macron.glif + H + H_.glif + Hbar + H_bar.glif + Hbrevebelow + H_brevebelow.glif + Hcedilla + H_cedilla.glif + Hcircumflex + H_circumflex.glif + Hdotbelow + H_dotbelow.glif + I + I_.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icaron + I_caron.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idotaccent + I_dotaccent.glif + Idotbelow + I_dotbelow.glif + Igrave + I_grave.glif + Ihookabove + I_hookabove.glif + Imacron + I_macron.glif + Iogonek + I_ogonek.glif + Itilde + I_tilde.glif + J + J_.glif + Jcircumflex + J_circumflex.glif + K + K_.glif + Kcommaaccent + K_commaaccent.glif + Kdotbelow + K_dotbelow.glif + Klinebelow + K_linebelow.glif + L + L_.glif + L.dot + L_.dot.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcircumflexbelow + L_circumflexbelow.glif + Lcommaaccent + L_commaaccent.glif + Ldotbelow + L_dotbelow.glif + Llinebelow + L_linebelow.glif + Lmacrondotbelow + L_macrondotbelow.glif + Lslash + L_slash.glif + M + M_.glif + Macute + M_acute.glif + Mdotaccent + M_dotaccent.glif + Mdotbelow + M_dotbelow.glif + N + N_.glif + Nacute + N_acute.glif + Ncaron + N_caron.glif + Ncircumflexbelow + N_circumflexbelow.glif + Ncommaaccent + N_commaaccent.glif + Ndotaccent + N_dotaccent.glif + Ndotbelow + N_dotbelow.glif + Ngrave + N_grave.glif + Nlinebelow + N_linebelow.glif + Ntilde + N_tilde.glif + O + O_.glif + OE + O_E_.glif + Oacute + O_acute.glif + Obreve + O_breve.glif + Ocaron + O_caron.glif + Ocircumflex + O_circumflex.glif + Ocircumflexacute + O_circumflexacute.glif + Ocircumflexdotbelow + O_circumflexdotbelow.glif + Ocircumflexgrave + O_circumflexgrave.glif + Ocircumflexhookabove + O_circumflexhookabove.glif + Ocircumflextilde + O_circumflextilde.glif + Odieresis + O_dieresis.glif + Odotaccent + O_dotaccent.glif + Odotbelow + O_dotbelow.glif + Ograve + O_grave.glif + Ohookabove + O_hookabove.glif + Ohorn + O_horn.glif + Ohornacute + O_hornacute.glif + Ohorndotbelow + O_horndotbelow.glif + Ohorngrave + O_horngrave.glif + Ohornhookabove + O_hornhookabove.glif + Ohorntilde + O_horntilde.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Oogonek + O_ogonek.glif + Oslash + O_slash.glif + Otilde + O_tilde.glif + P + P_.glif + Q + Q_.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Rdotaccent + R_dotaccent.glif + Rdotbelow + R_dotbelow.glif + Rlinebelow + R_linebelow.glif + Rmacrondotbelow + R_macrondotbelow.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Sdotbelow + S_dotbelow.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tcircumflexbelow + T_circumflexbelow.glif + Tcommaaccent + T_commaaccent.glif + Tdotbelow + T_dotbelow.glif + Thorn + T_horn.glif + Tlinebelow + T_linebelow.glif + U + U_.glif + Uacute + U_acute.glif + Ubreve + U_breve.glif + Ucaron + U_caron.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresisacute + U_dieresisacute.glif + Udieresiscaron + U_dieresiscaron.glif + Udieresisgrave + U_dieresisgrave.glif + Udieresismacron + U_dieresismacron.glif + Udotbelow + U_dotbelow.glif + Ugrave + U_grave.glif + Uhookabove + U_hookabove.glif + Uhorn + U_horn.glif + Uhornacute + U_hornacute.glif + Uhorndotbelow + U_horndotbelow.glif + Uhorngrave + U_horngrave.glif + Uhornhookabove + U_hornhookabove.glif + Uhorntilde + U_horntilde.glif + Uhungarumlaut + U_hungarumlaut.glif + Umacron + U_macron.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Utilde + U_tilde.glif + V + V_.glif + Vdotbelow + V_dotbelow.glif + W + W_.glif + Wacute + W_acute.glif + Wcircumflex + W_circumflex.glif + Wdieresis + W_dieresis.glif + Wgrave + W_grave.glif + X + X_.glif + Xdieresis + X_dieresis.glif + Y + Y_.glif + Yacute + Y_acute.glif + Ycircumflex + Y_circumflex.glif + Ydieresis + Y_dieresis.glif + Ydotaccent + Y_dotaccent.glif + Ydotbelow + Y_dotbelow.glif + Ygrave + Y_grave.glif + Yhookabove + Y_hookabove.glif + Ymacron + Y_macron.glif + Ytilde + Y_tilde.glif + Z + Z_.glif + Zacute + Z_acute.glif + Zcaron + Z_caron.glif + Zcircumflex + Z_circumflex.glif + Zdotaccent + Z_dotaccent.glif + Zdotbelow + Z_dotbelow.glif + Zlinebelow + Z_linebelow.glif + a + a.glif + aacute + aacute.glif + abreve + abreve.glif + abreveacute + abreveacute.glif + abrevedotbelow + abrevedotbelow.glif + abrevegrave + abrevegrave.glif + abrevehookabove + abrevehookabove.glif + abrevetilde + abrevetilde.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflexacute + acircumflexacute.glif + acircumflexdotbelow + acircumflexdotbelow.glif + acircumflexgrave + acircumflexgrave.glif + acircumflexhookabove + acircumflexhookabove.glif + acircumflextilde + acircumflextilde.glif + acute + acute.glif + acutecmb + acutecmb.glif + acutecmb.cap + acutecmb.cap.glif + adieresis + adieresis.glif + adotaccent + adotaccent.glif + adotbelow + adotbelow.glif + ae + ae.glif + agrave + agrave.glif + ahookabove + ahookabove.glif + amacron + amacron.glif + ampersand + ampersand.glif + ampersand_ampersand.liga + ampersand_ampersand.liga.glif + aogonek + aogonek.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + asciicircum + asciicircum.glif + asciicircum_equal.liga + asciicircum_equal.liga.glif + asciitilde + asciitilde.glif + asciitilde_asciitilde.liga + asciitilde_asciitilde.liga.glif + asciitilde_asciitilde_greater + asciitilde_asciitilde_greater.glif + asciitilde_at.liga + asciitilde_at.liga.glif + asciitilde_greater.liga + asciitilde_greater.liga.glif + asciitilde_hyphen.liga + asciitilde_hyphen.liga.glif + asterisk + asterisk.glif + asterisk_asterisk.liga + asterisk_asterisk.liga.glif + asterisk_asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga.glif + asterisk_greater.liga + asterisk_greater.liga.glif + asterisk_slash.liga + asterisk_slash.liga.glif + at + at.glif + atilde + atilde.glif + b + b.glif + backslash + backslash.glif + backslash_slash.liga + backslash_slash.liga.glif + bahtthai + bahtthai.glif + bar + bar.glif + bar_bar.liga + bar_bar.liga.glif + bar_bar_bar.liga + bar_bar_bar.liga.glif + bar_bar_bar_greater.liga + bar_bar_bar_greater.liga.glif + bar_bar_equal.liga + bar_bar_equal.liga.glif + bar_bar_equal.start + bar_bar_equal.start.glif + bar_bar_greater.liga + bar_bar_greater.liga.glif + bar_bar_hyphen.liga + bar_bar_hyphen.liga.glif + bar_bar_hyphen.start + bar_bar_hyphen.start.glif + bar_braceright.liga + bar_braceright.liga.glif + bar_bracketright.liga + bar_bracketright.liga.glif + bar_equal.liga + bar_equal.liga.glif + bar_equal.start + bar_equal.start.glif + bar_greater.liga + bar_greater.liga.glif + bar_hyphen.liga + bar_hyphen.liga.glif + bar_hyphen.start + bar_hyphen.start.glif + blinebelow + blinebelow.glif + braceleft + braceleft.glif + braceleft_bar.liga + braceleft_bar.liga.glif + braceright + braceright.glif + bracketleft + bracketleft.glif + bracketleft_bar.liga + bracketleft_bar.liga.glif + bracketright + bracketright.glif + bracketright_numbersign.liga + bracketright_numbersign.liga.glif + breve + breve.glif + breveacute + breveacute.glif + breveacute.cap + breveacute.cap.glif + brevebelowcmb + brevebelowcmb.glif + brevecmb + brevecmb.glif + brevecmb.cap + brevecmb.cap.glif + brevegrave + brevegrave.glif + brevegrave.cap + brevegrave.cap.glif + brevehook + brevehook.glif + brevehook.cap + brevehook.cap.glif + brevetilde + brevetilde.glif + brevetilde.cap + brevetilde.cap.glif + bullet + bullet.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caroncmb + caroncmb.glif + caroncmb.cap + caroncmb.cap.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cedillacmb + cedillacmb.glif + cent + cent.glif + circumflex + circumflex.glif + circumflexacute + circumflexacute.glif + circumflexacute.cap + circumflexacute.cap.glif + circumflexbelowcmb + circumflexbelowcmb.glif + circumflexcmb + circumflexcmb.glif + circumflexcmb.cap + circumflexcmb.cap.glif + circumflexgrave + circumflexgrave.glif + circumflexgrave.cap + circumflexgrave.cap.glif + circumflexhook + circumflexhook.glif + circumflexhook.cap + circumflexhook.cap.glif + circumflextilde + circumflextilde.glif + circumflextilde.cap + circumflextilde.cap.glif + colon + colon.glif + colon.fig + colon.fig.glif + colon_colon.liga + colon_colon.liga.glif + colon_colon_colon.liga + colon_colon_colon.liga.glif + colon_colon_equal.liga + colon_colon_equal.liga.glif + colon_equal.liga + colon_equal.liga.glif + colon_greater.liga + colon_greater.liga.glif + colon_less.liga + colon_less.liga.glif + comma + comma.glif + commaaboverightcmb + commaaboverightcmb.glif + commaturnedabovecmb + commaturnedabovecmb.glif + commaturnedmod + commaturnedmod.glif + copyright + copyright.glif + d + d.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + darkshade + darkshade.glif + dbldnhorzbxd + dbldnhorzbxd.glif + dbldnleftbxd + dbldnleftbxd.glif + dbldnrightbxd + dbldnrightbxd.glif + dblhorzbxd + dblhorzbxd.glif + dblprimemod + dblprimemod.glif + dbluphorzbxd + dbluphorzbxd.glif + dblupleftbxd + dblupleftbxd.glif + dbluprightbxd + dbluprightbxd.glif + dblvertbxd + dblvertbxd.glif + dblverthorzbxd + dblverthorzbxd.glif + dblvertleftbxd + dblvertleftbxd.glif + dblvertrightbxd + dblvertrightbxd.glif + dcaron + dcaron.glif + dcircumflexbelow + dcircumflexbelow.glif + dcroat + dcroat.glif + ddotbelow + ddotbelow.glif + degree + degree.glif + dieresis + dieresis.glif + dieresisacute + dieresisacute.glif + dieresisacute.cap + dieresisacute.cap.glif + dieresisbelowcmb + dieresisbelowcmb.glif + dieresiscaron + dieresiscaron.glif + dieresiscaron.cap + dieresiscaron.cap.glif + dieresiscmb + dieresiscmb.glif + dieresiscmb.cap + dieresiscmb.cap.glif + dieresisgrave + dieresisgrave.glif + dieresisgrave.cap + dieresisgrave.cap.glif + dieresismacron + dieresismacron.glif + dieresismacron.cap + dieresismacron.cap.glif + divide + divide.glif + dlinebelow + dlinebelow.glif + dndblhorzsngbxd + dndblhorzsngbxd.glif + dndblleftsngbxd + dndblleftsngbxd.glif + dndblrightsngbxd + dndblrightsngbxd.glif + dneighthblock + dneighthblock.glif + dnfiveeighthsblock + dnfiveeighthsblock.glif + dnhalfblock + dnhalfblock.glif + dnheavyhorzlightbxd + dnheavyhorzlightbxd.glif + dnheavyleftlightbxd + dnheavyleftlightbxd.glif + dnheavyleftuplightbxd + dnheavyleftuplightbxd.glif + dnheavyrightlightbxd + dnheavyrightlightbxd.glif + dnheavyrightuplightbxd + dnheavyrightuplightbxd.glif + dnheavyuphorzlightbxd + dnheavyuphorzlightbxd.glif + dnleftquadrant + dnleftquadrant.glif + dnlighthorzheavybxd + dnlighthorzheavybxd.glif + dnlightleftheavybxd + dnlightleftheavybxd.glif + dnlightleftupheavybxd + dnlightleftupheavybxd.glif + dnlightrightheavybxd + dnlightrightheavybxd.glif + dnlightrightupheavybxd + dnlightrightupheavybxd.glif + dnlightuphorzheavybxd + dnlightuphorzheavybxd.glif + dnquarterblock + dnquarterblock.glif + dnrightquadrant + dnrightquadrant.glif + dnseveneighthsblock + dnseveneighthsblock.glif + dnsnghorzdblbxd + dnsnghorzdblbxd.glif + dnsngleftdblbxd + dnsngleftdblbxd.glif + dnsngrightdblbxd + dnsngrightdblbxd.glif + dnthreeeighthsblock + dnthreeeighthsblock.glif + dnthreequartersblock + dnthreequartersblock.glif + dollar + dollar.glif + dollar_greater.liga + dollar_greater.liga.glif + dong + dong.glif + dotaccent + dotaccent.glif + dotaccentcmb + dotaccentcmb.glif + dotaccentcmb.cap + dotaccentcmb.cap.glif + dotbelowcmb + dotbelowcmb.glif + dotlessi + dotlessi.glif + dotlessj + dotlessj.glif + e + e.glif + eacute + eacute.glif + ebreve + ebreve.glif + ecaron + ecaron.glif + ecircumflex + ecircumflex.glif + ecircumflexacute + ecircumflexacute.glif + ecircumflexdotbelow + ecircumflexdotbelow.glif + ecircumflexgrave + ecircumflexgrave.glif + ecircumflexhookabove + ecircumflexhookabove.glif + ecircumflextilde + ecircumflextilde.glif + edieresis + edieresis.glif + edotaccent + edotaccent.glif + edotbelow + edotbelow.glif + egrave + egrave.glif + ehookabove + ehookabove.glif + eight + eight.glif + eight.den + eight.den.glif + eight.inf + eight.inf.glif + eight.num + eight.num.glif + eight.sup + eight.sup.glif + ellipsis + ellipsis.glif + emacron + emacron.glif + emdash + emdash.glif + endash + endash.glif + eng + eng.glif + eogonek + eogonek.glif + equal + equal.glif + equal.end + equal.end.glif + equal.middle + equal.middle.glif + equal.start + equal.start.glif + equal_asciitilde.liga + equal_asciitilde.liga.glif + equal_bar.end + equal_bar.end.glif + equal_bar.liga + equal_bar.liga.glif + equal_bar_bar.end + equal_bar_bar.end.glif + equal_bar_bar.liga + equal_bar_bar.liga.glif + equal_bar_bar_equal.middle + equal_bar_bar_equal.middle.glif + equal_bar_equal.middle + equal_bar_equal.middle.glif + equal_colon_equal.middle + equal_colon_equal.middle.glif + equal_equal.liga + equal_equal.liga.glif + equal_equal_equal.liga + equal_equal_equal.liga.glif + equal_exclam_equal.middle + equal_exclam_equal.middle.glif + equal_greater.end + equal_greater.end.glif + equal_greater.liga + equal_greater.liga.glif + equal_greater_equal.middle + equal_greater_equal.middle.glif + equal_greater_greater.end + equal_greater_greater.end.glif + equal_greater_greater.liga + equal_greater_greater.liga.glif + equal_greater_greater_equal.m + equal_greater_greater_equal.m.glif + equal_less.end + equal_less.end.glif + equal_less.liga + equal_less.liga.glif + equal_less_equal.middle + equal_less_equal.middle.glif + equal_less_less.end + equal_less_less.end.glif + equal_less_less.liga + equal_less_less.liga.glif + equal_less_less_equal.middle + equal_less_less_equal.middle.glif + equal_slash.end + equal_slash.end.glif + equal_slash.liga + equal_slash.liga.glif + equal_slash_equal.middle + equal_slash_equal.middle.glif + equal_slash_slash.end + equal_slash_slash.end.glif + equal_slash_slash.liga + equal_slash_slash.liga.glif + equal_slash_slash_equal.middle + equal_slash_slash_equal.middle.glif + eth + eth.glif + etilde + etilde.glif + exclam + exclam.glif + exclam_asciitilde.liga + exclam_asciitilde.liga.glif + exclam_equal.liga + exclam_equal.liga.glif + exclam_equal_equal.liga + exclam_equal_equal.liga.glif + exclam_exclam.liga + exclam_exclam.liga.glif + exclam_exclam_period.liga + exclam_exclam_period.liga.glif + exclamdown + exclamdown.glif + f + f.glif + five + five.glif + five.den + five.den.glif + five.inf + five.inf.glif + five.num + five.num.glif + five.sup + five.sup.glif + fiveeighths + fiveeighths.glif + fivesixths + fivesixths.glif + four + four.glif + four.den + four.den.glif + four.inf + four.inf.glif + four.num + four.num.glif + four.sup + four.sup.glif + fourfifths + fourfifths.glif + fracbar + fracbar.glif + fraction + fraction.glif + fullblock + fullblock.glif + g + g.glif + gbreve + gbreve.glif + gcaron + gcaron.glif + gcircumflex + gcircumflex.glif + gcommaaccent + gcommaaccent.glif + gdotaccent + gdotaccent.glif + germandbls + germandbls.glif + gmacron + gmacron.glif + grave + grave.glif + gravecmb + gravecmb.glif + gravecmb.cap + gravecmb.cap.glif + greater + greater.glif + greater_colon.liga + greater_colon.liga.glif + greater_equal + greater_equal.glif + greater_equal.liga + greater_equal.liga.glif + greater_equal.start + greater_equal.start.glif + greater_equal_greater.liga + greater_equal_greater.liga.glif + greater_greater.liga + greater_greater.liga.glif + greater_greater_equal.liga + greater_greater_equal.liga.glif + greater_greater_equal.start + greater_greater_equal.start.glif + greater_greater_greater.liga + greater_greater_greater.liga.glif + greater_greater_hyphen.liga + greater_greater_hyphen.liga.glif + greater_greater_hyphen.start + greater_greater_hyphen.start.glif + greater_hyphen.liga + greater_hyphen.liga.glif + greater_hyphen.start + greater_hyphen.start.glif + greater_hyphen_greater.liga + greater_hyphen_greater.liga.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetright + guillemetright.glif + guilsinglleft + guilsinglleft.glif + guilsinglright + guilsinglright.glif + h + h.glif + hbar + hbar.glif + hbrevebelow + hbrevebelow.glif + hcedilla + hcedilla.glif + hcircumflex + hcircumflex.glif + hdotbelow + hdotbelow.glif + heavydbldashhorzbxd + heavydbldashhorzbxd.glif + heavydbldashvertbxd + heavydbldashvertbxd.glif + heavydnbxd + heavydnbxd.glif + heavydnhorzbxd + heavydnhorzbxd.glif + heavydnleftbxd + heavydnleftbxd.glif + heavydnrightbxd + heavydnrightbxd.glif + heavyhorzbxd + heavyhorzbxd.glif + heavyleftbxd + heavyleftbxd.glif + heavyleftlightrightbxd + heavyleftlightrightbxd.glif + heavyquaddashhorzbxd + heavyquaddashhorzbxd.glif + heavyquaddashvertbxd + heavyquaddashvertbxd.glif + heavyrightbxd + heavyrightbxd.glif + heavytrpldashhorzbxd + heavytrpldashhorzbxd.glif + heavytrpldashvertbxd + heavytrpldashvertbxd.glif + heavyupbxd + heavyupbxd.glif + heavyuphorzbxd + heavyuphorzbxd.glif + heavyupleftbxd + heavyupleftbxd.glif + heavyuplightdnbxd + heavyuplightdnbxd.glif + heavyuprightbxd + heavyuprightbxd.glif + heavyvertbxd + heavyvertbxd.glif + heavyverthorzbxd + heavyverthorzbxd.glif + heavyvertleftbxd + heavyvertleftbxd.glif + heavyvertrightbxd + heavyvertrightbxd.glif + hlinebelow + hlinebelow.glif + hookcmb + hookcmb.glif + hookcmb.cap + hookcmb.cap.glif + horizontalbar + horizontalbar.glif + hungarumlaut + hungarumlaut.glif + hungarumlautcmb + hungarumlautcmb.glif + hungarumlautcmb.cap + hungarumlautcmb.cap.glif + hyphen + hyphen.glif + hyphen.end + hyphen.end.glif + hyphen.middle + hyphen.middle.glif + hyphen.start + hyphen.start.glif + hyphen_asciitilde.liga + hyphen_asciitilde.liga.glif + hyphen_bar.end + hyphen_bar.end.glif + hyphen_bar.liga + hyphen_bar.liga.glif + hyphen_bar_bar.end + hyphen_bar_bar.end.glif + hyphen_bar_bar.liga + hyphen_bar_bar.liga.glif + hyphen_bar_bar_hyphen.middle + hyphen_bar_bar_hyphen.middle.glif + hyphen_bar_hyphen.middle + hyphen_bar_hyphen.middle.glif + hyphen_greater.end + hyphen_greater.end.glif + hyphen_greater.liga + hyphen_greater.liga.glif + hyphen_greater_greater.end + hyphen_greater_greater.end.glif + hyphen_greater_greater.liga + hyphen_greater_greater.liga.glif + hyphen_greater_greater_hyphen.m + hyphen_greater_greater_hyphen.m.glif + hyphen_greater_hyphen.middle + hyphen_greater_hyphen.middle.glif + hyphen_hyphen.liga + hyphen_hyphen.liga.glif + hyphen_hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga.glif + hyphen_less.end + hyphen_less.end.glif + hyphen_less.liga + hyphen_less.liga.glif + hyphen_less_hyphen.middle + hyphen_less_hyphen.middle.glif + hyphen_less_less.end + hyphen_less_less.end.glif + hyphen_less_less.liga + hyphen_less_less.liga.glif + hyphen_less_less_hyphen.middle + hyphen_less_less_hyphen.middle.glif + i + i.glif + iacute + iacute.glif + ibreve + ibreve.glif + icaron + icaron.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idotaccent + idotaccent.glif + idotbelow + idotbelow.glif + igrave + igrave.glif + ihookabove + ihookabove.glif + imacron + imacron.glif + iogonek + iogonek.glif + itilde + itilde.glif + j + j.glif + jcaron + jcaron.glif + jcircumflex + jcircumflex.glif + k + k.glif + kcommaaccent + kcommaaccent.glif + kdotbelow + kdotbelow.glif + klinebelow + klinebelow.glif + l + l.glif + l.dot + l.dot.glif + lacute + lacute.glif + lcaron + lcaron.glif + lcircumflexbelow + lcircumflexbelow.glif + lcommaaccent + lcommaaccent.glif + ldotbelow + ldotbelow.glif + leftdnheavyrightuplightbxd + leftdnheavyrightuplightbxd.glif + lefteighthblock + lefteighthblock.glif + leftfiveeighthsblock + leftfiveeighthsblock.glif + lefthalfblock + lefthalfblock.glif + leftheavyrightdnlightbxd + leftheavyrightdnlightbxd.glif + leftheavyrightuplightbxd + leftheavyrightuplightbxd.glif + leftheavyrightvertlightbxd + leftheavyrightvertlightbxd.glif + leftlightrightdnheavybxd + leftlightrightdnheavybxd.glif + leftlightrightupheavybxd + leftlightrightupheavybxd.glif + leftlightrightvertheavybxd + leftlightrightvertheavybxd.glif + leftquarterblock + leftquarterblock.glif + leftseveneighthsblock + leftseveneighthsblock.glif + leftthreeeighthsblock + leftthreeeighthsblock.glif + leftthreequartersblock + leftthreequartersblock.glif + leftupheavyrightdnlightbxd + leftupheavyrightdnlightbxd.glif + less + less.glif + less_asciitilde.liga + less_asciitilde.liga.glif + less_asciitilde_asciitilde.liga + less_asciitilde_asciitilde.liga.glif + less_asciitilde_greater.liga + less_asciitilde_greater.liga.glif + less_asterisk.liga + less_asterisk.liga.glif + less_asterisk_greater.liga + less_asterisk_greater.liga.glif + less_bar.liga + less_bar.liga.glif + less_bar_bar.liga + less_bar_bar.liga.glif + less_bar_bar_bar.liga + less_bar_bar_bar.liga.glif + less_bar_greater.liga + less_bar_greater.liga.glif + less_colon.liga + less_colon.liga.glif + less_dollar.liga + less_dollar.liga.glif + less_dollar_greater.liga + less_dollar_greater.liga.glif + less_equal + less_equal.glif + less_equal.liga + less_equal.liga.glif + less_equal.start + less_equal.start.glif + less_equal_greater.liga + less_equal_greater.liga.glif + less_equal_less.liga + less_equal_less.liga.glif + less_exclam_hyphen_hyphen.liga + less_exclam_hyphen_hyphen.liga.glif + less_greater.liga + less_greater.liga.glif + less_hyphen.liga + less_hyphen.liga.glif + less_hyphen.start + less_hyphen.start.glif + less_hyphen_greater.liga + less_hyphen_greater.liga.glif + less_hyphen_less.liga + less_hyphen_less.liga.glif + less_less.liga + less_less.liga.glif + less_less_equal.liga + less_less_equal.liga.glif + less_less_equal.start + less_less_equal.start.glif + less_less_hyphen.liga + less_less_hyphen.liga.glif + less_less_hyphen.start + less_less_hyphen.start.glif + less_less_less.liga + less_less_less.liga.glif + less_plus.liga + less_plus.liga.glif + less_plus_greater.liga + less_plus_greater.liga.glif + less_slash.liga + less_slash.liga.glif + less_slash_greater.liga + less_slash_greater.liga.glif + lessequal + lessequal.glif + lightarcdnleftbxd + lightarcdnleftbxd.glif + lightarcdnrightbxd + lightarcdnrightbxd.glif + lightarcupleftbxd + lightarcupleftbxd.glif + lightarcuprightbxd + lightarcuprightbxd.glif + lightdbldashhorzbxd + lightdbldashhorzbxd.glif + lightdbldashvertbxd + lightdbldashvertbxd.glif + lightdiagcrossbxd + lightdiagcrossbxd.glif + lightdiagupleftdnrightbxd + lightdiagupleftdnrightbxd.glif + lightdiaguprightdnleftbxd + lightdiaguprightdnleftbxd.glif + lightdnbxd + lightdnbxd.glif + lightdnhorzbxd + lightdnhorzbxd.glif + lightdnleftbxd + lightdnleftbxd.glif + lightdnrightbxd + lightdnrightbxd.glif + lighthorzbxd + lighthorzbxd.glif + lightleftbxd + lightleftbxd.glif + lightleftheavyrightbxd + lightleftheavyrightbxd.glif + lightquaddashhorzbxd + lightquaddashhorzbxd.glif + lightquaddashvertbxd + lightquaddashvertbxd.glif + lightrightbxd + lightrightbxd.glif + lightshade + lightshade.glif + lighttrpldashhorzbxd + lighttrpldashhorzbxd.glif + lighttrpldashvertbxd + lighttrpldashvertbxd.glif + lightupbxd + lightupbxd.glif + lightupheavydnbxd + lightupheavydnbxd.glif + lightuphorzbxd + lightuphorzbxd.glif + lightupleftbxd + lightupleftbxd.glif + lightuprightbxd + lightuprightbxd.glif + lightvertbxd + lightvertbxd.glif + lightverthorzbxd + lightverthorzbxd.glif + lightvertleftbxd + lightvertleftbxd.glif + lightvertrightbxd + lightvertrightbxd.glif + ligspacer + ligspacer.glif + llinebelow + llinebelow.glif + lmacrondotbelow + lmacrondotbelow.glif + lslash + lslash.glif + m + m.glif + macron + macron.glif + macronbelowcmb + macronbelowcmb.glif + macroncmb + macroncmb.glif + macroncmb.cap + macroncmb.cap.glif + macronlowmod + macronlowmod.glif + macute + macute.glif + mdotaccent + mdotaccent.glif + mdotbelow + mdotbelow.glif + mediumshade + mediumshade.glif + middotcat + middotcat.glif + middotcat.cap + middotcat.cap.glif + minus + minus.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + naira + naira.glif + ncaron + ncaron.glif + ncircumflexbelow + ncircumflexbelow.glif + ncommaaccent + ncommaaccent.glif + ndotaccent + ndotaccent.glif + ndotbelow + ndotbelow.glif + ngrave + ngrave.glif + nine + nine.glif + nine.den + nine.den.glif + nine.inf + nine.inf.glif + nine.num + nine.num.glif + nine.sup + nine.sup.glif + nlinebelow + nlinebelow.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numbersign.end + numbersign.end.glif + numbersign.middle + numbersign.middle.glif + numbersign.start + numbersign.start.glif + numbersign_braceleft.liga + numbersign_braceleft.liga.glif + numbersign_bracketleft.liga + numbersign_bracketleft.liga.glif + numbersign_colon.liga + numbersign_colon.liga.glif + numbersign_equal.liga + numbersign_equal.liga.glif + numbersign_exclam.liga + numbersign_exclam.liga.glif + numbersign_parenleft.liga + numbersign_parenleft.liga.glif + numbersign_question.liga + numbersign_question.liga.glif + numbersign_underscore.liga + numbersign_underscore.liga.glif + numbersign_underscore_parenleft + numbersign_underscore_parenleft.glif + o + o.glif + oacute + oacute.glif + obreve + obreve.glif + ocaron + ocaron.glif + ocircumflex + ocircumflex.glif + ocircumflexacute + ocircumflexacute.glif + ocircumflexdotbelow + ocircumflexdotbelow.glif + ocircumflexgrave + ocircumflexgrave.glif + ocircumflexhookabove + ocircumflexhookabove.glif + ocircumflextilde + ocircumflextilde.glif + odieresis + odieresis.glif + odotaccent + odotaccent.glif + odotbelow + odotbelow.glif + oe + oe.glif + ogonek + ogonek.glif + ogonekcmb + ogonekcmb.glif + ograve + ograve.glif + ohookabove + ohookabove.glif + ohorn + ohorn.glif + ohornacute + ohornacute.glif + ohorndotbelow + ohorndotbelow.glif + ohorngrave + ohorngrave.glif + ohornhookabove + ohornhookabove.glif + ohorntilde + ohorntilde.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + one + one.glif + one.den + one.den.glif + one.inf + one.inf.glif + one.num + one.num.glif + one.sup + one.sup.glif + oneeighth + oneeighth.glif + onefifth + onefifth.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesixth + onesixth.glif + onethird + onethird.glif + oogonek + oogonek.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + otilde + otilde.glif + p + p.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenright + parenright.glif + percent + percent.glif + percent_percent.liga + percent_percent.liga.glif + period + period.glif + period_equal.liga + period_equal.liga.glif + period_hyphen.liga + period_hyphen.liga.glif + period_period.liga + period_period.liga.glif + period_period_equal.liga + period_period_equal.liga.glif + period_period_less.liga + period_period_less.liga.glif + period_period_period.liga + period_period_period.liga.glif + period_question.liga + period_question.liga.glif + periodcentered + periodcentered.glif + peso + peso.glif + plus + plus.glif + plus_greater.liga + plus_greater.liga.glif + plus_plus.liga + plus_plus.liga.glif + plus_plus_plus.liga + plus_plus_plus.liga.glif + plusminus + plusminus.glif + primemod + primemod.glif + published + published.glif + q + q.glif + question + question.glif + question_colon.liga + question_colon.liga.glif + question_equal.liga + question_equal.liga.glif + question_period.liga + question_period.liga.glif + question_question.liga + question_question.liga.glif + questiondown + questiondown.glif + quotedbl + quotedbl.glif + quotedblbase + quotedblbase.glif + quotedblleft + quotedblleft.glif + quotedblright + quotedblright.glif + quoteleft + quoteleft.glif + quoteright + quoteright.glif + quotesinglbase + quotesinglbase.glif + quotesingle + quotesingle.glif + r + r.glif + racute + racute.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + rdotaccent + rdotaccent.glif + rdotbelow + rdotbelow.glif + registered + registered.glif + rightdnheavyleftuplightbxd + rightdnheavyleftuplightbxd.glif + righteighthblock + righteighthblock.glif + righthalfblock + righthalfblock.glif + rightheavyleftdnlightbxd + rightheavyleftdnlightbxd.glif + rightheavyleftuplightbxd + rightheavyleftuplightbxd.glif + rightheavyleftvertlightbxd + rightheavyleftvertlightbxd.glif + rightlightleftdnheavybxd + rightlightleftdnheavybxd.glif + rightlightleftupheavybxd + rightlightleftupheavybxd.glif + rightlightleftvertheavybxd + rightlightleftvertheavybxd.glif + rightupheavyleftdnlightbxd + rightupheavyleftdnlightbxd.glif + ring + ring.glif + ringcmb + ringcmb.glif + ringcmb.cap + ringcmb.cap.glif + ringhalfleft + ringhalfleft.glif + ringhalfright + ringhalfright.glif + rlinebelow + rlinebelow.glif + rmacrondotbelow + rmacrondotbelow.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwa + schwa.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + sdotbelow + sdotbelow.glif + section + section.glif + semicolon + semicolon.glif + semicolon_semicolon.liga + semicolon_semicolon.liga.glif + servicemark + servicemark.glif + seven + seven.glif + seven.den + seven.den.glif + seven.inf + seven.inf.glif + seven.num + seven.num.glif + seven.sup + seven.sup.glif + seveneighths + seveneighths.glif + six + six.glif + six.den + six.den.glif + six.inf + six.inf.glif + six.num + six.num.glif + six.sup + six.sup.glif + slash + slash.glif + slash_asterisk.liga + slash_asterisk.liga.glif + slash_backslash.liga + slash_backslash.liga.glif + slash_equal.liga + slash_equal.liga.glif + slash_equal.start + slash_equal.start.glif + slash_greater.liga + slash_greater.liga.glif + slash_slash.liga + slash_slash.liga.glif + slash_slash_equal.liga + slash_slash_equal.liga.glif + slash_slash_equal.start + slash_slash_equal.start.glif + slash_slash_slash.liga + slash_slash_slash.liga.glif + space + space.glif + sterling + sterling.glif + t + t.glif + tbar + tbar.glif + tcaron + tcaron.glif + tcedilla + tcedilla.glif + tcircumflexbelow + tcircumflexbelow.glif + tcommaaccent + tcommaaccent.glif + tdotbelow + tdotbelow.glif + thorn + thorn.glif + three + three.glif + three.den + three.den.glif + three.inf + three.inf.glif + three.num + three.num.glif + three.sup + three.sup.glif + threeeighths + threeeighths.glif + threefifths + threefifths.glif + threequarters + threequarters.glif + tilde + tilde.glif + tildecmb + tildecmb.glif + tildecmb.cap + tildecmb.cap.glif + tlinebelow + tlinebelow.glif + trademark + trademark.glif + two + two.glif + two.den + two.den.glif + two.inf + two.inf.glif + two.num + two.num.glif + two.sup + two.sup.glif + twodotleader + twodotleader.glif + twofifths + twofifths.glif + twothirds + twothirds.glif + u + u.glif + uacute + uacute.glif + ubreve + ubreve.glif + ucaron + ucaron.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresisacute + udieresisacute.glif + udieresiscaron + udieresiscaron.glif + udieresisgrave + udieresisgrave.glif + udieresismacron + udieresismacron.glif + udotbelow + udotbelow.glif + ugrave + ugrave.glif + uhookabove + uhookabove.glif + uhorn + uhorn.glif + uhornacute + uhornacute.glif + uhorndotbelow + uhorndotbelow.glif + uhorngrave + uhorngrave.glif + uhornhookabove + uhornhookabove.glif + uhorntilde + uhorntilde.glif + uhungarumlaut + uhungarumlaut.glif + umacron + umacron.glif + underscore + underscore.glif + underscore.end + underscore.end.glif + underscore.middle + underscore.middle.glif + underscore.start + underscore.start.glif + underscore_bar_underscore.m + underscore_bar_underscore.m.glif + uni00A0 + uni00A_0.glif + uni0326 + uni0326.glif + uni1E9E + uni1E_9E_.glif + uni2011 + uni2011.glif + uni20B9 + uni20B_9.glif + uni20BA + uni20B_A_.glif + uni20BD + uni20B_D_.glif + uni2610 + uni2610.glif + uni2611 + uni2611.glif + uni2612 + uni2612.glif + uni2713 + uni2713.glif + uniA788 + uniA_788.glif + uniE0A0 + uniE_0A_0.glif + uniE0A1 + uniE_0A_1.glif + uniE0A2 + uniE_0A_2.glif + uniE0B0 + uniE_0B_0.glif + uniE0B1 + uniE_0B_1.glif + uniE0B2 + uniE_0B_2.glif + uniE0B3 + uniE_0B_3.glif + uogonek + uogonek.glif + updblhorzsngbxd + updblhorzsngbxd.glif + updblleftsngbxd + updblleftsngbxd.glif + updblrightsngbxd + updblrightsngbxd.glif + upeighthblock + upeighthblock.glif + uphalfblock + uphalfblock.glif + upheavydnhorzlightbxd + upheavydnhorzlightbxd.glif + upheavyhorzlightbxd + upheavyhorzlightbxd.glif + upheavyleftdnlightbxd + upheavyleftdnlightbxd.glif + upheavyleftlightbxd + upheavyleftlightbxd.glif + upheavyrightdnlightbxd + upheavyrightdnlightbxd.glif + upheavyrightlightbxd + upheavyrightlightbxd.glif + upleftdnleftdnrightquadrant + upleftdnleftdnrightquadrant.glif + upleftdnrightquadrant + upleftdnrightquadrant.glif + upleftquadrant + upleftquadrant.glif + upleftuprightdnleftquadrant + upleftuprightdnleftquadrant.glif + upleftuprightdnrightquadrant + upleftuprightdnrightquadrant.glif + uplightdnhorzheavybxd + uplightdnhorzheavybxd.glif + uplighthorzheavybxd + uplighthorzheavybxd.glif + uplightleftdnheavybxd + uplightleftdnheavybxd.glif + uplightleftheavybxd + uplightleftheavybxd.glif + uplightrightdnheavybxd + uplightrightdnheavybxd.glif + uplightrightheavybxd + uplightrightheavybxd.glif + uprightdnleftdnrightquadrant + uprightdnleftdnrightquadrant.glif + uprightdnleftquadrant + uprightdnleftquadrant.glif + uprightquadrant + uprightquadrant.glif + upsnghorzdblbxd + upsnghorzdblbxd.glif + upsngleftdblbxd + upsngleftdblbxd.glif + upsngrightdblbxd + upsngrightdblbxd.glif + uring + uring.glif + utilde + utilde.glif + v + v.glif + vdotbelow + vdotbelow.glif + vertdblhorzsngbxd + vertdblhorzsngbxd.glif + vertdblleftsngbxd + vertdblleftsngbxd.glif + vertdblrightsngbxd + vertdblrightsngbxd.glif + vertheavyhorzlightbxd + vertheavyhorzlightbxd.glif + vertheavyleftlightbxd + vertheavyleftlightbxd.glif + vertheavyrightlightbxd + vertheavyrightlightbxd.glif + verticallinelowmod + verticallinelowmod.glif + verticallinemod + verticallinemod.glif + vertlighthorzheavybxd + vertlighthorzheavybxd.glif + vertlightleftheavybxd + vertlightleftheavybxd.glif + vertlightrightheavybxd + vertlightrightheavybxd.glif + vertsnghorzdblbxd + vertsnghorzdblbxd.glif + vertsngleftdblbxd + vertsngleftdblbxd.glif + vertsngrightdblbxd + vertsngrightdblbxd.glif + w + w.glif + w_w_w.liga + w_w_w.liga.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wgrave + wgrave.glif + won + won.glif + x + x.glif + xdieresis + xdieresis.glif + y + y.glif + yacute + yacute.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + ydotaccent + ydotaccent.glif + ydotbelow + ydotbelow.glif + yen + yen.glif + ygrave + ygrave.glif + yhookabove + yhookabove.glif + ymacron + ymacron.glif + ytilde + ytilde.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zcircumflex + zcircumflex.glif + zdotaccent + zdotaccent.glif + zdotbelow + zdotbelow.glif + zero + zero.glif + zero.den + zero.den.glif + zero.inf + zero.inf.glif + zero.num + zero.num.glif + zero.sup + zero.sup.glif + zlinebelow + zlinebelow.glif + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/copyright.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/copyright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/copyright.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/copyright.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/d.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/d.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/d.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/d.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dagger.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dagger.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dagger.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dagger.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/daggerdbl.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/daggerdbl.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/daggerdbl.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/daggerdbl.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/darkshade.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/darkshade.glif new file mode 100644 index 00000000..e6ce8215 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/darkshade.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dbldnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dbldnhorzbxd.glif new file mode 100644 index 00000000..482239eb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dbldnhorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dbldnleftbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dbldnleftbxd.glif new file mode 100644 index 00000000..e6164a8a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dbldnleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dbldnrightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dbldnrightbxd.glif new file mode 100644 index 00000000..a65921b1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dbldnrightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dblhorzbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dblhorzbxd.glif new file mode 100644 index 00000000..cdf40305 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dblhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dblprimemod.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dblprimemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dblprimemod.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dblprimemod.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dbluphorzbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dbluphorzbxd.glif new file mode 100644 index 00000000..799b9909 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dbluphorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dblupleftbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dblupleftbxd.glif new file mode 100644 index 00000000..9314c4b2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dblupleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dbluprightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dbluprightbxd.glif new file mode 100644 index 00000000..8e569560 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dbluprightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dblvertbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dblvertbxd.glif new file mode 100644 index 00000000..2782cf47 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dblvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dblverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dblverthorzbxd.glif new file mode 100644 index 00000000..b2f439e1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dblverthorzbxd.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dblvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dblvertleftbxd.glif new file mode 100644 index 00000000..aa937fdc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dblvertleftbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dblvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dblvertrightbxd.glif new file mode 100644 index 00000000..04b553a0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dblvertrightbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dcaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dcaron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dcaron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dcaron.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dcircumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dcircumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dcircumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dcroat.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dcroat.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dcroat.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dcroat.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ddotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ddotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ddotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ddotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/degree.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/degree.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/degree.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/degree.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresis.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresisacute.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresisacute.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresisacute.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresisacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresisacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresisacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresisacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresisbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresisbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresisbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresiscaron.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresiscaron.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresiscaron.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresiscaron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresiscaron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresiscaron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresiscmb.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresiscmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresiscmb.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresiscmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresiscmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresiscmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresiscmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresiscmb.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresisgrave.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresisgrave.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresisgrave.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresisgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresisgrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresisgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresismacron.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresismacron.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresismacron.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresismacron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresismacron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dieresismacron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dieresismacron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/divide.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/divide.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/divide.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/divide.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dlinebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dlinebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/dlinebelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dlinebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dndblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dndblhorzsngbxd.glif new file mode 100644 index 00000000..80b29fc5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dndblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dndblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dndblleftsngbxd.glif new file mode 100644 index 00000000..e44b7ce9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dndblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dndblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dndblrightsngbxd.glif new file mode 100644 index 00000000..7f72ef64 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dndblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dneighthblock.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dneighthblock.glif new file mode 100644 index 00000000..f9382474 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dneighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnfiveeighthsblock.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnfiveeighthsblock.glif new file mode 100644 index 00000000..6d6b327e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnhalfblock.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnhalfblock.glif new file mode 100644 index 00000000..5cb2299a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnhalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyhorzlightbxd.glif new file mode 100644 index 00000000..3b377cc0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyleftlightbxd.glif new file mode 100644 index 00000000..6430993a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyleftuplightbxd.glif new file mode 100644 index 00000000..ed86355e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyrightlightbxd.glif new file mode 100644 index 00000000..80afed4f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyrightuplightbxd.glif new file mode 100644 index 00000000..1d9843a5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyuphorzlightbxd.glif new file mode 100644 index 00000000..4872115c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnheavyuphorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnleftquadrant.glif new file mode 100644 index 00000000..0f752b04 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnlighthorzheavybxd.glif new file mode 100644 index 00000000..584d0f63 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnlighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnlightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnlightleftheavybxd.glif new file mode 100644 index 00000000..c2e158ab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnlightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnlightleftupheavybxd.glif new file mode 100644 index 00000000..52d5e2f1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnlightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnlightrightheavybxd.glif new file mode 100644 index 00000000..e278422a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnlightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnlightrightupheavybxd.glif new file mode 100644 index 00000000..fd2feb01 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnlightuphorzheavybxd.glif new file mode 100644 index 00000000..ab145979 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnlightuphorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnquarterblock.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnquarterblock.glif new file mode 100644 index 00000000..5dc81108 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnrightquadrant.glif new file mode 100644 index 00000000..012bd532 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnrightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnseveneighthsblock.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnseveneighthsblock.glif new file mode 100644 index 00000000..a47c62d6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnsnghorzdblbxd.glif new file mode 100644 index 00000000..13463632 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnsngleftdblbxd.glif new file mode 100644 index 00000000..9c38e4da --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnsngrightdblbxd.glif new file mode 100644 index 00000000..be821c4d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnthreeeighthsblock.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnthreeeighthsblock.glif new file mode 100644 index 00000000..e54a10a3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnthreequartersblock.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnthreequartersblock.glif new file mode 100644 index 00000000..e7b739c3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dnthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dollar.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dollar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dollar.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dollar.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dollar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dollar_greater.liga.glif new file mode 100644 index 00000000..653ffc82 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dollar_greater.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dong.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dong.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dong.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dong.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dotaccentcmb.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dotaccentcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dotaccentcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dotaccentcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dotaccentcmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dotaccentcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dotaccentcmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dotaccentcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dotbelowcmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dotbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dotbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dotbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dotlessi.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dotlessi.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dotlessi.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dotlessi.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dotlessj.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dotlessj.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/dotlessj.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/dotlessj.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/e.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/e.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/e.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/e.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/eacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/eacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/eacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ebreve.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ebreve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ebreve.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ebreve.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ecaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ecaron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ecaron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ecaron.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ecircumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ecircumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ecircumflexacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ecircumflexacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ecircumflexdotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ecircumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ecircumflexhookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflexhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ecircumflextilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/ecircumflextilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ecircumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/edieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/edieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/edieresis.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/edieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/edotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/edotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/edotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/edotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/edotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/edotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/edotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/edotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/egrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/egrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/egrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/egrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ehookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ehookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/ehookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ehookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/eight.den.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/eight.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/eight.den.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/eight.den.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/eight.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/eight.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/eight.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/eight.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/eight.inf.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/eight.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/eight.inf.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/eight.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eight.num.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/eight.num.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/eight.num.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/eight.num.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/eight.sup.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/eight.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/eight.sup.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/eight.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ellipsis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ellipsis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ellipsis.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ellipsis.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/emacron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/emacron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/emacron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/emacron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/emdash.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/emdash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/emdash.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/emdash.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/endash.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/endash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/endash.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/endash.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/eng.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/eng.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/eng.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/eng.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/eogonek.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/eogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/eogonek.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/eogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal.end.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal.end.glif new file mode 100644 index 00000000..ae5d9dad --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/equal.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/equal.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal.middle.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal.middle.glif new file mode 100644 index 00000000..9e4a4bd3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal.start.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal.start.glif new file mode 100644 index 00000000..c7c99bad --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_asciitilde.liga.glif new file mode 100644 index 00000000..b8b6d403 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_asciitilde.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar.end.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar.end.glif new file mode 100644 index 00000000..2acc4e80 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar.liga.glif new file mode 100644 index 00000000..9c962885 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_bar.end.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_bar.end.glif new file mode 100644 index 00000000..41ca2bc0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_bar.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_bar.liga.glif new file mode 100644 index 00000000..fc3ac6e7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_bar.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_bar_equal.middle.glif new file mode 100644 index 00000000..9e118de3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_bar_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_equal.middle.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_equal.middle.glif new file mode 100644 index 00000000..9bd77368 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_bar_equal.middle.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_colon_equal.middle.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_colon_equal.middle.glif new file mode 100644 index 00000000..05f1d37a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_colon_equal.middle.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_equal.liga.glif new file mode 100644 index 00000000..c7034c9e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_equal.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_equal_equal.liga.glif new file mode 100644 index 00000000..ef4d76f8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_equal_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_exclam_equal.middle.glif new file mode 100644 index 00000000..0a174ea0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_exclam_equal.middle.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater.end.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater.end.glif new file mode 100644 index 00000000..40e3f486 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater.end.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater.liga.glif new file mode 100644 index 00000000..7f091c2b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_equal.middle.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_equal.middle.glif new file mode 100644 index 00000000..2549cc71 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_greater.end.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_greater.end.glif new file mode 100644 index 00000000..08233cd2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_greater.end.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_greater.liga.glif new file mode 100644 index 00000000..6a300b87 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_greater_equal.m.glif new file mode 100644 index 00000000..4ff52b17 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_greater_greater_equal.m.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_less.end.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_less.end.glif new file mode 100644 index 00000000..b5a0f69f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_less.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_less.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_less.liga.glif new file mode 100644 index 00000000..6ba553a8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_less.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_equal.middle.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_equal.middle.glif new file mode 100644 index 00000000..db2061a4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_less.end.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_less.end.glif new file mode 100644 index 00000000..19b86b8c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_less.end.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_less.liga.glif new file mode 100644 index 00000000..13ba0d6c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_less.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_less_equal.middle.glif new file mode 100644 index 00000000..7069394b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_less_less_equal.middle.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash.end.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash.end.glif new file mode 100644 index 00000000..8a3d1d6e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash.liga.glif new file mode 100644 index 00000000..1f542111 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_equal.middle.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_equal.middle.glif new file mode 100644 index 00000000..d4b04f4d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_equal.middle.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_slash.end.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_slash.end.glif new file mode 100644 index 00000000..5e6d8b4f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_slash.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_slash.liga.glif new file mode 100644 index 00000000..46e73974 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_slash.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_slash_equal.middle.glif new file mode 100644 index 00000000..e358e8a3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/equal_slash_slash_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/eth.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/eth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/eth.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/eth.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/etilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/etilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/etilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/etilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/exclam.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/exclam.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/exclam.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/exclam.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/exclam_asciitilde.liga.glif new file mode 100644 index 00000000..9623697b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/exclam_asciitilde.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/exclam_equal.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/exclam_equal.liga.glif new file mode 100644 index 00000000..928b19a6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/exclam_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/exclam_equal_equal.liga.glif new file mode 100644 index 00000000..f454300b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/exclam_equal_equal.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/exclam_exclam.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/exclam_exclam.liga.glif new file mode 100644 index 00000000..30253af4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/exclam_exclam.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/exclam_exclam_period.liga.glif new file mode 100644 index 00000000..9dc6d2b3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/exclam_exclam_period.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/exclamdown.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/exclamdown.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/exclamdown.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/exclamdown.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/f.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/f.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/f.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/f.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/five.den.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/five.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/five.den.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/five.den.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/five.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/five.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/five.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/five.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/five.inf.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/five.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/five.inf.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/five.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/five.num.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/five.num.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/five.num.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/five.num.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/five.sup.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/five.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/five.sup.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/five.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/fiveeighths.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/fiveeighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/fiveeighths.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/fiveeighths.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/fivesixths.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/fivesixths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/fivesixths.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/fivesixths.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/four.den.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/four.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/four.den.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/four.den.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/four.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/four.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/four.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/four.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/four.inf.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/four.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/four.inf.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/four.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/four.num.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/four.num.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/four.num.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/four.num.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/four.sup.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/four.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/four.sup.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/four.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/fourfifths.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/fourfifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/fourfifths.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/fourfifths.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/fracbar.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/fracbar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/fracbar.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/fracbar.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/fraction.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/fraction.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/fraction.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/fraction.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/fullblock.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/fullblock.glif new file mode 100644 index 00000000..c0d56679 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/fullblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/g.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/g.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/g.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/g.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/gbreve.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/gbreve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/gbreve.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/gbreve.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/gcaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/gcaron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/gcaron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/gcaron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/gcircumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/gcircumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/gcircumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/gcircumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/gcommaaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/gcommaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/gcommaaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/gcommaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/gdotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/gdotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/gdotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/gdotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/germandbls.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/germandbls.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/germandbls.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/germandbls.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/gmacron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/gmacron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/gmacron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/gmacron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/grave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/grave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/grave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/gravecmb.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/gravecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/gravecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/gravecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/gravecmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/gravecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/gravecmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/gravecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/greater.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/greater.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_colon.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_colon.liga.glif new file mode 100644 index 00000000..bf34266c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal.glif new file mode 100644 index 00000000..0950073c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal.liga.glif new file mode 100644 index 00000000..5863e127 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal.start.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal.start.glif new file mode 100644 index 00000000..82d5f0a9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal_greater.liga.glif new file mode 100644 index 00000000..7b7bd604 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_equal_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater.liga.glif new file mode 100644 index 00000000..20d3b1bf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_equal.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_equal.liga.glif new file mode 100644 index 00000000..ceffb496 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_equal.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_equal.start.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_equal.start.glif new file mode 100644 index 00000000..49b50cad --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_equal.start.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_greater.liga.glif new file mode 100644 index 00000000..ed1314b2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_greater.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_hyphen.liga.glif new file mode 100644 index 00000000..461469cb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_hyphen.start.glif new file mode 100644 index 00000000..48b34803 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_greater_hyphen.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_hyphen.liga.glif new file mode 100644 index 00000000..d084f478 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_hyphen.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_hyphen.start.glif new file mode 100644 index 00000000..66e3e52a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_hyphen.start.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_hyphen_greater.liga.glif new file mode 100644 index 00000000..7b7ab0ed --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greater_hyphen_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/greaterequal.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greaterequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/greaterequal.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/greaterequal.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/guillemetleft.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/guillemetleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/guillemetleft.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/guillemetleft.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/guillemetright.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/guillemetright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/guillemetright.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/guillemetright.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/guilsinglleft.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/guilsinglleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/guilsinglleft.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/guilsinglleft.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/guilsinglright.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/guilsinglright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/guilsinglright.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/guilsinglright.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/h.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/h.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/h.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/h.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hbar.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hbar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hbar.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hbar.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hbrevebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hbrevebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hbrevebelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hbrevebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hcedilla.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hcedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hcedilla.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hcedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hcircumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hcircumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hcircumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hcircumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hdotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hdotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavydbldashhorzbxd.glif new file mode 100644 index 00000000..6b6b3ec9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavydbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavydbldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavydbldashvertbxd.glif new file mode 100644 index 00000000..de2fa836 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavydbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavydnbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavydnbxd.glif new file mode 100644 index 00000000..324980b7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavydnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavydnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavydnhorzbxd.glif new file mode 100644 index 00000000..376e91dc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavydnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavydnleftbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavydnleftbxd.glif new file mode 100644 index 00000000..c2d69ad1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavydnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavydnrightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavydnrightbxd.glif new file mode 100644 index 00000000..5583fea9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavydnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyhorzbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyhorzbxd.glif new file mode 100644 index 00000000..56e53e4c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyhorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyleftbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyleftbxd.glif new file mode 100644 index 00000000..e4627b09 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyleftlightrightbxd.glif new file mode 100644 index 00000000..40d48710 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyleftlightrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyquaddashhorzbxd.glif new file mode 100644 index 00000000..38b3d246 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyquaddashvertbxd.glif new file mode 100644 index 00000000..d7820ca2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyrightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyrightbxd.glif new file mode 100644 index 00000000..c56dcccb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavytrpldashhorzbxd.glif new file mode 100644 index 00000000..9a237227 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavytrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavytrpldashvertbxd.glif new file mode 100644 index 00000000..04aa39fd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavytrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyupbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyupbxd.glif new file mode 100644 index 00000000..76f4399d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyuphorzbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyuphorzbxd.glif new file mode 100644 index 00000000..5187a583 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyupleftbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyupleftbxd.glif new file mode 100644 index 00000000..306d20f4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyuplightdnbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyuplightdnbxd.glif new file mode 100644 index 00000000..033d9e8c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyuplightdnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyuprightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyuprightbxd.glif new file mode 100644 index 00000000..fdc00674 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyvertbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyvertbxd.glif new file mode 100644 index 00000000..ce9b09bc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyverthorzbxd.glif new file mode 100644 index 00000000..249c7e2c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyvertleftbxd.glif new file mode 100644 index 00000000..9d68de86 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyvertrightbxd.glif new file mode 100644 index 00000000..61590c89 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/heavyvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hlinebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hlinebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hlinebelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hlinebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hookcmb.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hookcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hookcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hookcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hookcmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hookcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hookcmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hookcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/horizontalbar.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/horizontalbar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/horizontalbar.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/horizontalbar.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hungarumlaut.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hungarumlaut.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hungarumlaut.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hungarumlautcmb.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hungarumlautcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hungarumlautcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hungarumlautcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hungarumlautcmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hungarumlautcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hungarumlautcmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hungarumlautcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen.end.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen.end.glif new file mode 100644 index 00000000..5849c397 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hyphen.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/hyphen.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen.middle.glif new file mode 100644 index 00000000..838d4599 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen.start.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen.start.glif new file mode 100644 index 00000000..bd0fc50b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_asciitilde.liga.glif new file mode 100644 index 00000000..d212bac2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_asciitilde.liga.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar.end.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar.end.glif new file mode 100644 index 00000000..89755280 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar.end.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar.liga.glif new file mode 100644 index 00000000..3991fdde --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_bar.end.glif new file mode 100644 index 00000000..a5b265df --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_bar.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_bar.liga.glif new file mode 100644 index 00000000..8d3b0572 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif new file mode 100644 index 00000000..fce5a71c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_hyphen.middle.glif new file mode 100644 index 00000000..0a61d0b3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_bar_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater.end.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater.end.glif new file mode 100644 index 00000000..0474f5df --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater.liga.glif new file mode 100644 index 00000000..80ec6484 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_greater.end.glif new file mode 100644 index 00000000..20e99a51 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_greater.end.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_greater.liga.glif new file mode 100644 index 00000000..fff48dfc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif new file mode 100644 index 00000000..9895cd47 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_hyphen.middle.glif new file mode 100644 index 00000000..59a43360 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_greater_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_hyphen.liga.glif new file mode 100644 index 00000000..6f8fac00 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_hyphen.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..7c9168ee --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less.end.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less.end.glif new file mode 100644 index 00000000..693ae40e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less.end.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less.liga.glif new file mode 100644 index 00000000..aeb04e0e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_hyphen.middle.glif new file mode 100644 index 00000000..d893624c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_less.end.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_less.end.glif new file mode 100644 index 00000000..0207038e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_less.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_less.liga.glif new file mode 100644 index 00000000..f9415b72 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_less.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif new file mode 100644 index 00000000..da6641d6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/hyphen_less_less_hyphen.middle.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/i.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/i.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/i.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/i.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/iacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/iacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/iacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/iacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ibreve.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ibreve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ibreve.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ibreve.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/icaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/icaron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/icaron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/icaron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/icircumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/icircumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/icircumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/icircumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/idieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/idieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/idieresis.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/idieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/idotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/idotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/idotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/idotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/idotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/idotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/idotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/idotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/igrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/igrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/igrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/igrave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ihookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ihookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ihookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ihookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/imacron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/imacron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/imacron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/imacron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/iogonek.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/iogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/iogonek.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/iogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/itilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/itilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/itilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/itilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/j.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/j.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/j.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/j.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/jcaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/jcaron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/jcaron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/jcaron.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/jcircumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/jcircumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/jcircumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/jcircumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/k.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/k.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/k.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/k.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/kcommaaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/kcommaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/kcommaaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/kcommaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/kdotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/kdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/kdotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/kdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/klinebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/klinebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/klinebelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/klinebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/l.dot.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/l.dot.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/l.dot.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/l.dot.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/l.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/l.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/l.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/l.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/lacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/lacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/layerinfo.plist b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/layerinfo.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/layerinfo.plist rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/layerinfo.plist diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/lcaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lcaron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/lcaron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lcaron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lcircumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/lcircumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lcircumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/lcommaaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lcommaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/lcommaaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lcommaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ldotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ldotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ldotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ldotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftdnheavyrightuplightbxd.glif new file mode 100644 index 00000000..e2c05404 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftdnheavyrightuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lefteighthblock.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lefteighthblock.glif new file mode 100644 index 00000000..bd0981c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lefteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftfiveeighthsblock.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftfiveeighthsblock.glif new file mode 100644 index 00000000..1db3b143 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lefthalfblock.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lefthalfblock.glif new file mode 100644 index 00000000..7ad2b780 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lefthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftheavyrightdnlightbxd.glif new file mode 100644 index 00000000..2e1372fb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftheavyrightuplightbxd.glif new file mode 100644 index 00000000..070d16da --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftheavyrightvertlightbxd.glif new file mode 100644 index 00000000..fb9387a7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftheavyrightvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftlightrightdnheavybxd.glif new file mode 100644 index 00000000..0d894614 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftlightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftlightrightupheavybxd.glif new file mode 100644 index 00000000..de9e26bd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftlightrightvertheavybxd.glif new file mode 100644 index 00000000..ab2441e6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftlightrightvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftquarterblock.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftquarterblock.glif new file mode 100644 index 00000000..0a473fc6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftseveneighthsblock.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftseveneighthsblock.glif new file mode 100644 index 00000000..e6dd7d1a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftthreeeighthsblock.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftthreeeighthsblock.glif new file mode 100644 index 00000000..c6bf4e61 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftthreequartersblock.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftthreequartersblock.glif new file mode 100644 index 00000000..75cb3ef3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftupheavyrightdnlightbxd.glif new file mode 100644 index 00000000..d5b485fe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/leftupheavyrightdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/less.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/less.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_asciitilde.liga.glif new file mode 100644 index 00000000..b628d6ea --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_asciitilde.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..9e9d299f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_asciitilde_greater.liga.glif new file mode 100644 index 00000000..d831eb98 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_asciitilde_greater.liga.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_asterisk.liga.glif new file mode 100644 index 00000000..b440a8a9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_asterisk.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_asterisk_greater.liga.glif new file mode 100644 index 00000000..b852095f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_asterisk_greater.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_bar.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_bar.liga.glif new file mode 100644 index 00000000..07979266 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_bar.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_bar_bar.liga.glif new file mode 100644 index 00000000..20db861e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_bar_bar.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_bar_bar_bar.liga.glif new file mode 100644 index 00000000..ff8ace0a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_bar_bar_bar.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_bar_greater.liga.glif new file mode 100644 index 00000000..376942cf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_bar_greater.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_colon.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_colon.liga.glif new file mode 100644 index 00000000..8a10fd15 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_dollar.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_dollar.liga.glif new file mode 100644 index 00000000..c1b0faae --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_dollar.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_dollar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_dollar_greater.liga.glif new file mode 100644 index 00000000..618f9008 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_dollar_greater.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_equal.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_equal.glif new file mode 100644 index 00000000..e2d2128b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_equal.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_equal.liga.glif new file mode 100644 index 00000000..b773d78d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_equal.start.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_equal.start.glif new file mode 100644 index 00000000..8bb14dd9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_equal.start.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_equal_greater.liga.glif new file mode 100644 index 00000000..a599754a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_equal_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_equal_less.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_equal_less.liga.glif new file mode 100644 index 00000000..eb8339fe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_equal_less.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..f8c49e30 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_greater.liga.glif new file mode 100644 index 00000000..fc7f1f3d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_greater.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen.liga.glif new file mode 100644 index 00000000..6c781e76 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen.start.glif new file mode 100644 index 00000000..25599200 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen_greater.liga.glif new file mode 100644 index 00000000..c22679b1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen_greater.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen_less.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen_less.liga.glif new file mode 100644 index 00000000..0af169aa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_hyphen_less.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_less.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_less.liga.glif new file mode 100644 index 00000000..a9f12678 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_less.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_less_equal.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_less_equal.liga.glif new file mode 100644 index 00000000..cdfeef5b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_less_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_less_equal.start.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_less_equal.start.glif new file mode 100644 index 00000000..ecfdad2e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_less_equal.start.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_less_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_less_hyphen.liga.glif new file mode 100644 index 00000000..c58f955e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_less_hyphen.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_less_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_less_hyphen.start.glif new file mode 100644 index 00000000..534243b4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_less_hyphen.start.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_less_less.liga.glif new file mode 100644 index 00000000..8c058831 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_less_less.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_plus.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_plus.liga.glif new file mode 100644 index 00000000..a6f096a4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_plus.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_plus_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_plus_greater.liga.glif new file mode 100644 index 00000000..595ca52f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_plus_greater.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_slash.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_slash.liga.glif new file mode 100644 index 00000000..62187798 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_slash.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_slash_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_slash_greater.liga.glif new file mode 100644 index 00000000..05e1d695 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/less_slash_greater.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/lessequal.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lessequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/lessequal.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lessequal.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightarcdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightarcdnleftbxd.glif new file mode 100644 index 00000000..d7c9853e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightarcdnleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightarcdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightarcdnrightbxd.glif new file mode 100644 index 00000000..8b22a5a1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightarcdnrightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightarcupleftbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightarcupleftbxd.glif new file mode 100644 index 00000000..d8f56b94 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightarcupleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightarcuprightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightarcuprightbxd.glif new file mode 100644 index 00000000..839dbb1d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightarcuprightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdbldashhorzbxd.glif new file mode 100644 index 00000000..4fb7ffd5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdbldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdbldashvertbxd.glif new file mode 100644 index 00000000..ff83e2cc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdiagcrossbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdiagcrossbxd.glif new file mode 100644 index 00000000..328c399e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdiagcrossbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdiagupleftdnrightbxd.glif new file mode 100644 index 00000000..891bf8c0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdiagupleftdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdiaguprightdnleftbxd.glif new file mode 100644 index 00000000..4e507794 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdiaguprightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdnbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdnbxd.glif new file mode 100644 index 00000000..2a33f416 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdnhorzbxd.glif new file mode 100644 index 00000000..f5cc96a8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdnleftbxd.glif new file mode 100644 index 00000000..a69c2bc2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdnrightbxd.glif new file mode 100644 index 00000000..dade37dd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lighthorzbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lighthorzbxd.glif new file mode 100644 index 00000000..04a99835 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lighthorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightleftbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightleftbxd.glif new file mode 100644 index 00000000..a7182b26 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightleftheavyrightbxd.glif new file mode 100644 index 00000000..108b2602 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightleftheavyrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightquaddashhorzbxd.glif new file mode 100644 index 00000000..671ce01a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightquaddashvertbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightquaddashvertbxd.glif new file mode 100644 index 00000000..3bedfc07 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightrightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightrightbxd.glif new file mode 100644 index 00000000..e37d9174 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightshade.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightshade.glif new file mode 100644 index 00000000..f4d373db --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightshade.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lighttrpldashhorzbxd.glif new file mode 100644 index 00000000..fe7a66cc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lighttrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lighttrpldashvertbxd.glif new file mode 100644 index 00000000..f230fa72 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lighttrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightupbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightupbxd.glif new file mode 100644 index 00000000..1bd58bef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightupheavydnbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightupheavydnbxd.glif new file mode 100644 index 00000000..e4dc31f7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightupheavydnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightuphorzbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightuphorzbxd.glif new file mode 100644 index 00000000..603e7ef8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightupleftbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightupleftbxd.glif new file mode 100644 index 00000000..c465c5f5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightuprightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightuprightbxd.glif new file mode 100644 index 00000000..ac24d393 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightvertbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightvertbxd.glif new file mode 100644 index 00000000..b949d420 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightverthorzbxd.glif new file mode 100644 index 00000000..d1af4cc4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightvertleftbxd.glif new file mode 100644 index 00000000..bf9d2d77 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightvertrightbxd.glif new file mode 100644 index 00000000..5383b1e4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lightvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ligspacer.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ligspacer.glif new file mode 100644 index 00000000..aaf0214e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ligspacer.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/llinebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/llinebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/llinebelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/llinebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lmacrondotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/lmacrondotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lmacrondotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/lslash.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lslash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/lslash.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/lslash.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/m.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/m.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/m.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/m.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/macron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/macron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/macron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/macronbelowcmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/macronbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/macronbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/macronbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/macroncmb.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/macroncmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/macroncmb.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/macroncmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/macroncmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/macroncmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/macroncmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/macroncmb.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/macronlowmod.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/macronlowmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/macronlowmod.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/macronlowmod.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/macute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/macute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/macute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/macute.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/mdotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/mdotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/mdotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/mdotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/mdotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/mdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/mdotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/mdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/mediumshade.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/mediumshade.glif new file mode 100644 index 00000000..6a701829 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/mediumshade.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/middotcat.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/middotcat.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/middotcat.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/middotcat.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/middotcat.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/middotcat.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/middotcat.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/middotcat.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/minus.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/minus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/minus.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/minus.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/mu.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/mu.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/mu.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/mu.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/multiply.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/multiply.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/multiply.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/multiply.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/n.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/n.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/n.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/n.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/nacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/nacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/nacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/nacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/naira.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/naira.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/naira.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/naira.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ncaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ncaron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ncaron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ncaron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ncircumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ncircumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ncircumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ncommaaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ncommaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ncommaaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ncommaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ndotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ndotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ndotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ndotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ndotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ndotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ndotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ndotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ngrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ngrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ngrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ngrave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/nine.den.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/nine.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/nine.den.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/nine.den.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/nine.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/nine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/nine.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/nine.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/nine.inf.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/nine.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/nine.inf.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/nine.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/nine.num.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/nine.num.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/nine.num.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/nine.num.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/nine.sup.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/nine.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/nine.sup.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/nine.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/nlinebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/nlinebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/nlinebelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/nlinebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/notequal.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/notequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/notequal.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/notequal.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ntilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ntilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ntilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ntilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign.end.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign.end.glif new file mode 100644 index 00000000..4b766bf6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign.end.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/numbersign.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/numbersign.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign.middle.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign.middle.glif new file mode 100644 index 00000000..644243e5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign.start.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign.start.glif new file mode 100644 index 00000000..d6088196 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign.start.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_braceleft.liga.glif new file mode 100644 index 00000000..739d817a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_braceleft.liga.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_bracketleft.liga.glif new file mode 100644 index 00000000..b6b86f1e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_bracketleft.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_colon.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_colon.liga.glif new file mode 100644 index 00000000..fdf4309d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_colon.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_equal.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_equal.liga.glif new file mode 100644 index 00000000..1c45fe1f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_equal.liga.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_exclam.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_exclam.liga.glif new file mode 100644 index 00000000..fa673b66 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_exclam.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_parenleft.liga.glif new file mode 100644 index 00000000..a0cc5fd3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_parenleft.liga.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_question.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_question.liga.glif new file mode 100644 index 00000000..13a9202f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_question.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_underscore.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_underscore.liga.glif new file mode 100644 index 00000000..4db44562 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_underscore.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_underscore_parenleft.glif new file mode 100644 index 00000000..8f8084a0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/numbersign_underscore_parenleft.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/o.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/o.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/o.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/o.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/oacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/oacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/oacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/oacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/obreve.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/obreve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/obreve.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/obreve.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ocaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ocaron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ocaron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ocaron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ocircumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ocircumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ocircumflexacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ocircumflexacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ocircumflexdotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ocircumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ocircumflexhookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflexhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ocircumflextilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ocircumflextilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ocircumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/odieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/odieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/odieresis.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/odieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/odotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/odotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/odotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/odotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/odotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/odotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/odotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/odotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/oe.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/oe.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/oe.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/oe.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ogonek.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ogonek.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ogonekcmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ogonekcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ogonekcmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ogonekcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ograve.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ograve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ograve.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ograve.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ohookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ohookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ohookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ohookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ohorn.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ohorn.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ohorn.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ohorn.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ohornacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ohornacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ohornacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ohornacute.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohorndotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ohorndotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/ohorndotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ohorndotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ohorngrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ohorngrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ohorngrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ohorngrave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ohornhookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ohornhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ohornhookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ohornhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ohorntilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ohorntilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ohorntilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ohorntilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ohungarumlaut.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ohungarumlaut.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ohungarumlaut.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ohungarumlaut.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/omacron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/omacron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/omacron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/omacron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/one.den.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/one.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/one.den.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/one.den.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/one.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/one.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/one.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/one.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/one.inf.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/one.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/one.inf.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/one.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/one.num.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/one.num.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/one.num.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/one.num.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/one.sup.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/one.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/one.sup.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/one.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/oneeighth.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/oneeighth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/oneeighth.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/oneeighth.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/onefifth.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/onefifth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/onefifth.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/onefifth.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/onehalf.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/onehalf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/onehalf.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/onehalf.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/onequarter.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/onequarter.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/onequarter.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/onequarter.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/onesixth.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/onesixth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/onesixth.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/onesixth.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/onethird.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/onethird.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/onethird.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/onethird.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/oogonek.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/oogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/oogonek.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/oogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ordfeminine.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ordfeminine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ordfeminine.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ordfeminine.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ordmasculine.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ordmasculine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ordmasculine.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ordmasculine.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/oslash.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/oslash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/oslash.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/oslash.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/otilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/otilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/otilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/otilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/p.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/p.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/p.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/p.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/paragraph.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/paragraph.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/paragraph.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/paragraph.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/parenleft.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/parenleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/parenleft.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/parenleft.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/parenright.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/parenright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/parenright.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/parenright.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/percent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/percent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/percent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/percent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/percent_percent.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/percent_percent.liga.glif new file mode 100644 index 00000000..95356f87 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/percent_percent.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/period.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/period.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_equal.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_equal.liga.glif new file mode 100644 index 00000000..27d69925 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_hyphen.liga.glif new file mode 100644 index 00000000..633ceb74 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_period.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_period.liga.glif new file mode 100644 index 00000000..df885b62 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_period.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_period_equal.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_period_equal.liga.glif new file mode 100644 index 00000000..5c1afc64 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_period_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_period_less.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_period_less.liga.glif new file mode 100644 index 00000000..44045409 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_period_less.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_period_period.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_period_period.liga.glif new file mode 100644 index 00000000..7c260274 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_period_period.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_question.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_question.liga.glif new file mode 100644 index 00000000..d7a23adb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/period_question.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/periodcentered.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/periodcentered.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/periodcentered.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/periodcentered.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/peso.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/peso.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/peso.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/peso.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/plus.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/plus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/plus.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/plus.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/plus_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/plus_greater.liga.glif new file mode 100644 index 00000000..9d8f98bf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/plus_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/plus_plus.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/plus_plus.liga.glif new file mode 100644 index 00000000..837d147a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/plus_plus.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/plus_plus_plus.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/plus_plus_plus.liga.glif new file mode 100644 index 00000000..17ca2442 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/plus_plus_plus.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/plusminus.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/plusminus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/plusminus.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/plusminus.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/primemod.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/primemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/primemod.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/primemod.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/published.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/published.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/published.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/published.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/q.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/q.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/q.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/q.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/question.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/question.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/question.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/question.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/question_colon.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/question_colon.liga.glif new file mode 100644 index 00000000..6190b66b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/question_colon.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/question_equal.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/question_equal.liga.glif new file mode 100644 index 00000000..dd461b39 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/question_equal.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/question_period.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/question_period.liga.glif new file mode 100644 index 00000000..42bf721d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/question_period.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/question_question.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/question_question.liga.glif new file mode 100644 index 00000000..05941c1a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/question_question.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/questiondown.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/questiondown.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/questiondown.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/questiondown.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/quotedbl.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/quotedbl.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/quotedbl.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/quotedbl.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/quotedblbase.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/quotedblbase.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/quotedblbase.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/quotedblbase.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/quotedblleft.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/quotedblleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/quotedblleft.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/quotedblleft.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/quotedblright.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/quotedblright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/quotedblright.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/quotedblright.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/quoteleft.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/quoteleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/quoteleft.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/quoteleft.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/quoteright.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/quoteright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/quoteright.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/quoteright.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/quotesinglbase.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/quotesinglbase.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/quotesinglbase.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/quotesinglbase.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/quotesingle.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/quotesingle.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/quotesingle.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/quotesingle.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/r.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/r.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/r.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/r.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/racute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/racute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/racute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/racute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/rcaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rcaron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/rcaron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rcaron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/rcommaaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rcommaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/rcommaaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rcommaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/rdotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rdotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/rdotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rdotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/rdotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/rdotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/registered.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/registered.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/registered.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/registered.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightdnheavyleftuplightbxd.glif new file mode 100644 index 00000000..919f0f95 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightdnheavyleftuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/righteighthblock.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/righteighthblock.glif new file mode 100644 index 00000000..ee46a32d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/righteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/righthalfblock.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/righthalfblock.glif new file mode 100644 index 00000000..9f3ba315 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/righthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightheavyleftdnlightbxd.glif new file mode 100644 index 00000000..9f532883 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightheavyleftuplightbxd.glif new file mode 100644 index 00000000..e3261e35 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightheavyleftvertlightbxd.glif new file mode 100644 index 00000000..b57ced9a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightheavyleftvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightlightleftdnheavybxd.glif new file mode 100644 index 00000000..2f93f936 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightlightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightlightleftupheavybxd.glif new file mode 100644 index 00000000..f63072ce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightlightleftvertheavybxd.glif new file mode 100644 index 00000000..0e91ed45 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightlightleftvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightupheavyleftdnlightbxd.glif new file mode 100644 index 00000000..579a0eb4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rightupheavyleftdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ring.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ring.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ring.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ring.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ringcmb.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ringcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ringcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ringcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ringcmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ringcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ringcmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ringcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ringhalfleft.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ringhalfleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ringhalfleft.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ringhalfleft.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ringhalfright.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ringhalfright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ringhalfright.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ringhalfright.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/rlinebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rlinebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/rlinebelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rlinebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rmacrondotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/rmacrondotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/rmacrondotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/s.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/s.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/s.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/s.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/sacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/sacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/sacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/sacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/scaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/scaron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/scaron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/scaron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/scedilla.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/scedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/scedilla.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/scedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/schwa.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/schwa.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/schwa.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/schwa.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/scircumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/scircumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/scircumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/scircumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/scommaaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/scommaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/scommaaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/scommaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/sdotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/sdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/sdotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/sdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/section.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/section.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/section.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/section.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/semicolon.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/semicolon.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/semicolon.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/semicolon.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/semicolon_semicolon.liga.glif new file mode 100644 index 00000000..47c56504 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/semicolon_semicolon.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/servicemark.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/servicemark.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/servicemark.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/servicemark.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/seven.den.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/seven.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/seven.den.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/seven.den.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/seven.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/seven.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/seven.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/seven.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/seven.inf.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/seven.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/seven.inf.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/seven.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/seven.num.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/seven.num.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/seven.num.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/seven.num.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/seven.sup.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/seven.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/seven.sup.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/seven.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/seveneighths.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/seveneighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/seveneighths.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/seveneighths.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/six.den.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/six.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/six.den.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/six.den.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/six.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/six.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/six.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/six.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/six.inf.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/six.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/six.inf.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/six.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/six.num.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/six.num.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/six.num.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/six.num.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/six.sup.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/six.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/six.sup.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/six.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/slash.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/slash.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_asterisk.liga.glif new file mode 100644 index 00000000..b06cf6eb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_asterisk.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_backslash.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_backslash.liga.glif new file mode 100644 index 00000000..21c67989 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_backslash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_equal.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_equal.liga.glif new file mode 100644 index 00000000..bceceae9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_equal.start.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_equal.start.glif new file mode 100644 index 00000000..1e367cab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_greater.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_greater.liga.glif new file mode 100644 index 00000000..2a6b8503 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash.liga.glif new file mode 100644 index 00000000..f3f2b730 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash_equal.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash_equal.liga.glif new file mode 100644 index 00000000..4124de03 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash_equal.start.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash_equal.start.glif new file mode 100644 index 00000000..ec01664d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash_slash.liga.glif new file mode 100644 index 00000000..2da5cfa3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/slash_slash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/space.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/space.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/space.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/space.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/sterling.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/sterling.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/sterling.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/sterling.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/t.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/t.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/t.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/t.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tbar.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/tbar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tbar.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/tbar.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tcaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/tcaron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tcaron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/tcaron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tcedilla.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/tcedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tcedilla.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/tcedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/tcircumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tcircumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/tcircumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tcommaaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/tcommaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tcommaaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/tcommaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tdotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/tdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tdotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/tdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/thorn.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/thorn.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/thorn.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/thorn.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/three.den.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/three.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/three.den.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/three.den.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/three.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/three.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/three.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/three.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/three.inf.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/three.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/three.inf.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/three.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/three.num.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/three.num.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/three.num.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/three.num.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/three.sup.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/three.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/three.sup.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/three.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/threeeighths.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/threeeighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/threeeighths.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/threeeighths.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/threefifths.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/threefifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/threefifths.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/threefifths.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/threequarters.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/threequarters.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/threequarters.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/threequarters.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tildecmb.cap.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/tildecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tildecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/tildecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tildecmb.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/tildecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/tildecmb.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/tildecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tlinebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/tlinebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/tlinebelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/tlinebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/trademark.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/trademark.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/trademark.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/trademark.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/two.den.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/two.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/two.den.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/two.den.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/two.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/two.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/two.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/two.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/two.inf.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/two.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/two.inf.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/two.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/two.num.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/two.num.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/two.num.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/two.num.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/two.sup.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/two.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/two.sup.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/two.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/twodotleader.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/twodotleader.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/twodotleader.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/twodotleader.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/twofifths.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/twofifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/twofifths.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/twofifths.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/twothirds.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/twothirds.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/twothirds.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/twothirds.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/u.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/u.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/u.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/u.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ubreve.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ubreve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ubreve.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ubreve.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ucaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ucaron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ucaron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ucaron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ucircumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ucircumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ucircumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ucircumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/udieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/udieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/udieresis.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/udieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/udieresisacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/udieresisacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/udieresisacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/udieresisacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/udieresiscaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/udieresiscaron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/udieresiscaron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/udieresiscaron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/udieresisgrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/udieresisgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/udieresisgrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/udieresisgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/udieresismacron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/udieresismacron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/udieresismacron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/udieresismacron.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/udotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/udotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/udotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/udotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ugrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ugrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ugrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ugrave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uhookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uhookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uhorn.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uhorn.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uhorn.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uhorn.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uhornacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uhornacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uhornacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uhornacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhorndotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uhorndotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/uhorndotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uhorndotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uhorngrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uhorngrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uhorngrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uhorngrave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uhornhookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uhornhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uhornhookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uhornhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uhorntilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uhorntilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uhorntilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uhorntilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uhungarumlaut.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uhungarumlaut.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uhungarumlaut.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uhungarumlaut.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/umacron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/umacron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/umacron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/umacron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/underscore.end.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/underscore.end.glif new file mode 100644 index 00000000..65b451a3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/underscore.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/underscore.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/underscore.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/underscore.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/underscore.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/underscore.middle.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/underscore.middle.glif new file mode 100644 index 00000000..df04c405 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/underscore.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/underscore.start.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/underscore.start.glif new file mode 100644 index 00000000..709236de --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/underscore.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/underscore_bar_underscore.m.glif new file mode 100644 index 00000000..ee147a78 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/underscore_bar_underscore.m.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uni00A_0.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni00A_0.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uni00A_0.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni00A_0.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uni0326.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni0326.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uni0326.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni0326.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uni1E_9E_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni1E_9E_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uni1E_9E_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni1E_9E_.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uni2011.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni2011.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/uni2011.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni2011.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uni20B_9.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni20B_9.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uni20B_9.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni20B_9.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uni20B_A_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni20B_A_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uni20B_A_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni20B_A_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uni20B_D_.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni20B_D_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uni20B_D_.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni20B_D_.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni2610.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni2610.glif new file mode 100644 index 00000000..27bc6460 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni2610.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni2611.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni2611.glif new file mode 100644 index 00000000..7a6c6530 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni2611.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni2612.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni2612.glif new file mode 100644 index 00000000..9721ae51 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni2612.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni2713.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni2713.glif new file mode 100644 index 00000000..d0464de3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uni2713.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uniA_788.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniA_788.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uniA_788.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniA_788.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0A_0.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0A_0.glif new file mode 100644 index 00000000..81ffbdae --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0A_0.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0A_1.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0A_1.glif new file mode 100644 index 00000000..3afc3c08 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0A_1.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0A_2.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0A_2.glif new file mode 100644 index 00000000..8ec695ed --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0A_2.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_0.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_0.glif new file mode 100644 index 00000000..03d39049 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_0.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_1.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_1.glif new file mode 100644 index 00000000..ad7d9aab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_1.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_2.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_2.glif new file mode 100644 index 00000000..53b881dc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_2.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_3.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_3.glif new file mode 100644 index 00000000..ba2e301d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uniE_0B_3.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uogonek.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uogonek.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/updblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/updblhorzsngbxd.glif new file mode 100644 index 00000000..77dfe463 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/updblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/updblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/updblleftsngbxd.glif new file mode 100644 index 00000000..ecc547c0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/updblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/updblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/updblrightsngbxd.glif new file mode 100644 index 00000000..c5d567d8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/updblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upeighthblock.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upeighthblock.glif new file mode 100644 index 00000000..edbfe3c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upeighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uphalfblock.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uphalfblock.glif new file mode 100644 index 00000000..f6006f81 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uphalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upheavydnhorzlightbxd.glif new file mode 100644 index 00000000..7591ec1c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upheavydnhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upheavyhorzlightbxd.glif new file mode 100644 index 00000000..f73a95d9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upheavyleftdnlightbxd.glif new file mode 100644 index 00000000..0e83c612 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upheavyleftlightbxd.glif new file mode 100644 index 00000000..5a92773b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upheavyrightdnlightbxd.glif new file mode 100644 index 00000000..7689c5b8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upheavyrightlightbxd.glif new file mode 100644 index 00000000..104bff34 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upleftdnleftdnrightquadrant.glif new file mode 100644 index 00000000..e0bdb776 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upleftdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upleftdnrightquadrant.glif new file mode 100644 index 00000000..6ca0f95d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upleftdnrightquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upleftquadrant.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upleftquadrant.glif new file mode 100644 index 00000000..9ab84ae1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upleftuprightdnleftquadrant.glif new file mode 100644 index 00000000..68671562 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upleftuprightdnleftquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upleftuprightdnrightquadrant.glif new file mode 100644 index 00000000..a20ceb2d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upleftuprightdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uplightdnhorzheavybxd.glif new file mode 100644 index 00000000..36d830f5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uplightdnhorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uplighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uplighthorzheavybxd.glif new file mode 100644 index 00000000..eb2e321f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uplighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uplightleftdnheavybxd.glif new file mode 100644 index 00000000..01e9ef51 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uplightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uplightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uplightleftheavybxd.glif new file mode 100644 index 00000000..cfcd797c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uplightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uplightrightdnheavybxd.glif new file mode 100644 index 00000000..669d2c1c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uplightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uplightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uplightrightheavybxd.glif new file mode 100644 index 00000000..fb80ef60 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uplightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uprightdnleftdnrightquadrant.glif new file mode 100644 index 00000000..4211b39d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uprightdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uprightdnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uprightdnleftquadrant.glif new file mode 100644 index 00000000..aea6004b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uprightdnleftquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uprightquadrant.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uprightquadrant.glif new file mode 100644 index 00000000..245dc1dd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uprightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upsnghorzdblbxd.glif new file mode 100644 index 00000000..8fe9841c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upsngleftdblbxd.glif new file mode 100644 index 00000000..9c532a66 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upsngrightdblbxd.glif new file mode 100644 index 00000000..9fc7c404 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/upsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uring.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uring.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/uring.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/uring.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/utilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/utilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/utilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/utilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/v.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/v.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/v.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/v.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/vdotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/vdotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertdblhorzsngbxd.glif new file mode 100644 index 00000000..d3f3ee70 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertdblhorzsngbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertdblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertdblleftsngbxd.glif new file mode 100644 index 00000000..628b80ba --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertdblleftsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertdblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertdblrightsngbxd.glif new file mode 100644 index 00000000..ea9a9457 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertdblrightsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertheavyhorzlightbxd.glif new file mode 100644 index 00000000..f2ad8e15 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertheavyhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertheavyleftlightbxd.glif new file mode 100644 index 00000000..91322671 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertheavyleftlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertheavyrightlightbxd.glif new file mode 100644 index 00000000..d5d3ebcc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertheavyrightlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/verticallinelowmod.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/verticallinelowmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/verticallinelowmod.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/verticallinelowmod.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/verticallinemod.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/verticallinemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/verticallinemod.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/verticallinemod.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertlighthorzheavybxd.glif new file mode 100644 index 00000000..21e1d417 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertlighthorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertlightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertlightleftheavybxd.glif new file mode 100644 index 00000000..23914784 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertlightleftheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertlightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertlightrightheavybxd.glif new file mode 100644 index 00000000..a4dcfc53 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertlightrightheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertsnghorzdblbxd.glif new file mode 100644 index 00000000..dc159a8c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertsnghorzdblbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertsngleftdblbxd.glif new file mode 100644 index 00000000..cf076318 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertsngleftdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertsngrightdblbxd.glif new file mode 100644 index 00000000..0b5d678b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/vertsngrightdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/w.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/w.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/w.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/w.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/w_w_w.liga.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/w_w_w.liga.glif new file mode 100644 index 00000000..2568fa03 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/w_w_w.liga.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/wacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/wacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/wacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/wacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/wcircumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/wcircumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/wcircumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/wcircumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/wdieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/wdieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Bold-quadratic.ufo/glyphs/wdieresis.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/wdieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/wgrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/wgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/wgrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/wgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/won.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/won.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/won.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/won.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/x.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/x.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/x.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/x.glif diff --git a/sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/xdieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/xdieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Italic-quadratic.ufo/glyphs/xdieresis.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/xdieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/y.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/y.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/y.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/y.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/yacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/yacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/yacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/yacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ycircumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ycircumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ycircumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ycircumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ydieresis.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ydieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ydieresis.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ydieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ydotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ydotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ydotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ydotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ydotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ydotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Medium-quadratic.ufo/glyphs/ydotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ydotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/yen.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/yen.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/yen.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/yen.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ygrave.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ygrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ygrave.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ygrave.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/yhookabove.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/yhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/yhookabove.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/yhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ymacron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ymacron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ymacron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ymacron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ytilde.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ytilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/ytilde.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/ytilde.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/z.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/z.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/z.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/z.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zacute.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zacute.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zacute.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zcaron.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zcaron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zcaron.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zcaron.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zcircumflex.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zcircumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zcircumflex.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zcircumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zdotaccent.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zdotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zdotaccent.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zdotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zdotbelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zdotbelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zero.den.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zero.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zero.den.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zero.den.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zero.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zero.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zero.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zero.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zero.inf.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zero.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zero.inf.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zero.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zero.num.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zero.num.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-BoldItalic-quadratic.ufo/glyphs/zero.num.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zero.num.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zero.sup.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zero.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zero.sup.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zero.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zlinebelow.glif b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zlinebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/glyphs/zlinebelow.glif rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/glyphs/zlinebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/layercontents.plist b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/layercontents.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/layercontents.plist rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/layercontents.plist diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/lib.plist b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/lib.plist new file mode 100644 index 00000000..8f3f5d29 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/lib.plist @@ -0,0 +1,1647 @@ + + + + + com.typemytype.robofont.compileSettings.autohint + + com.typemytype.robofont.compileSettings.checkOutlines + + com.typemytype.robofont.compileSettings.createDummyDSIG + + com.typemytype.robofont.compileSettings.decompose + + com.typemytype.robofont.compileSettings.generateFormat + 1 + com.typemytype.robofont.compileSettings.releaseMode + 1 + com.typemytype.robofont.italicSlantOffset + 0 + com.typemytype.robofont.segmentType + curve + com.typemytype.robofont.shouldAddPointsInSplineConversion + 1 + public.glyphOrder + + .notdef + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + S + T + U + V + W + X + Y + Z + a + b + c + d + e + f + g + h + i + j + k + l + m + n + o + p + q + r + s + t + u + v + w + x + y + z + period + comma + colon + semicolon + question + exclam + questiondown + exclamdown + ellipsis + twodotleader + quotedblleft + quotedblright + quotedblbase + quoteleft + quoteright + quotesinglbase + guillemetleft + guillemetright + guilsinglleft + guilsinglright + parenleft + parenright + bracketleft + bracketright + braceleft + braceright + slash + backslash + bar + hyphen + endash + emdash + periodcentered + bullet + underscore + ampersand + at + published + copyright + registered + servicemark + trademark + asterisk + dagger + daggerdbl + section + paragraph + zero + one + two + three + four + five + six + seven + eight + nine + colon.fig + plus + divide + minus + equal + notequal + asciitilde + approxequal + multiply + less + greater + lessequal + greaterequal + plusminus + asciicircum + mu + numbersign + percent + quotedbl + quotesingle + ordfeminine + ordmasculine + degree + dollar + sterling + yen + Euro + naira + peso + uni20BA + uni20BD + uni20B9 + bahtthai + won + cent + dong + onehalf + onethird + twothirds + onequarter + threequarters + onefifth + twofifths + threefifths + fourfifths + onesixth + fivesixths + oneeighth + threeeighths + fiveeighths + seveneighths + zero.sup + one.sup + two.sup + three.sup + four.sup + five.sup + six.sup + seven.sup + eight.sup + nine.sup + zero.inf + one.inf + two.inf + three.inf + four.inf + five.inf + six.inf + seven.inf + eight.inf + nine.inf + primemod + dblprimemod + commaturnedmod + apostrophemod + ringhalfleft + ringhalfright + verticallinemod + verticallinelowmod + acute + hungarumlaut + grave + circumflex + caron + breve + tilde + macron + dieresis + dotaccent + ring + uniA788 + macronlowmod + cedilla + ogonek + Aacute + Agrave + Acircumflex + Acircumflexdotbelow + Acircumflexacute + Acircumflexgrave + Acircumflexhookabove + Acircumflextilde + Acaron + Abreve + Abrevedotbelow + Abreveacute + Abrevegrave + Abrevehookabove + Abrevetilde + Atilde + Amacron + Adieresis + Adotaccent + Aring + Ahookabove + Adotbelow + Aogonek + AE + Blinebelow + Cacute + Ccircumflex + Ccaron + Cdotaccent + Ccedilla + Dcaron + Dcircumflexbelow + Dlinebelow + Ddotbelow + Dcroat + Eacute + Egrave + Ecircumflex + Ecircumflexdotbelow + Ecircumflexacute + Ecircumflexgrave + Ecircumflexhookabove + Ecircumflextilde + Ecaron + Ebreve + Etilde + Emacron + Edieresis + Edotaccent + Ehookabove + Edotbelow + Eogonek + Gcircumflex + Gcaron + Gbreve + Gmacron + Gdotaccent + Gcommaaccent + Hcircumflex + Hbrevebelow + Hdotbelow + Hcedilla + Hbar + Iacute + Igrave + Icircumflex + Icaron + Ibreve + Itilde + Imacron + Idieresis + Idotaccent + Ihookabove + Idotbelow + Iogonek + Jcircumflex + Klinebelow + Kcommaaccent + Kdotbelow + Lacute + Lcaron + Lcommaaccent + Lcircumflexbelow + Llinebelow + Lmacrondotbelow + Ldotbelow + L.dot + Lslash + Macute + Mdotaccent + Mdotbelow + Nacute + Ngrave + Ncaron + Ntilde + Ndotaccent + Ncircumflexbelow + Ncommaaccent + Ndotbelow + Nlinebelow + Eng + Oacute + Ohungarumlaut + Ograve + Ocircumflex + Ocircumflexdotbelow + Ocircumflexacute + Ocircumflexgrave + Ocircumflexhookabove + Ocircumflextilde + Ocaron + Obreve + Otilde + Omacron + Odieresis + Odotaccent + Ohookabove + Odotbelow + Oogonek + Oslash + OE + Ohorn + Ohornacute + Ohorngrave + Ohorntilde + Ohornhookabove + Ohorndotbelow + Racute + Rcaron + Rdotaccent + Rmacrondotbelow + Rcommaaccent + Rdotbelow + Rlinebelow + Sacute + Scircumflex + Scaron + Scommaaccent + Sdotbelow + Scedilla + uni1E9E + Tcaron + Tcircumflexbelow + Tcommaaccent + Tdotbelow + Tlinebelow + Tcedilla + Tbar + Uacute + Uhungarumlaut + Ugrave + Ucircumflex + Ucaron + Ubreve + Utilde + Umacron + Udieresis + Udieresisacute + Udieresisgrave + Udieresiscaron + Udieresismacron + Uring + Uhookabove + Udotbelow + Uogonek + Uhorn + Uhornacute + Uhorngrave + Uhorntilde + Uhornhookabove + Uhorndotbelow + Vdotbelow + Wacute + Wgrave + Wcircumflex + Wdieresis + Xdieresis + Yacute + Ygrave + Ycircumflex + Ytilde + Ymacron + Ydieresis + Ydotaccent + Yhookabove + Ydotbelow + Zacute + Zcircumflex + Zcaron + Zdotaccent + Zdotbelow + Zlinebelow + Eth + Thorn + Schwa + aacute + agrave + acircumflex + acircumflexdotbelow + acircumflexacute + acircumflexgrave + acircumflexhookabove + acircumflextilde + acaron + abreve + abrevedotbelow + abreveacute + abrevegrave + abrevehookabove + abrevetilde + atilde + amacron + adieresis + adotaccent + aring + ahookabove + adotbelow + aogonek + ae + blinebelow + cacute + ccircumflex + ccaron + cdotaccent + ccedilla + dcaron + dcircumflexbelow + dlinebelow + ddotbelow + dcroat + eacute + egrave + ecircumflex + ecircumflexdotbelow + ecircumflexacute + ecircumflexgrave + ecircumflexhookabove + ecircumflextilde + ecaron + ebreve + etilde + emacron + edieresis + edotaccent + ehookabove + edotbelow + eogonek + gcircumflex + gcaron + gbreve + gmacron + gdotaccent + gcommaaccent + hcircumflex + hbrevebelow + hlinebelow + hdotbelow + hcedilla + hbar + dotlessi + iacute + igrave + icircumflex + icaron + ibreve + itilde + imacron + idieresis + idotaccent + ihookabove + idotbelow + iogonek + dotlessj + jcircumflex + jcaron + klinebelow + kcommaaccent + kdotbelow + lacute + lcaron + lcommaaccent + lcircumflexbelow + llinebelow + lmacrondotbelow + ldotbelow + l.dot + lslash + macute + mdotaccent + mdotbelow + nacute + ngrave + ncaron + ntilde + ndotaccent + ncircumflexbelow + ncommaaccent + ndotbelow + nlinebelow + eng + oacute + ohungarumlaut + ograve + ocircumflex + ocircumflexdotbelow + ocircumflexacute + ocircumflexgrave + ocircumflexhookabove + ocircumflextilde + ocaron + obreve + otilde + omacron + odieresis + odotaccent + ohookabove + odotbelow + oogonek + oslash + oe + ohorn + ohornacute + ohorngrave + ohorntilde + ohornhookabove + ohorndotbelow + racute + rcaron + rdotaccent + rmacrondotbelow + rcommaaccent + rdotbelow + rlinebelow + sacute + scircumflex + scaron + scommaaccent + sdotbelow + scedilla + germandbls + tcaron + tcircumflexbelow + tcommaaccent + tdotbelow + tlinebelow + tcedilla + tbar + uacute + uhungarumlaut + ugrave + ucircumflex + ucaron + ubreve + utilde + umacron + udieresis + udieresisacute + udieresisgrave + udieresiscaron + udieresismacron + uring + uhookabove + udotbelow + uogonek + uhorn + uhornacute + uhorngrave + uhorntilde + uhornhookabove + uhorndotbelow + vdotbelow + wacute + wgrave + wcircumflex + wdieresis + xdieresis + yacute + ygrave + ycircumflex + ytilde + ymacron + ydieresis + ydotaccent + yhookabove + ydotbelow + zacute + zcircumflex + zcaron + zdotaccent + zdotbelow + zlinebelow + eth + thorn + schwa + space + uni00A0 + zero.num + one.num + two.num + three.num + four.num + five.num + six.num + seven.num + eight.num + nine.num + fraction + fracbar + zero.den + one.den + two.den + three.den + four.den + five.den + six.den + seven.den + eight.den + nine.den + uni2011 + horizontalbar + middotcat + middotcat.cap + acutecmb + hungarumlautcmb + gravecmb + commaaboverightcmb + circumflexcmb + caroncmb + brevecmb + tildecmb + macroncmb + dieresiscmb + dotaccentcmb + ringcmb + commaturnedabovecmb + hookcmb + circumflexbelowcmb + brevebelowcmb + macronbelowcmb + dieresisbelowcmb + dotbelowcmb + uni0326 + cedillacmb + ogonekcmb + dieresisacute + dieresisgrave + dieresiscaron + dieresismacron + breveacute + brevegrave + brevehook + brevetilde + circumflexacute + circumflexgrave + circumflexhook + circumflextilde + acutecmb.cap + hungarumlautcmb.cap + gravecmb.cap + circumflexcmb.cap + caroncmb.cap + brevecmb.cap + tildecmb.cap + macroncmb.cap + dieresiscmb.cap + dotaccentcmb.cap + ringcmb.cap + hookcmb.cap + dieresisacute.cap + dieresisgrave.cap + dieresiscaron.cap + dieresismacron.cap + breveacute.cap + brevegrave.cap + brevehook.cap + brevetilde.cap + circumflexacute.cap + circumflexgrave.cap + circumflexhook.cap + circumflextilde.cap + lighthorzbxd + heavyhorzbxd + lightvertbxd + heavyvertbxd + lighttrpldashhorzbxd + heavytrpldashhorzbxd + lighttrpldashvertbxd + heavytrpldashvertbxd + lightquaddashhorzbxd + heavyquaddashhorzbxd + lightquaddashvertbxd + heavyquaddashvertbxd + lightdnrightbxd + dnlightrightheavybxd + dnheavyrightlightbxd + heavydnrightbxd + lightdnleftbxd + dnlightleftheavybxd + dnheavyleftlightbxd + heavydnleftbxd + lightuprightbxd + uplightrightheavybxd + upheavyrightlightbxd + heavyuprightbxd + lightupleftbxd + uplightleftheavybxd + upheavyleftlightbxd + heavyupleftbxd + lightvertrightbxd + vertlightrightheavybxd + upheavyrightdnlightbxd + dnheavyrightuplightbxd + vertheavyrightlightbxd + dnlightrightupheavybxd + uplightrightdnheavybxd + heavyvertrightbxd + lightvertleftbxd + vertlightleftheavybxd + upheavyleftdnlightbxd + dnheavyleftuplightbxd + vertheavyleftlightbxd + dnlightleftupheavybxd + uplightleftdnheavybxd + heavyvertleftbxd + lightdnhorzbxd + leftheavyrightdnlightbxd + rightheavyleftdnlightbxd + dnlighthorzheavybxd + dnheavyhorzlightbxd + rightlightleftdnheavybxd + leftlightrightdnheavybxd + heavydnhorzbxd + lightuphorzbxd + leftheavyrightuplightbxd + rightheavyleftuplightbxd + uplighthorzheavybxd + upheavyhorzlightbxd + rightlightleftupheavybxd + leftlightrightupheavybxd + heavyuphorzbxd + lightverthorzbxd + leftheavyrightvertlightbxd + rightheavyleftvertlightbxd + vertlighthorzheavybxd + upheavydnhorzlightbxd + dnheavyuphorzlightbxd + vertheavyhorzlightbxd + leftupheavyrightdnlightbxd + rightupheavyleftdnlightbxd + leftdnheavyrightuplightbxd + rightdnheavyleftuplightbxd + dnlightuphorzheavybxd + uplightdnhorzheavybxd + rightlightleftvertheavybxd + leftlightrightvertheavybxd + heavyverthorzbxd + lightdbldashhorzbxd + heavydbldashhorzbxd + lightdbldashvertbxd + heavydbldashvertbxd + dblhorzbxd + dblvertbxd + dnsngrightdblbxd + dndblrightsngbxd + dbldnrightbxd + dnsngleftdblbxd + dndblleftsngbxd + dbldnleftbxd + upsngrightdblbxd + updblrightsngbxd + dbluprightbxd + upsngleftdblbxd + updblleftsngbxd + dblupleftbxd + vertsngrightdblbxd + vertdblrightsngbxd + dblvertrightbxd + vertsngleftdblbxd + vertdblleftsngbxd + dblvertleftbxd + dnsnghorzdblbxd + dndblhorzsngbxd + dbldnhorzbxd + upsnghorzdblbxd + updblhorzsngbxd + dbluphorzbxd + vertsnghorzdblbxd + vertdblhorzsngbxd + dblverthorzbxd + lightarcdnrightbxd + lightarcdnleftbxd + lightarcupleftbxd + lightarcuprightbxd + lightdiaguprightdnleftbxd + lightdiagupleftdnrightbxd + lightdiagcrossbxd + lightleftbxd + lightupbxd + lightrightbxd + lightdnbxd + heavyleftbxd + heavyupbxd + heavyrightbxd + heavydnbxd + lightleftheavyrightbxd + lightupheavydnbxd + heavyleftlightrightbxd + heavyuplightdnbxd + uphalfblock + dneighthblock + dnquarterblock + dnthreeeighthsblock + dnhalfblock + dnfiveeighthsblock + dnthreequartersblock + dnseveneighthsblock + fullblock + leftseveneighthsblock + leftthreequartersblock + leftfiveeighthsblock + lefthalfblock + leftthreeeighthsblock + leftquarterblock + lefteighthblock + righthalfblock + lightshade + mediumshade + darkshade + upeighthblock + righteighthblock + dnleftquadrant + dnrightquadrant + upleftquadrant + upleftdnleftdnrightquadrant + upleftdnrightquadrant + upleftuprightdnleftquadrant + upleftuprightdnrightquadrant + uprightquadrant + uprightdnleftquadrant + uprightdnleftdnrightquadrant + ligspacer + equal.start + equal.middle + equal.end + hyphen.start + hyphen.middle + hyphen.end + underscore.start + underscore.middle + underscore.end + numbersign.start + numbersign.middle + numbersign.end + period_equal.liga + period_period_equal.liga + period_hyphen.liga + colon_equal.liga + equal_equal.liga + exclam_equal.liga + equal_equal_equal.liga + exclam_equal_equal.liga + less_hyphen_less.liga + less_less_hyphen.liga + less_hyphen.liga + less_hyphen_greater.liga + hyphen_greater.liga + hyphen_greater_greater.liga + greater_hyphen_greater.liga + less_equal_less.liga + less_less_equal.liga + less_equal_greater.liga + equal_greater.liga + less_equal.liga + equal_greater_greater.liga + greater_equal_greater.liga + greater_equal.liga + greater_greater_equal.liga + greater_greater_hyphen.liga + greater_hyphen.liga + less_asciitilde_greater.liga + hyphen_less.liga + hyphen_less_less.liga + equal_less.liga + equal_less_less.liga + less_asciitilde_asciitilde.liga + less_asciitilde.liga + asciitilde_asciitilde.liga + asciitilde_greater.liga + asciitilde_asciitilde_greater + less_exclam_hyphen_hyphen.liga + slash_equal.liga + hyphen_bar.liga + bar_hyphen.liga + bar_equal.liga + hyphen_bar_bar.liga + bar_bar_hyphen.liga + equal_bar_bar.liga + bar_bar_equal.liga + equal_bar.liga + slash_slash_equal.liga + equal_slash.liga + equal_slash_slash.liga + equal_colon_equal.middle + equal_exclam_equal.middle + underscore_bar_underscore.m + hyphen_bar_hyphen.middle + equal_bar_equal.middle + hyphen_greater_hyphen.middle + hyphen_greater_greater_hyphen.m + equal_slash_slash_equal.middle + equal_slash_equal.middle + hyphen_bar_bar_hyphen.middle + equal_bar_bar_equal.middle + hyphen_less_hyphen.middle + hyphen_less_less_hyphen.middle + equal_greater_equal.middle + equal_less_equal.middle + equal_greater_greater_equal.m + equal_less_less_equal.middle + less_hyphen.start + greater_hyphen.start + bar_hyphen.start + less_equal.start + greater_equal.start + bar_equal.start + slash_equal.start + slash_slash_equal.start + less_less_hyphen.start + greater_greater_hyphen.start + bar_bar_hyphen.start + less_less_equal.start + greater_greater_equal.start + bar_bar_equal.start + hyphen_less.end + hyphen_greater.end + hyphen_bar.end + equal_less.end + equal_greater.end + equal_bar.end + hyphen_less_less.end + hyphen_greater_greater.end + hyphen_bar_bar.end + equal_less_less.end + equal_greater_greater.end + equal_bar_bar.end + equal_slash.end + equal_slash_slash.end + less_less_less.liga + less_less.liga + less_equal + less_greater.liga + greater_equal + greater_greater.liga + greater_greater_greater.liga + braceleft_bar.liga + bracketleft_bar.liga + less_colon.liga + colon_less.liga + greater_colon.liga + colon_greater.liga + bar_braceright.liga + bar_bracketright.liga + less_bar_bar_bar.liga + less_bar_bar.liga + less_bar.liga + less_bar_greater.liga + bar_greater.liga + bar_bar_greater.liga + bar_bar_bar_greater.liga + less_dollar.liga + less_dollar_greater.liga + dollar_greater.liga + less_plus.liga + less_plus_greater.liga + plus_greater.liga + less_asterisk.liga + less_asterisk_greater.liga + asterisk_greater.liga + slash_asterisk.liga + asterisk_slash.liga + slash_slash_slash.liga + slash_slash.liga + less_slash.liga + less_slash_greater.liga + slash_greater.liga + semicolon_semicolon.liga + colon_colon.liga + colon_colon_colon.liga + period_period.liga + period_period_period.liga + period_period_less.liga + exclam_exclam.liga + question_question.liga + percent_percent.liga + ampersand_ampersand.liga + bar_bar.liga + question_period.liga + question_colon.liga + plus_plus.liga + plus_plus_plus.liga + hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga + asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga + equal_asciitilde.liga + exclam_asciitilde.liga + asciitilde_hyphen.liga + w_w_w.liga + hyphen_asciitilde.liga + asciitilde_at.liga + asciicircum_equal.liga + question_equal.liga + numbersign_exclam.liga + numbersign_equal.liga + numbersign_colon.liga + numbersign_braceleft.liga + numbersign_bracketleft.liga + bracketright_numbersign.liga + numbersign_parenleft.liga + numbersign_question.liga + numbersign_underscore.liga + numbersign_underscore_parenleft + backslash_slash.liga + bar_bar_bar.liga + colon_colon_equal.liga + exclam_exclam_period.liga + period_question.liga + slash_backslash.liga + uniE0A0 + uniE0A1 + uniE0A2 + uniE0B0 + uniE0B1 + uniE0B2 + uniE0B3 + uni2610 + uni2611 + uni2612 + uni2713 + + public.postscriptNames + + Abreveacute + uni1EAE + Abrevedotbelow + uni1EB6 + Abrevegrave + uni1EB0 + Abrevehookabove + uni1EB2 + Abrevetilde + uni1EB4 + Acaron + uni01CD + Acircumflexacute + uni1EA4 + Acircumflexdotbelow + uni1EAC + Acircumflexgrave + uni1EA6 + Acircumflexhookabove + uni1EA8 + Acircumflextilde + uni1EAA + Adotaccent + uni0226 + Adotbelow + uni1EA0 + Ahookabove + uni1EA2 + Blinebelow + uni1E06 + Dcircumflexbelow + uni1E12 + Ddotbelow + uni1E0C + Dlinebelow + uni1E0E + Ecircumflexacute + uni1EBE + Ecircumflexdotbelow + uni1EC6 + Ecircumflexgrave + uni1EC0 + Ecircumflexhookabove + uni1EC2 + Ecircumflextilde + uni1EC4 + Edotbelow + uni1EB8 + Ehookabove + uni1EBA + Etilde + uni1EBC + Gcommaaccent + uni0122 + Gmacron + uni1E20 + Hbrevebelow + uni1E2A + Hcedilla + uni1E28 + Hdotbelow + uni1E24 + Icaron + uni01CF + Idotbelow + uni1ECA + Ihookabove + uni1EC8 + Kcommaaccent + uni0136 + Kdotbelow + uni1E32 + Klinebelow + uni1E34 + L.dot + Ldot + Lcircumflexbelow + uni1E3C + Lcommaaccent + uni013B + Ldotbelow + uni1E36 + Llinebelow + uni1E3A + Lmacrondotbelow + uni1E38 + Macute + uni1E3E + Mdotaccent + uni1E40 + Mdotbelow + uni1E42 + Ncircumflexbelow + uni1E4A + Ncommaaccent + uni0145 + Ndotaccent + uni1E44 + Ndotbelow + uni1E46 + Ngrave + uni01F8 + Nlinebelow + uni1E48 + Ocaron + uni01D1 + Ocircumflexacute + uni1ED0 + Ocircumflexdotbelow + uni1ED8 + Ocircumflexgrave + uni1ED2 + Ocircumflexhookabove + uni1ED4 + Ocircumflextilde + uni1ED6 + Odotaccent + uni022E + Odotbelow + uni1ECC + Ohookabove + uni1ECE + Ohornacute + uni1EDA + Ohorndotbelow + uni1EE2 + Ohorngrave + uni1EDC + Ohornhookabove + uni1EDE + Ohorntilde + uni1EE0 + Oogonek + uni01EA + Rcommaaccent + uni0156 + Rdotaccent + uni1E58 + Rdotbelow + uni1E5A + Rlinebelow + uni1E5E + Rmacrondotbelow + uni1E5C + Scedilla + uni015E + Schwa + uni018F + Scommaaccent + uni0218 + Sdotbelow + uni1E62 + Tcedilla + uni0162 + Tcircumflexbelow + uni1E70 + Tcommaaccent + uni021A + Tdotbelow + uni1E6C + Tlinebelow + uni1E6E + Ucaron + uni01D3 + Udieresisacute + uni01D7 + Udieresiscaron + uni01D9 + Udieresisgrave + uni01DB + Udieresismacron + uni01D5 + Udotbelow + uni1EE4 + Uhookabove + uni1EE6 + Uhornacute + uni1EE8 + Uhorndotbelow + uni1EF0 + Uhorngrave + uni1EEA + Uhornhookabove + uni1EEC + Uhorntilde + uni1EEE + Vdotbelow + uni1E7E + Xdieresis + uni1E8C + Ydotaccent + uni1E8E + Ydotbelow + uni1EF4 + Yhookabove + uni1EF6 + Ymacron + uni0232 + Ytilde + uni1EF8 + Zcircumflex + uni1E90 + Zdotbelow + uni1E92 + Zlinebelow + uni1E94 + abreveacute + uni1EAF + abrevedotbelow + uni1EB7 + abrevegrave + uni1EB1 + abrevehookabove + uni1EB3 + abrevetilde + uni1EB5 + acaron + uni01CE + acircumflexacute + uni1EA5 + acircumflexdotbelow + uni1EAD + acircumflexgrave + uni1EA7 + acircumflexhookabove + uni1EA9 + acircumflextilde + uni1EAB + acutecmb + uni0301 + acutecmb.cap + uni0301.cap + adotaccent + uni0227 + adotbelow + uni1EA1 + ahookabove + uni1EA3 + apostrophemod + uni02BC + bahtthai + uni0E3F + blinebelow + uni1E07 + breveacute + uni02D80301 + breveacute.cap + uni02D80301.cap + brevebelowcmb + uni032E + brevecmb + uni0306 + brevecmb.cap + uni0306.cap + brevegrave + uni02D80300 + brevegrave.cap + uni02D80300.cap + brevehook + uni02D80309 + brevehook.cap + uni02D80309.cap + brevetilde + uni02D80303 + brevetilde.cap + uni02D80303.cap + caroncmb + uni030C + caroncmb.cap + uni030C.cap + cedillacmb + uni0327 + circumflexacute + uni02C60301 + circumflexacute.cap + uni02C60301.cap + circumflexbelowcmb + uni032D + circumflexcmb + uni0302 + circumflexcmb.cap + uni0302.cap + circumflexgrave + uni02C60300 + circumflexgrave.cap + uni02C60300.cap + circumflexhook + uni02C60309 + circumflexhook.cap + uni02C60309.cap + circumflextilde + uni02C60303 + circumflextilde.cap + uni02C60303.cap + commaaboverightcmb + uni0315 + commaturnedabovecmb + uni0312 + commaturnedmod + uni02BB + dblprimemod + uni02BA + dcircumflexbelow + uni1E13 + ddotbelow + uni1E0D + dieresisacute + uni00A80301 + dieresisacute.cap + uni00A80301.cap + dieresisbelowcmb + uni0324 + dieresiscaron + uni00A8030C + dieresiscaron.cap + uni00A8030C.cap + dieresiscmb + uni0308 + dieresiscmb.cap + uni0308.cap + dieresisgrave + uni00A80300 + dieresisgrave.cap + uni00A80300.cap + dieresismacron + uni00A80304 + dieresismacron.cap + uni00A80304.cap + dlinebelow + uni1E0F + dotaccentcmb + uni0307 + dotaccentcmb.cap + uni0307.cap + dotbelowcmb + uni0323 + dotlessj + uni0237 + ecircumflexacute + uni1EBF + ecircumflexdotbelow + uni1EC7 + ecircumflexgrave + uni1EC1 + ecircumflexhookabove + uni1EC3 + ecircumflextilde + uni1EC5 + edotbelow + uni1EB9 + ehookabove + uni1EBB + etilde + uni1EBD + gcommaaccent + uni0123 + gmacron + uni1E21 + gravecmb + uni0300 + gravecmb.cap + uni0300.cap + guillemetleft + uni00AB + guillemetright + uni00BB + hbrevebelow + uni1E2B + hcedilla + uni1E29 + hdotbelow + uni1E25 + hlinebelow + uni1E96 + hookcmb + uni0309 + hookcmb.cap + uni0309.cap + horizontalbar + uni2015 + hungarumlautcmb + uni030B + hungarumlautcmb.cap + uni030B.cap + icaron + uni01D0 + idotaccent + i.dot + idotbelow + uni1ECB + ihookabove + uni1EC9 + jcaron + uni01F0 + kcommaaccent + uni0137 + kdotbelow + uni1E33 + klinebelow + uni1E35 + l.dot + ldot + lcircumflexbelow + uni1E3D + lcommaaccent + uni013C + ldotbelow + uni1E37 + llinebelow + uni1E3B + lmacrondotbelow + uni1E39 + macronbelowcmb + uni0331 + macroncmb + uni0304 + macroncmb.cap + uni0304.cap + macronlowmod + uni02CD + macute + uni1E3F + mdotaccent + uni1E41 + mdotbelow + uni1E43 + naira + uni20A6 + ncircumflexbelow + uni1E4B + ncommaaccent + uni0146 + ndotaccent + uni1E45 + ndotbelow + uni1E47 + ngrave + uni01F9 + nlinebelow + uni1E49 + ocaron + uni01D2 + ocircumflexacute + uni1ED1 + ocircumflexdotbelow + uni1ED9 + ocircumflexgrave + uni1ED3 + ocircumflexhookabove + uni1ED5 + ocircumflextilde + uni1ED7 + odotaccent + uni022F + odotbelow + uni1ECD + ogonekcmb + uni0328 + ohookabove + uni1ECF + ohornacute + uni1EDB + ohorndotbelow + uni1EE3 + ohorngrave + uni1EDD + ohornhookabove + uni1EDF + ohorntilde + uni1EE1 + oogonek + uni01EB + peso + uni20B1 + primemod + uni02B9 + published + uni2117 + rcommaaccent + uni0157 + rdotaccent + uni1E59 + rdotbelow + uni1E5B + ringcmb + uni030A + ringcmb.cap + uni030A.cap + ringhalfleft + uni02BF + ringhalfright + uni02BE + rlinebelow + uni1E5F + rmacrondotbelow + uni1E5D + scedilla + uni015F + schwa + uni0259 + scommaaccent + uni0219 + sdotbelow + uni1E63 + servicemark + uni2120 + tcedilla + uni0163 + tcircumflexbelow + uni1E71 + tcommaaccent + uni021B + tdotbelow + uni1E6D + tildecmb + uni0303 + tildecmb.cap + uni0303.cap + tlinebelow + uni1E6F + twodotleader + uni2025 + ucaron + uni01D4 + udieresisacute + uni01D8 + udieresiscaron + uni01DA + udieresisgrave + uni01DC + udieresismacron + uni01D6 + udotbelow + uni1EE5 + uhookabove + uni1EE7 + uhornacute + uni1EE9 + uhorndotbelow + uni1EF1 + uhorngrave + uni1EEB + uhornhookabove + uni1EED + uhorntilde + uni1EEF + uni1E9E + uni1E9E + vdotbelow + uni1E7F + verticallinelowmod + uni02CC + verticallinemod + uni02C8 + won + uni20A9 + xdieresis + uni1E8D + ydotaccent + uni1E8F + ydotbelow + uni1EF5 + yhookabove + uni1EF7 + ymacron + uni0233 + ytilde + uni1EF9 + zcircumflex + uni1E91 + zdotbelow + uni1E93 + zlinebelow + uni1E95 + + + diff --git a/sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/metainfo.plist b/sources/instances/truetype/IntelOneMono-MediumItalic.ufo/metainfo.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-MediumItalic-quadratic.ufo/metainfo.plist rename to sources/instances/truetype/IntelOneMono-MediumItalic.ufo/metainfo.plist diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/features.fea b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/features.fea deleted file mode 100644 index a32f0139..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/features.fea +++ /dev/null @@ -1,368 +0,0 @@ -# ---------------------------- -# INTEL ONE MONO OPENTYPE CODE -# ---------------------------- - -# ---------------- -# Language Systems -# ---------------- - -languagesystem DFLT dflt; -languagesystem latn dflt; -languagesystem latn TRK; -languagesystem latn AZE; -languagesystem latn CRT; -languagesystem latn CAT; - - -# ------- -# Classes -# ------- - -# Base Letters -@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; -@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; - -# Figures -@fig = [zero one two three four five six seven eight nine]; -@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; -@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; -@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; -@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; - -# Marks Above -@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; -@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; - -# Marks Below -@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; - - -# --------------- -# Localized Forms -# --------------- - -feature locl { - script latn; - language TRK; - lookup iTurkish { - sub i by idotaccent; - } iTurkish; - language AZE; - lookup iTurkish; - language CRT; - lookup iTurkish; - language CAT; - sub l periodcentered' l by middotcat; - sub L periodcentered' L by middotcat.cap; - # try fusing them - sub L middotcat.cap by L.dot; - sub L middotcat by L.dot; - sub l middotcat by l.dot; -} locl; - - -# --------------------------------- -# Glyph Composition / Decomposition -# --------------------------------- - -feature ccmp { - - # Decompose unicode lowercase characters whose uppercase counterparts have no unicode. - lookup Decomp { - sub hlinebelow by h macronlowmod; - sub jcaron by j caron; - } Decomp; - - # Replace double above accents by combined drawings. - lookup DblMarks { - sub dieresiscmb acutecmb by dieresisacute; - sub dieresiscmb gravecmb by dieresisgrave; - sub dieresiscmb caroncmb by dieresiscaron; - sub dieresiscmb macroncmb by dieresismacron; - sub brevecmb acutecmb by breveacute; - sub brevecmb gravecmb by brevegrave; - sub brevecmb hookcmb by brevehook; - sub brevecmb tildecmb by brevetilde; - sub circumflexcmb acutecmb by circumflexacute; - sub circumflexcmb gravecmb by circumflexgrave; - sub circumflexcmb hookcmb by circumflexhook; - sub circumflexcmb tildecmb by circumflextilde; - # capital forms - sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; - sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; - sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; - sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; - sub brevecmb.cap acutecmb.cap by breveacute.cap; - sub brevecmb.cap gravecmb.cap by brevegrave.cap; - sub brevecmb.cap hookcmb.cap by brevehook.cap; - sub brevecmb.cap tildecmb.cap by brevetilde.cap; - sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; - sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; - sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; - sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; - } DblMarks; - - # Replace combining marks that follow a uppercase letter by their uppercase form - lookup CapitalMarks { - sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; - sub [@ltrUC] [@lcMarks]' by [@ucMarks]; - } CapitalMarks; - - # Replace letters with dotless counterparts when followed by a combining mark - lookup Dotless { - sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; - sub [i j]' [@lcMarks] by [dotlessi dotlessj]; - } Dotless; - - # Replace e ogonek with pre-drawn eogonek - lookup eogonek { - sub e ogonekcmb by eogonek; - } eogonek; - -} ccmp; - - -# ---------- -# Numerators -# ---------- - -feature numr { - sub @fig by @figNum; -} numr; - -# ------------ -# Denominators -# ------------ - -feature dnom { - sub @fig by @figDen; -} dnom; - -# ----------- -# Superscript -# ----------- - -feature sups { - sub @fig by @figSup; -} sups; - -# --------------------- -# Subscript & Inferiors -# --------------------- - -feature subs { - sub @fig by @figInf; -} subs; - -feature sinf { - sub @fig by @figInf; -} sinf; - - -# --------------------- -# Contextual Alternates -# --------------------- - -feature calt { - # shifts colon to align with math symbols when used together - - sub colon' [plus equal greater less hyphen] by colon.fig; - sub [plus equal less greater hyphen] colon' by colon.fig; - - sub colon' [colon colon.fig] by colon.fig; - sub colon.fig colon' by colon.fig; - -} calt; - - -# -------------- -# Stylistic Sets -# -------------- - -feature ss11 { - featureNames { - name "Raised Colon (Figures Only)"; # Windows English - name 1 0 0 "Raised Colon (Figures Only)"; # Mac English - }; - lookup FigureColonContextual { - sub @fig colon' @fig by colon.fig; - } FigureColonContextual; -} ss11; - -feature ss12 { - featureNames { - name "Raised Colon (Global)"; # Windows English - name 1 0 0 "Raised Colon (Global)"; # Mac English - }; - lookup FigureColon { - sub colon by colon.fig; - } FigureColon; -} ss12; - - -# -------------------- -# Stylistic Alternates -# -------------------- - -feature salt { - lookup FigureColon; # SS12 -} salt; - - -# --------------------------------------------------------------------- -# MARK | Generated: November 23, 2022 - 02:38:03 PM by 'markFeature.py' -# --------------------------------------------------------------------- - -markClass [acutecmb caroncmb circumflexcmb dieresiscmb dotaccentcmb gravecmb macroncmb tildecmb] @mark_aboveLC; -markClass [acutecmb.cap caroncmb.cap circumflexcmb.cap dieresiscmb.cap dotaccentcmb.cap gravecmb.cap macroncmb.cap tildecmb.cap] @mark_aboveUC; -markClass [dieresisbelowcmb dotbelowcmb macronbelowcmb] @mark_below; -markClass [cedillacmb] @mark_belowcedilla; -markClass [ogonekcmb] @mark_belowogonek; - -feature mark { - - lookup aboveLC{ - pos base [a] mark @mark_aboveLC; - pos base [c] mark @mark_aboveLC; - pos base [dotlessi] mark @mark_aboveLC; - pos base [dotlessj] mark @mark_aboveLC; - pos base [e] mark @mark_aboveLC; - pos base [eogonek] mark @mark_aboveLC; - pos base [g] mark @mark_aboveLC; - pos base [m] mark @mark_aboveLC; - pos base [n] mark @mark_aboveLC; - pos base [o] mark @mark_aboveLC; - pos base [p] mark @mark_aboveLC; - pos base [s] mark @mark_aboveLC; - pos base [u] mark @mark_aboveLC; - pos base [z] mark @mark_aboveLC; - } aboveLC; - - lookup aboveUC{ - pos base [A] mark @mark_aboveUC; - pos base [C] mark @mark_aboveUC; - pos base [E] mark @mark_aboveUC; - pos base [Eogonek] mark @mark_aboveUC; - pos base [G] mark @mark_aboveUC; - pos base [I] mark @mark_aboveUC; - pos base [J] mark @mark_aboveUC; - pos base [M] mark @mark_aboveUC; - pos base [N] mark @mark_aboveUC; - pos base [O] mark @mark_aboveUC; - pos base [P] mark @mark_aboveUC; - pos base [S] mark @mark_aboveUC; - pos base [U] mark @mark_aboveUC; - pos base [Z] mark @mark_aboveUC; - } aboveUC; - - lookup below{ - pos base [C] mark @mark_below; - pos base [Dcroat] mark @mark_below; - pos base [E] mark @mark_below; - pos base [H] mark @mark_below; - pos base [I] mark @mark_below; - pos base [O] mark @mark_below; - pos base [S] mark @mark_below; - pos base [U] mark @mark_below; - pos base [X] mark @mark_below; - pos base [Z] mark @mark_below; - pos base [c] mark @mark_below; - pos base [dcroat] mark @mark_below; - pos base [dotlessi] mark @mark_below; - pos base [e] mark @mark_below; - pos base [h] mark @mark_below; - pos base [o] mark @mark_below; - pos base [s] mark @mark_below; - pos base [u] mark @mark_below; - pos base [x] mark @mark_below; - pos base [z] mark @mark_below; - } below; - - lookup belowcedilla{ - pos base [Z] mark @mark_belowcedilla; - pos base [z] mark @mark_belowcedilla; - } belowcedilla; - - lookup belowogonek{ - pos base [A] mark @mark_belowogonek; - pos base [E] mark @mark_belowogonek; - pos base [I] mark @mark_belowogonek; - pos base [O] mark @mark_belowogonek; - pos base [U] mark @mark_belowogonek; - pos base [a] mark @mark_belowogonek; - pos base [dotlessi] mark @mark_belowogonek; - pos base [e] mark @mark_belowogonek; - pos base [o] mark @mark_belowogonek; - pos base [u] mark @mark_belowogonek; - } belowogonek; - -} mark; - -@BASES = [A C Dcroat E Eogonek G H I J M N O P S U X Z a c dcroat dotlessi dotlessj e eogonek g h m n o p s u x z]; -@MARKS = [@mark_aboveLC @mark_aboveUC @mark_below @mark_belowcedilla @mark_belowogonek]; - -table GDEF { - GlyphClassDef @BASES,,@MARKS,; -} GDEF; - - -# -------------- -# All Alternates -# -------------- - -feature aalt { - sub germandbls from [germandbls uni1E9E]; - sub uni1E9E from [uni1E9E germandbls]; - sub colon from [colon colon.fig]; - sub colon.fig from [colon.fig colon]; - sub eight from [eight eight.den eight.sup eight.num eight.inf]; - sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; - sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; - sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; - sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; - sub five from [five five.inf five.num five.den five.sup]; - sub five.sup from [five.sup five five.inf five.num five.den]; - sub five.den from [five.den five.sup five five.inf five.num]; - sub five.num from [five.num five.den five.sup five five.inf]; - sub five.inf from [five.inf five.num five.den five.sup five]; - sub four from [four four.sup four.num four.den four.inf]; - sub four.inf from [four.inf four four.sup four.num four.den]; - sub four.den from [four.den four.inf four four.sup four.num]; - sub four.num from [four.num four.den four.inf four four.sup]; - sub four.sup from [four.sup four.num four.den four.inf four]; - sub nine from [nine nine.den nine.inf nine.num nine.sup]; - sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; - sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; - sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; - sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; - sub one from [one one.den one.num one.inf one.sup]; - sub one.sup from [one.sup one one.den one.num one.inf]; - sub one.inf from [one.inf one.sup one one.den one.num]; - sub one.num from [one.num one.inf one.sup one one.den]; - sub one.den from [one.den one.num one.inf one.sup one]; - sub seven from [seven seven.inf seven.num seven.sup seven.den]; - sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; - sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; - sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; - sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; - sub six from [six six.num six.sup six.den six.inf]; - sub six.inf from [six.inf six six.num six.sup six.den]; - sub six.den from [six.den six.inf six six.num six.sup]; - sub six.sup from [six.sup six.den six.inf six six.num]; - sub six.num from [six.num six.sup six.den six.inf six]; - sub three from [three three.inf three.den three.num three.sup]; - sub three.sup from [three.sup three three.inf three.den three.num]; - sub three.num from [three.num three.sup three three.inf three.den]; - sub three.den from [three.den three.num three.sup three three.inf]; - sub three.inf from [three.inf three.den three.num three.sup three]; - sub two from [two two.inf two.sup two.num two.den]; - sub two.den from [two.den two two.inf two.sup two.num]; - sub two.num from [two.num two.den two two.inf two.sup]; - sub two.sup from [two.sup two.num two.den two two.inf]; - sub two.inf from [two.inf two.sup two.num two.den two]; - sub zero from [zero zero.sup zero.num zero.den zero.inf]; - sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; - sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; - sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; - sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; -} aalt; diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/fontinfo.plist b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/fontinfo.plist deleted file mode 100644 index e1be8385..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/fontinfo.plist +++ /dev/null @@ -1,379 +0,0 @@ - - - - - ascender - 740 - capHeight - 655 - copyright - Copyright 2023 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) - descender - -260 - familyName - Intel One Mono - guidelines - - italicAngle - 0.0 - openTypeHeadFlags - - 0 - 1 - - openTypeHheaAscender - 1090 - openTypeHheaDescender - -290 - openTypeHheaLineGap - 0 - openTypeNameDesigner - Fred Shallcrass - openTypeNameDesignerURL - http://frerejones.com - openTypeNameLicense - This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL - openTypeNameLicenseURL - https://github.com/intel/intel-one-mono/blob/main/license - openTypeNameManufacturer - Frere-Jones Type LLC - openTypeNameManufacturerURL - http://frerejones.com - openTypeNameRecords - - - encodingID - 0 - languageID - 0 - nameID - 0 - platformID - 1 - string - (C) 2023 Intel Corporation - - - encodingID - 1 - languageID - 1033 - nameID - 0 - platformID - 3 - string - (C) 2023 Intel Corporation - - - encodingID - 0 - languageID - 0 - nameID - 1 - platformID - 1 - string - Intel One Mono - - - encodingID - 1 - languageID - 1033 - nameID - 1 - platformID - 3 - string - Intel One Mono - - - encodingID - 0 - languageID - 0 - nameID - 2 - platformID - 1 - string - Regular - - - encodingID - 1 - languageID - 1033 - nameID - 2 - platformID - 3 - string - Regular - - - encodingID - 0 - languageID - 0 - nameID - 4 - platformID - 1 - string - Intel One Mono - - - encodingID - 1 - languageID - 1033 - nameID - 4 - platformID - 3 - string - Intel One Mono - - - encodingID - 0 - languageID - 0 - nameID - 6 - platformID - 1 - string - IntelOneMono-Regular - - - encodingID - 1 - languageID - 1033 - nameID - 6 - platformID - 3 - string - IntelOneMono-Regular - - - encodingID - 0 - languageID - 0 - nameID - 8 - platformID - 1 - string - Frere-Jones Type LLC - - - encodingID - 1 - languageID - 1033 - nameID - 8 - platformID - 3 - string - Frere-Jones Type LLC - - - encodingID - 0 - languageID - 0 - nameID - 9 - platformID - 1 - string - Fred Shallcrass - - - encodingID - 1 - languageID - 1033 - nameID - 9 - platformID - 3 - string - Fred Shallcrass - - - encodingID - 0 - languageID - 0 - nameID - 11 - platformID - 1 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 11 - platformID - 3 - string - http://frerejones.com - - - encodingID - 0 - languageID - 0 - nameID - 12 - platformID - 1 - string - http://frerejones.com - - - encodingID - 1 - languageID - 1033 - nameID - 12 - platformID - 3 - string - http://frerejones.com - - - openTypeOS2CodePageRanges - - 0 - 1 - 4 - 7 - 8 - 29 - - openTypeOS2Panose - - 2 - 11 - 5 - 9 - 2 - 2 - 3 - 2 - 2 - 4 - - openTypeOS2Selection - - 7 - 8 - - openTypeOS2StrikeoutPosition - 286 - openTypeOS2StrikeoutSize - 50 - openTypeOS2Type - - openTypeOS2TypoAscender - 1090 - openTypeOS2TypoDescender - -290 - openTypeOS2TypoLineGap - 0 - openTypeOS2UnicodeRanges - - 0 - 1 - 2 - 29 - 32 - - openTypeOS2VendorID - FRJN - openTypeOS2WeightClass - 400 - openTypeOS2WidthClass - 5 - openTypeOS2WinAscent - 1090 - openTypeOS2WinDescent - 290 - postscriptBlueFuzz - 0 - postscriptBlueScale - 0.05 - postscriptBlueValues - - -15 - 0 - 465 - 480 - 655 - 670 - 710 - 725 - - postscriptDefaultWidthX - 614 - postscriptFamilyBlues - - postscriptFamilyOtherBlues - - postscriptFontName - IntelOneMono-Regular - postscriptForceBold - - postscriptFullName - Intel One Mono Regular - postscriptIsFixedPitch - - postscriptOtherBlues - - -245 - -230 - - postscriptStemSnapH - - 72 - - postscriptStemSnapV - - 86 - - postscriptUnderlinePosition - -75 - postscriptUnderlineThickness - 50 - styleMapFamilyName - Intel One Mono - styleMapStyleName - regular - styleName - Regular - unitsPerEm - 1000 - versionMajor - 1 - versionMinor - 3 - xHeight - 465 - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_.dot.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_.dot.glif deleted file mode 100644 index 26d1b503..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_.dot.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_E_.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_E_.glif deleted file mode 100644 index a95ecf26..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_E_.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_breve.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_breve.glif deleted file mode 100644 index ecdf13d2..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_breve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_caron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_caron.glif deleted file mode 100644 index 911d44b1..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_circumflex.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_circumflex.glif deleted file mode 100644 index 39a2db79..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_circumflexacute.glif deleted file mode 100644 index 464c4153..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_circumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_circumflexdotbelow.glif deleted file mode 100644 index 01380574..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_circumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_circumflexgrave.glif deleted file mode 100644 index b8067676..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_circumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_circumflexhookabove.glif deleted file mode 100644 index 91bcfd51..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_circumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_circumflextilde.glif deleted file mode 100644 index 0edf1d56..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_circumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_dieresis.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_dieresis.glif deleted file mode 100644 index 644c2c86..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_dotaccent.glif deleted file mode 100644 index a31f49f7..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_dotbelow.glif deleted file mode 100644 index 4b4d4a96..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_hookabove.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_hookabove.glif deleted file mode 100644 index 6bc2faed..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_horn.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_horn.glif deleted file mode 100644 index b8369442..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_horn.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_hornacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_hornacute.glif deleted file mode 100644 index 4c5241eb..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_hornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_horndotbelow.glif deleted file mode 100644 index 9df0eca4..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_horndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_horngrave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_horngrave.glif deleted file mode 100644 index 23668cc6..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_horngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_hornhookabove.glif deleted file mode 100644 index 81077682..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_hornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_horntilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_horntilde.glif deleted file mode 100644 index df2091cc..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_horntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_macron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_macron.glif deleted file mode 100644 index 8661346a..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_ogonek.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_ogonek.glif deleted file mode 100644 index 7941644e..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_ogonek.glif +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_slash.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_slash.glif deleted file mode 100644 index d8d36b3c..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_slash.glif +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_tilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_tilde.glif deleted file mode 100644 index 7df0dcf5..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_acute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_acute.glif deleted file mode 100644 index e2a78d31..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_caron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_caron.glif deleted file mode 100644 index 34c9f24d..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_commaaccent.glif deleted file mode 100644 index b35de147..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_dotaccent.glif deleted file mode 100644 index 464bdfdc..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_dotbelow.glif deleted file mode 100644 index fd5f8a28..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_linebelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_linebelow.glif deleted file mode 100644 index c68cf86b..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_macrondotbelow.glif deleted file mode 100644 index de99ce7c..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_macrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_acute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_acute.glif deleted file mode 100644 index 28bd5fac..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_caron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_caron.glif deleted file mode 100644 index 37308192..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_cedilla.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_cedilla.glif deleted file mode 100644 index 7da7c485..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_cedilla.glif +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_chwa.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_chwa.glif deleted file mode 100644 index f2b1f2d4..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_chwa.glif +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_circumflex.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_circumflex.glif deleted file mode 100644 index a7f9649f..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_commaaccent.glif deleted file mode 100644 index 82d2405e..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_dotbelow.glif deleted file mode 100644 index 30bb714f..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_caron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_caron.glif deleted file mode 100644 index 9478200a..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_cedilla.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_cedilla.glif deleted file mode 100644 index ff463c93..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_cedilla.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_circumflexbelow.glif deleted file mode 100644 index e4239a57..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_circumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_commaaccent.glif deleted file mode 100644 index 13c9077c..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_commaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_dotbelow.glif deleted file mode 100644 index e4571cca..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_horn.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_horn.glif deleted file mode 100644 index 58d0578d..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_horn.glif +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_linebelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_linebelow.glif deleted file mode 100644 index 8cbacb06..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_acute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_acute.glif deleted file mode 100644 index aa7e40e0..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_breve.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_breve.glif deleted file mode 100644 index 2d75fcd2..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_breve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_caron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_caron.glif deleted file mode 100644 index a518822d..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_circumflex.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_circumflex.glif deleted file mode 100644 index a790e335..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_dieresis.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_dieresis.glif deleted file mode 100644 index a6d22fd5..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_dieresisacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_dieresisacute.glif deleted file mode 100644 index ce10b66d..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_dieresisacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_dieresiscaron.glif deleted file mode 100644 index da612539..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_dieresiscaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_dieresisgrave.glif deleted file mode 100644 index 877c3631..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_dieresisgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_dieresismacron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_dieresismacron.glif deleted file mode 100644 index 7ad542b1..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_dieresismacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_dotbelow.glif deleted file mode 100644 index 92e6fae5..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_grave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_grave.glif deleted file mode 100644 index d27e9ec0..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_hookabove.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_hookabove.glif deleted file mode 100644 index 5a7b97cf..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_horn.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_horn.glif deleted file mode 100644 index d8103819..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_horn.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_hornacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_hornacute.glif deleted file mode 100644 index b3dff414..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_hornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_horndotbelow.glif deleted file mode 100644 index 654c67ae..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_horndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_horngrave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_horngrave.glif deleted file mode 100644 index 7c31ea4d..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_horngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_hornhookabove.glif deleted file mode 100644 index 0cd806c5..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_hornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_horntilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_horntilde.glif deleted file mode 100644 index 1822b4fa..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_horntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_hungarumlaut.glif deleted file mode 100644 index 2fb78f3e..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_hungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_macron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_macron.glif deleted file mode 100644 index f0eb5564..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_ogonek.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_ogonek.glif deleted file mode 100644 index 69bbcfcd..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_ogonek.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_ring.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_ring.glif deleted file mode 100644 index 349ebf10..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_ring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_tilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_tilde.glif deleted file mode 100644 index 52835fdf..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/V_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/V_dotbelow.glif deleted file mode 100644 index c4163b5b..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/V_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/W_acute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/W_acute.glif deleted file mode 100644 index eff2da56..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/W_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/W_circumflex.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/W_circumflex.glif deleted file mode 100644 index d51dcbeb..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/W_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/W_dieresis.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/W_dieresis.glif deleted file mode 100644 index a1dbedd3..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/W_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/W_grave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/W_grave.glif deleted file mode 100644 index feb2e8e7..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/W_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/X_dieresis.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/X_dieresis.glif deleted file mode 100644 index b0987408..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/X_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_acute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_acute.glif deleted file mode 100644 index 0e6f52c4..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_circumflex.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_circumflex.glif deleted file mode 100644 index 6cf29d8c..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_dieresis.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_dieresis.glif deleted file mode 100644 index c3ceee4e..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_dieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_dotaccent.glif deleted file mode 100644 index 16a48a32..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_dotbelow.glif deleted file mode 100644 index e6bf8cef..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_grave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_grave.glif deleted file mode 100644 index 562872f5..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_grave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_hookabove.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_hookabove.glif deleted file mode 100644 index bca2c704..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_hookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_macron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_macron.glif deleted file mode 100644 index 004eecc4..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_macron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_tilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_tilde.glif deleted file mode 100644 index 47f238f0..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_tilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Z_acute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Z_acute.glif deleted file mode 100644 index 0def0439..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Z_acute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Z_caron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Z_caron.glif deleted file mode 100644 index 88b836e8..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Z_caron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Z_circumflex.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Z_circumflex.glif deleted file mode 100644 index fc55ea46..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Z_circumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Z_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Z_dotaccent.glif deleted file mode 100644 index 930d55c9..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Z_dotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Z_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Z_dotbelow.glif deleted file mode 100644 index 4dc8d84a..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Z_dotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Z_linebelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Z_linebelow.glif deleted file mode 100644 index 992c713d..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Z_linebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/aacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/aacute.glif deleted file mode 100644 index 300d759e..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/aacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/abreve.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/abreve.glif deleted file mode 100644 index 77420075..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/abreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/abreveacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/abreveacute.glif deleted file mode 100644 index e57f437f..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/abreveacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/abrevedotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/abrevedotbelow.glif deleted file mode 100644 index 2ba23435..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/abrevedotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/abrevegrave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/abrevegrave.glif deleted file mode 100644 index cb979579..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/abrevegrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/abrevehookabove.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/abrevehookabove.glif deleted file mode 100644 index 37d1a45e..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/abrevehookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/abrevetilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/abrevetilde.glif deleted file mode 100644 index 1bfe32cd..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/abrevetilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acaron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acaron.glif deleted file mode 100644 index cd2716fd..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acircumflex.glif deleted file mode 100644 index 0d718865..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acircumflexacute.glif deleted file mode 100644 index 77b2877d..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acircumflexdotbelow.glif deleted file mode 100644 index 4b5b703c..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acircumflexgrave.glif deleted file mode 100644 index 0bde750c..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acircumflexhookabove.glif deleted file mode 100644 index 683d3753..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acircumflextilde.glif deleted file mode 100644 index e10a55a5..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/adieresis.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/adieresis.glif deleted file mode 100644 index 8fdc1de4..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/adieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/adotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/adotaccent.glif deleted file mode 100644 index 671e6c03..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/adotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/adotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/adotbelow.glif deleted file mode 100644 index 7b0172ad..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/adotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ae.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ae.glif deleted file mode 100644 index 0311409e..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ae.glif +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/agrave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/agrave.glif deleted file mode 100644 index c6a8d586..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/agrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ahookabove.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ahookabove.glif deleted file mode 100644 index f9f126da..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ahookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/amacron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/amacron.glif deleted file mode 100644 index af3213cf..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/amacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/aogonek.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/aogonek.glif deleted file mode 100644 index 23708799..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/aogonek.glif +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/aring.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/aring.glif deleted file mode 100644 index 8186901a..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/aring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/atilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/atilde.glif deleted file mode 100644 index fb77740c..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/atilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/blinebelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/blinebelow.glif deleted file mode 100644 index 3434b8d9..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/blinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/breveacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/breveacute.glif deleted file mode 100644 index 8f5f03c5..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/breveacute.glif +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevegrave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevegrave.glif deleted file mode 100644 index 9adaff51..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevegrave.glif +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevehook.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevehook.glif deleted file mode 100644 index 06f4989a..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevehook.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevetilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevetilde.glif deleted file mode 100644 index e3e9f7c3..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevetilde.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/cacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/cacute.glif deleted file mode 100644 index 6ae28b6a..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/cacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ccaron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ccaron.glif deleted file mode 100644 index 6c3520a6..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ccaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ccedilla.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ccedilla.glif deleted file mode 100644 index 8c811e5d..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ccedilla.glif +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ccircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ccircumflex.glif deleted file mode 100644 index 34712529..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ccircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/cdotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/cdotaccent.glif deleted file mode 100644 index 19425f6e..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/cdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflexhook.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflexhook.glif deleted file mode 100644 index 576f9824..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflexhook.glif +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflextilde.glif deleted file mode 100644 index 52e8865d..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflextilde.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/commaturnedabovecmb.glif deleted file mode 100644 index 494858d1..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/commaturnedabovecmb.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/contents.plist b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/contents.plist deleted file mode 100644 index 9b3fa25c..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/contents.plist +++ /dev/null @@ -1,1374 +0,0 @@ - - - - - .notdef - _notdef.glif - A - A_.glif - AE - A_E_.glif - Aacute - A_acute.glif - Abreve - A_breve.glif - Abreveacute - A_breveacute.glif - Abrevedotbelow - A_brevedotbelow.glif - Abrevegrave - A_brevegrave.glif - Abrevehookabove - A_brevehookabove.glif - Abrevetilde - A_brevetilde.glif - Acaron - A_caron.glif - Acircumflex - A_circumflex.glif - Acircumflexacute - A_circumflexacute.glif - Acircumflexdotbelow - A_circumflexdotbelow.glif - Acircumflexgrave - A_circumflexgrave.glif - Acircumflexhookabove - A_circumflexhookabove.glif - Acircumflextilde - A_circumflextilde.glif - Adieresis - A_dieresis.glif - Adotaccent - A_dotaccent.glif - Adotbelow - A_dotbelow.glif - Agrave - A_grave.glif - Ahookabove - A_hookabove.glif - Amacron - A_macron.glif - Aogonek - A_ogonek.glif - Aring - A_ring.glif - Atilde - A_tilde.glif - B - B_.glif - Blinebelow - B_linebelow.glif - C - C_.glif - Cacute - C_acute.glif - Ccaron - C_caron.glif - Ccedilla - C_cedilla.glif - Ccircumflex - C_circumflex.glif - Cdotaccent - C_dotaccent.glif - D - D_.glif - Dcaron - D_caron.glif - Dcircumflexbelow - D_circumflexbelow.glif - Dcroat - D_croat.glif - Ddotbelow - D_dotbelow.glif - Dlinebelow - D_linebelow.glif - E - E_.glif - Eacute - E_acute.glif - Ebreve - E_breve.glif - Ecaron - E_caron.glif - Ecircumflex - E_circumflex.glif - Ecircumflexacute - E_circumflexacute.glif - Ecircumflexdotbelow - E_circumflexdotbelow.glif - Ecircumflexgrave - E_circumflexgrave.glif - Ecircumflexhookabove - E_circumflexhookabove.glif - Ecircumflextilde - E_circumflextilde.glif - Edieresis - E_dieresis.glif - Edotaccent - E_dotaccent.glif - Edotbelow - E_dotbelow.glif - Egrave - E_grave.glif - Ehookabove - E_hookabove.glif - Emacron - E_macron.glif - Eng - E_ng.glif - Eogonek - E_ogonek.glif - Eth - E_th.glif - Etilde - E_tilde.glif - Euro - E_uro.glif - F - F_.glif - G - G_.glif - Gbreve - G_breve.glif - Gcaron - G_caron.glif - Gcircumflex - G_circumflex.glif - Gcommaaccent - G_commaaccent.glif - Gdotaccent - G_dotaccent.glif - Gmacron - G_macron.glif - H - H_.glif - Hbar - H_bar.glif - Hbrevebelow - H_brevebelow.glif - Hcedilla - H_cedilla.glif - Hcircumflex - H_circumflex.glif - Hdotbelow - H_dotbelow.glif - I - I_.glif - Iacute - I_acute.glif - Ibreve - I_breve.glif - Icaron - I_caron.glif - Icircumflex - I_circumflex.glif - Idieresis - I_dieresis.glif - Idotaccent - I_dotaccent.glif - Idotbelow - I_dotbelow.glif - Igrave - I_grave.glif - Ihookabove - I_hookabove.glif - Imacron - I_macron.glif - Iogonek - I_ogonek.glif - Itilde - I_tilde.glif - J - J_.glif - Jcircumflex - J_circumflex.glif - K - K_.glif - Kcommaaccent - K_commaaccent.glif - Kdotbelow - K_dotbelow.glif - Klinebelow - K_linebelow.glif - L - L_.glif - L.dot - L_.dot.glif - Lacute - L_acute.glif - Lcaron - L_caron.glif - Lcircumflexbelow - L_circumflexbelow.glif - Lcommaaccent - L_commaaccent.glif - Ldotbelow - L_dotbelow.glif - Llinebelow - L_linebelow.glif - Lmacrondotbelow - L_macrondotbelow.glif - Lslash - L_slash.glif - M - M_.glif - Macute - M_acute.glif - Mdotaccent - M_dotaccent.glif - Mdotbelow - M_dotbelow.glif - N - N_.glif - Nacute - N_acute.glif - Ncaron - N_caron.glif - Ncircumflexbelow - N_circumflexbelow.glif - Ncommaaccent - N_commaaccent.glif - Ndotaccent - N_dotaccent.glif - Ndotbelow - N_dotbelow.glif - Ngrave - N_grave.glif - Nlinebelow - N_linebelow.glif - Ntilde - N_tilde.glif - O - O_.glif - OE - O_E_.glif - Oacute - O_acute.glif - Obreve - O_breve.glif - Ocaron - O_caron.glif - Ocircumflex - O_circumflex.glif - Ocircumflexacute - O_circumflexacute.glif - Ocircumflexdotbelow - O_circumflexdotbelow.glif - Ocircumflexgrave - O_circumflexgrave.glif - Ocircumflexhookabove - O_circumflexhookabove.glif - Ocircumflextilde - O_circumflextilde.glif - Odieresis - O_dieresis.glif - Odotaccent - O_dotaccent.glif - Odotbelow - O_dotbelow.glif - Ograve - O_grave.glif - Ohookabove - O_hookabove.glif - Ohorn - O_horn.glif - Ohornacute - O_hornacute.glif - Ohorndotbelow - O_horndotbelow.glif - Ohorngrave - O_horngrave.glif - Ohornhookabove - O_hornhookabove.glif - Ohorntilde - O_horntilde.glif - Ohungarumlaut - O_hungarumlaut.glif - Omacron - O_macron.glif - Oogonek - O_ogonek.glif - Oslash - O_slash.glif - Otilde - O_tilde.glif - P - P_.glif - Q - Q_.glif - R - R_.glif - Racute - R_acute.glif - Rcaron - R_caron.glif - Rcommaaccent - R_commaaccent.glif - Rdotaccent - R_dotaccent.glif - Rdotbelow - R_dotbelow.glif - Rlinebelow - R_linebelow.glif - Rmacrondotbelow - R_macrondotbelow.glif - S - S_.glif - Sacute - S_acute.glif - Scaron - S_caron.glif - Scedilla - S_cedilla.glif - Schwa - S_chwa.glif - Scircumflex - S_circumflex.glif - Scommaaccent - S_commaaccent.glif - Sdotbelow - S_dotbelow.glif - T - T_.glif - Tbar - T_bar.glif - Tcaron - T_caron.glif - Tcedilla - T_cedilla.glif - Tcircumflexbelow - T_circumflexbelow.glif - Tcommaaccent - T_commaaccent.glif - Tdotbelow - T_dotbelow.glif - Thorn - T_horn.glif - Tlinebelow - T_linebelow.glif - U - U_.glif - Uacute - U_acute.glif - Ubreve - U_breve.glif - Ucaron - U_caron.glif - Ucircumflex - U_circumflex.glif - Udieresis - U_dieresis.glif - Udieresisacute - U_dieresisacute.glif - Udieresiscaron - U_dieresiscaron.glif - Udieresisgrave - U_dieresisgrave.glif - Udieresismacron - U_dieresismacron.glif - Udotbelow - U_dotbelow.glif - Ugrave - U_grave.glif - Uhookabove - U_hookabove.glif - Uhorn - U_horn.glif - Uhornacute - U_hornacute.glif - Uhorndotbelow - U_horndotbelow.glif - Uhorngrave - U_horngrave.glif - Uhornhookabove - U_hornhookabove.glif - Uhorntilde - U_horntilde.glif - Uhungarumlaut - U_hungarumlaut.glif - Umacron - U_macron.glif - Uogonek - U_ogonek.glif - Uring - U_ring.glif - Utilde - U_tilde.glif - V - V_.glif - Vdotbelow - V_dotbelow.glif - W - W_.glif - Wacute - W_acute.glif - Wcircumflex - W_circumflex.glif - Wdieresis - W_dieresis.glif - Wgrave - W_grave.glif - X - X_.glif - Xdieresis - X_dieresis.glif - Y - Y_.glif - Yacute - Y_acute.glif - Ycircumflex - Y_circumflex.glif - Ydieresis - Y_dieresis.glif - Ydotaccent - Y_dotaccent.glif - Ydotbelow - Y_dotbelow.glif - Ygrave - Y_grave.glif - Yhookabove - Y_hookabove.glif - Ymacron - Y_macron.glif - Ytilde - Y_tilde.glif - Z - Z_.glif - Zacute - Z_acute.glif - Zcaron - Z_caron.glif - Zcircumflex - Z_circumflex.glif - Zdotaccent - Z_dotaccent.glif - Zdotbelow - Z_dotbelow.glif - Zlinebelow - Z_linebelow.glif - a - a.glif - aacute - aacute.glif - abreve - abreve.glif - abreveacute - abreveacute.glif - abrevedotbelow - abrevedotbelow.glif - abrevegrave - abrevegrave.glif - abrevehookabove - abrevehookabove.glif - abrevetilde - abrevetilde.glif - acaron - acaron.glif - acircumflex - acircumflex.glif - acircumflexacute - acircumflexacute.glif - acircumflexdotbelow - acircumflexdotbelow.glif - acircumflexgrave - acircumflexgrave.glif - acircumflexhookabove - acircumflexhookabove.glif - acircumflextilde - acircumflextilde.glif - acute - acute.glif - acutecmb - acutecmb.glif - acutecmb.cap - acutecmb.cap.glif - adieresis - adieresis.glif - adotaccent - adotaccent.glif - adotbelow - adotbelow.glif - ae - ae.glif - agrave - agrave.glif - ahookabove - ahookabove.glif - amacron - amacron.glif - ampersand - ampersand.glif - aogonek - aogonek.glif - apostrophemod - apostrophemod.glif - approxequal - approxequal.glif - aring - aring.glif - asciicircum - asciicircum.glif - asciitilde - asciitilde.glif - asterisk - asterisk.glif - at - at.glif - atilde - atilde.glif - b - b.glif - backslash - backslash.glif - bahtthai - bahtthai.glif - bar - bar.glif - blinebelow - blinebelow.glif - braceleft - braceleft.glif - braceright - braceright.glif - bracketleft - bracketleft.glif - bracketright - bracketright.glif - breve - breve.glif - breveacute - breveacute.glif - breveacute.cap - breveacute.cap.glif - brevebelowcmb - brevebelowcmb.glif - brevecmb - brevecmb.glif - brevecmb.cap - brevecmb.cap.glif - brevegrave - brevegrave.glif - brevegrave.cap - brevegrave.cap.glif - brevehook - brevehook.glif - brevehook.cap - brevehook.cap.glif - brevetilde - brevetilde.glif - brevetilde.cap - brevetilde.cap.glif - bullet - bullet.glif - c - c.glif - cacute - cacute.glif - caron - caron.glif - caroncmb - caroncmb.glif - caroncmb.cap - caroncmb.cap.glif - ccaron - ccaron.glif - ccedilla - ccedilla.glif - ccircumflex - ccircumflex.glif - cdotaccent - cdotaccent.glif - cedilla - cedilla.glif - cedillacmb - cedillacmb.glif - cent - cent.glif - circumflex - circumflex.glif - circumflexacute - circumflexacute.glif - circumflexacute.cap - circumflexacute.cap.glif - circumflexbelowcmb - circumflexbelowcmb.glif - circumflexcmb - circumflexcmb.glif - circumflexcmb.cap - circumflexcmb.cap.glif - circumflexgrave - circumflexgrave.glif - circumflexgrave.cap - circumflexgrave.cap.glif - circumflexhook - circumflexhook.glif - circumflexhook.cap - circumflexhook.cap.glif - circumflextilde - circumflextilde.glif - circumflextilde.cap - circumflextilde.cap.glif - colon - colon.glif - colon.fig - colon.fig.glif - comma - comma.glif - commaaboverightcmb - commaaboverightcmb.glif - commaturnedabovecmb - commaturnedabovecmb.glif - commaturnedmod - commaturnedmod.glif - copyright - copyright.glif - d - d.glif - dagger - dagger.glif - daggerdbl - daggerdbl.glif - dblprimemod - dblprimemod.glif - dcaron - dcaron.glif - dcircumflexbelow - dcircumflexbelow.glif - dcroat - dcroat.glif - ddotbelow - ddotbelow.glif - degree - degree.glif - dieresis - dieresis.glif - dieresisacute - dieresisacute.glif - dieresisacute.cap - dieresisacute.cap.glif - dieresisbelowcmb - dieresisbelowcmb.glif - dieresiscaron - dieresiscaron.glif - dieresiscaron.cap - dieresiscaron.cap.glif - dieresiscmb - dieresiscmb.glif - dieresiscmb.cap - dieresiscmb.cap.glif - dieresisgrave - dieresisgrave.glif - dieresisgrave.cap - dieresisgrave.cap.glif - dieresismacron - dieresismacron.glif - dieresismacron.cap - dieresismacron.cap.glif - divide - divide.glif - dlinebelow - dlinebelow.glif - dollar - dollar.glif - dong - dong.glif - dotaccent - dotaccent.glif - dotaccentcmb - dotaccentcmb.glif - dotaccentcmb.cap - dotaccentcmb.cap.glif - dotbelowcmb - dotbelowcmb.glif - dotlessi - dotlessi.glif - dotlessj - dotlessj.glif - e - e.glif - eacute - eacute.glif - ebreve - ebreve.glif - ecaron - ecaron.glif - ecircumflex - ecircumflex.glif - ecircumflexacute - ecircumflexacute.glif - ecircumflexdotbelow - ecircumflexdotbelow.glif - ecircumflexgrave - ecircumflexgrave.glif - ecircumflexhookabove - ecircumflexhookabove.glif - ecircumflextilde - ecircumflextilde.glif - edieresis - edieresis.glif - edotaccent - edotaccent.glif - edotbelow - edotbelow.glif - egrave - egrave.glif - ehookabove - ehookabove.glif - eight - eight.glif - eight.den - eight.den.glif - eight.inf - eight.inf.glif - eight.num - eight.num.glif - eight.sup - eight.sup.glif - ellipsis - ellipsis.glif - emacron - emacron.glif - emdash - emdash.glif - endash - endash.glif - eng - eng.glif - eogonek - eogonek.glif - equal - equal.glif - eth - eth.glif - etilde - etilde.glif - exclam - exclam.glif - exclamdown - exclamdown.glif - f - f.glif - five - five.glif - five.den - five.den.glif - five.inf - five.inf.glif - five.num - five.num.glif - five.sup - five.sup.glif - fiveeighths - fiveeighths.glif - fivesixths - fivesixths.glif - four - four.glif - four.den - four.den.glif - four.inf - four.inf.glif - four.num - four.num.glif - four.sup - four.sup.glif - fourfifths - fourfifths.glif - fracbar - fracbar.glif - fraction - fraction.glif - g - g.glif - gbreve - gbreve.glif - gcaron - gcaron.glif - gcircumflex - gcircumflex.glif - gcommaaccent - gcommaaccent.glif - gdotaccent - gdotaccent.glif - germandbls - germandbls.glif - gmacron - gmacron.glif - grave - grave.glif - gravecmb - gravecmb.glif - gravecmb.cap - gravecmb.cap.glif - greater - greater.glif - greaterequal - greaterequal.glif - guillemetleft - guillemetleft.glif - guillemetright - guillemetright.glif - guilsinglleft - guilsinglleft.glif - guilsinglright - guilsinglright.glif - h - h.glif - hbar - hbar.glif - hbrevebelow - hbrevebelow.glif - hcedilla - hcedilla.glif - hcircumflex - hcircumflex.glif - hdotbelow - hdotbelow.glif - hlinebelow - hlinebelow.glif - hookcmb - hookcmb.glif - hookcmb.cap - hookcmb.cap.glif - horizontalbar - horizontalbar.glif - hungarumlaut - hungarumlaut.glif - hungarumlautcmb - hungarumlautcmb.glif - hungarumlautcmb.cap - hungarumlautcmb.cap.glif - hyphen - hyphen.glif - i - i.glif - iacute - iacute.glif - ibreve - ibreve.glif - icaron - icaron.glif - icircumflex - icircumflex.glif - idieresis - idieresis.glif - idotaccent - idotaccent.glif - idotbelow - idotbelow.glif - igrave - igrave.glif - ihookabove - ihookabove.glif - imacron - imacron.glif - iogonek - iogonek.glif - itilde - itilde.glif - j - j.glif - jcaron - jcaron.glif - jcircumflex - jcircumflex.glif - k - k.glif - kcommaaccent - kcommaaccent.glif - kdotbelow - kdotbelow.glif - klinebelow - klinebelow.glif - l - l.glif - l.dot - l.dot.glif - lacute - lacute.glif - lcaron - lcaron.glif - lcircumflexbelow - lcircumflexbelow.glif - lcommaaccent - lcommaaccent.glif - ldotbelow - ldotbelow.glif - less - less.glif - lessequal - lessequal.glif - llinebelow - llinebelow.glif - lmacrondotbelow - lmacrondotbelow.glif - lslash - lslash.glif - m - m.glif - macron - macron.glif - macronbelowcmb - macronbelowcmb.glif - macroncmb - macroncmb.glif - macroncmb.cap - macroncmb.cap.glif - macronlowmod - macronlowmod.glif - macute - macute.glif - mdotaccent - mdotaccent.glif - mdotbelow - mdotbelow.glif - middotcat - middotcat.glif - middotcat.cap - middotcat.cap.glif - minus - minus.glif - mu - mu.glif - multiply - multiply.glif - n - n.glif - nacute - nacute.glif - naira - naira.glif - ncaron - ncaron.glif - ncircumflexbelow - ncircumflexbelow.glif - ncommaaccent - ncommaaccent.glif - ndotaccent - ndotaccent.glif - ndotbelow - ndotbelow.glif - ngrave - ngrave.glif - nine - nine.glif - nine.den - nine.den.glif - nine.inf - nine.inf.glif - nine.num - nine.num.glif - nine.sup - nine.sup.glif - nlinebelow - nlinebelow.glif - notequal - notequal.glif - ntilde - ntilde.glif - numbersign - numbersign.glif - o - o.glif - oacute - oacute.glif - obreve - obreve.glif - ocaron - ocaron.glif - ocircumflex - ocircumflex.glif - ocircumflexacute - ocircumflexacute.glif - ocircumflexdotbelow - ocircumflexdotbelow.glif - ocircumflexgrave - ocircumflexgrave.glif - ocircumflexhookabove - ocircumflexhookabove.glif - ocircumflextilde - ocircumflextilde.glif - odieresis - odieresis.glif - odotaccent - odotaccent.glif - odotbelow - odotbelow.glif - oe - oe.glif - ogonek - ogonek.glif - ogonekcmb - ogonekcmb.glif - ograve - ograve.glif - ohookabove - ohookabove.glif - ohorn - ohorn.glif - ohornacute - ohornacute.glif - ohorndotbelow - ohorndotbelow.glif - ohorngrave - ohorngrave.glif - ohornhookabove - ohornhookabove.glif - ohorntilde - ohorntilde.glif - ohungarumlaut - ohungarumlaut.glif - omacron - omacron.glif - one - one.glif - one.den - one.den.glif - one.inf - one.inf.glif - one.num - one.num.glif - one.sup - one.sup.glif - oneeighth - oneeighth.glif - onefifth - onefifth.glif - onehalf - onehalf.glif - onequarter - onequarter.glif - onesixth - onesixth.glif - onethird - onethird.glif - oogonek - oogonek.glif - ordfeminine - ordfeminine.glif - ordmasculine - ordmasculine.glif - oslash - oslash.glif - otilde - otilde.glif - p - p.glif - paragraph - paragraph.glif - parenleft - parenleft.glif - parenright - parenright.glif - percent - percent.glif - period - period.glif - periodcentered - periodcentered.glif - peso - peso.glif - plus - plus.glif - plusminus - plusminus.glif - primemod - primemod.glif - published - published.glif - q - q.glif - question - question.glif - questiondown - questiondown.glif - quotedbl - quotedbl.glif - quotedblbase - quotedblbase.glif - quotedblleft - quotedblleft.glif - quotedblright - quotedblright.glif - quoteleft - quoteleft.glif - quoteright - quoteright.glif - quotesinglbase - quotesinglbase.glif - quotesingle - quotesingle.glif - r - r.glif - racute - racute.glif - rcaron - rcaron.glif - rcommaaccent - rcommaaccent.glif - rdotaccent - rdotaccent.glif - rdotbelow - rdotbelow.glif - registered - registered.glif - ring - ring.glif - ringcmb - ringcmb.glif - ringcmb.cap - ringcmb.cap.glif - ringhalfleft - ringhalfleft.glif - ringhalfright - ringhalfright.glif - rlinebelow - rlinebelow.glif - rmacrondotbelow - rmacrondotbelow.glif - s - s.glif - sacute - sacute.glif - scaron - scaron.glif - scedilla - scedilla.glif - schwa - schwa.glif - scircumflex - scircumflex.glif - scommaaccent - scommaaccent.glif - sdotbelow - sdotbelow.glif - section - section.glif - semicolon - semicolon.glif - servicemark - servicemark.glif - seven - seven.glif - seven.den - seven.den.glif - seven.inf - seven.inf.glif - seven.num - seven.num.glif - seven.sup - seven.sup.glif - seveneighths - seveneighths.glif - six - six.glif - six.den - six.den.glif - six.inf - six.inf.glif - six.num - six.num.glif - six.sup - six.sup.glif - slash - slash.glif - space - space.glif - sterling - sterling.glif - t - t.glif - tbar - tbar.glif - tcaron - tcaron.glif - tcedilla - tcedilla.glif - tcircumflexbelow - tcircumflexbelow.glif - tcommaaccent - tcommaaccent.glif - tdotbelow - tdotbelow.glif - thorn - thorn.glif - three - three.glif - three.den - three.den.glif - three.inf - three.inf.glif - three.num - three.num.glif - three.sup - three.sup.glif - threeeighths - threeeighths.glif - threefifths - threefifths.glif - threequarters - threequarters.glif - tilde - tilde.glif - tildecmb - tildecmb.glif - tildecmb.cap - tildecmb.cap.glif - tlinebelow - tlinebelow.glif - trademark - trademark.glif - two - two.glif - two.den - two.den.glif - two.inf - two.inf.glif - two.num - two.num.glif - two.sup - two.sup.glif - twodotleader - twodotleader.glif - twofifths - twofifths.glif - twothirds - twothirds.glif - u - u.glif - uacute - uacute.glif - ubreve - ubreve.glif - ucaron - ucaron.glif - ucircumflex - ucircumflex.glif - udieresis - udieresis.glif - udieresisacute - udieresisacute.glif - udieresiscaron - udieresiscaron.glif - udieresisgrave - udieresisgrave.glif - udieresismacron - udieresismacron.glif - udotbelow - udotbelow.glif - ugrave - ugrave.glif - uhookabove - uhookabove.glif - uhorn - uhorn.glif - uhornacute - uhornacute.glif - uhorndotbelow - uhorndotbelow.glif - uhorngrave - uhorngrave.glif - uhornhookabove - uhornhookabove.glif - uhorntilde - uhorntilde.glif - uhungarumlaut - uhungarumlaut.glif - umacron - umacron.glif - underscore - underscore.glif - uni00A0 - uni00A_0.glif - uni0326 - uni0326.glif - uni1E9E - uni1E_9E_.glif - uni2011 - uni2011.glif - uni20B9 - uni20B_9.glif - uni20BA - uni20B_A_.glif - uni20BD - uni20B_D_.glif - uniA788 - uniA_788.glif - uogonek - uogonek.glif - uring - uring.glif - utilde - utilde.glif - v - v.glif - vdotbelow - vdotbelow.glif - verticallinelowmod - verticallinelowmod.glif - verticallinemod - verticallinemod.glif - w - w.glif - wacute - wacute.glif - wcircumflex - wcircumflex.glif - wdieresis - wdieresis.glif - wgrave - wgrave.glif - won - won.glif - x - x.glif - xdieresis - xdieresis.glif - y - y.glif - yacute - yacute.glif - ycircumflex - ycircumflex.glif - ydieresis - ydieresis.glif - ydotaccent - ydotaccent.glif - ydotbelow - ydotbelow.glif - yen - yen.glif - ygrave - ygrave.glif - yhookabove - yhookabove.glif - ymacron - ymacron.glif - ytilde - ytilde.glif - z - z.glif - zacute - zacute.glif - zcaron - zcaron.glif - zcircumflex - zcircumflex.glif - zdotaccent - zdotaccent.glif - zdotbelow - zdotbelow.glif - zero - zero.glif - zero.den - zero.den.glif - zero.inf - zero.inf.glif - zero.num - zero.num.glif - zero.sup - zero.sup.glif - zlinebelow - zlinebelow.glif - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dcaron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dcaron.glif deleted file mode 100644 index 13787bf7..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dcircumflexbelow.glif deleted file mode 100644 index ea406567..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dcroat.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dcroat.glif deleted file mode 100644 index 4863a678..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dcroat.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ddotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ddotbelow.glif deleted file mode 100644 index 2c81d29a..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ddotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresisacute.cap.glif deleted file mode 100644 index 5531b196..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresisacute.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresisacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresisacute.glif deleted file mode 100644 index ef9e7c5c..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresisacute.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresisbelowcmb.glif deleted file mode 100644 index fca2c330..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresisbelowcmb.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresiscaron.cap.glif deleted file mode 100644 index bf5950f2..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresiscaron.cap.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresiscaron.glif deleted file mode 100644 index 881a76ad..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresiscaron.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresisgrave.cap.glif deleted file mode 100644 index d9c32a23..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresisgrave.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresisgrave.glif deleted file mode 100644 index ae2fa61e..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresisgrave.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresismacron.cap.glif deleted file mode 100644 index f7ef4a2e..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresismacron.cap.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresismacron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresismacron.glif deleted file mode 100644 index ed2c8daa..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresismacron.glif +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dlinebelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dlinebelow.glif deleted file mode 100644 index 1b459808..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dotlessj.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dotlessj.glif deleted file mode 100644 index f37e9a51..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dotlessj.glif +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eacute.glif deleted file mode 100644 index 7c6025da..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ebreve.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ebreve.glif deleted file mode 100644 index 5e9286b2..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ebreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecaron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecaron.glif deleted file mode 100644 index 14e4001c..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecircumflex.glif deleted file mode 100644 index f47166c0..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecircumflexacute.glif deleted file mode 100644 index 5156e3c6..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecircumflexdotbelow.glif deleted file mode 100644 index 512bed94..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecircumflexgrave.glif deleted file mode 100644 index 51876dcf..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecircumflexhookabove.glif deleted file mode 100644 index bd63fcd7..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecircumflextilde.glif deleted file mode 100644 index a38fd96f..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ecircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/edieresis.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/edieresis.glif deleted file mode 100644 index 01223df6..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/edieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/edotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/edotaccent.glif deleted file mode 100644 index 76b1ba35..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/edotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/edotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/edotbelow.glif deleted file mode 100644 index c62f8343..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/edotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/egrave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/egrave.glif deleted file mode 100644 index 40b4afc1..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/egrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ehookabove.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ehookabove.glif deleted file mode 100644 index 99a88639..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ehookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eight.num.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eight.num.glif deleted file mode 100644 index 3b295fae..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eight.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/emacron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/emacron.glif deleted file mode 100644 index 2642fbdd..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/emacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eng.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eng.glif deleted file mode 100644 index a23162a7..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eng.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eogonek.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eogonek.glif deleted file mode 100644 index 024cfa89..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eogonek.glif +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eth.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eth.glif deleted file mode 100644 index d5e8590d..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eth.glif +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/etilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/etilde.glif deleted file mode 100644 index c160b09f..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/etilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/five.num.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/five.num.glif deleted file mode 100644 index d531edc8..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/five.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/four.num.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/four.num.glif deleted file mode 100644 index a78544ed..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/four.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gbreve.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gbreve.glif deleted file mode 100644 index 067f1bd0..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gbreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gcaron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gcaron.glif deleted file mode 100644 index e02f19c0..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gcircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gcircumflex.glif deleted file mode 100644 index 0ba925da..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gcommaaccent.glif deleted file mode 100644 index f5ea065d..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gdotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gdotaccent.glif deleted file mode 100644 index dd99de73..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/germandbls.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/germandbls.glif deleted file mode 100644 index e0bdfe17..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/germandbls.glif +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gmacron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gmacron.glif deleted file mode 100644 index b29baab2..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gmacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hbar.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hbar.glif deleted file mode 100644 index 40d1b1f4..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hbar.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hbrevebelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hbrevebelow.glif deleted file mode 100644 index 4ea0f9c8..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hbrevebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hcedilla.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hcedilla.glif deleted file mode 100644 index 4f89ffa5..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hcedilla.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hcircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hcircumflex.glif deleted file mode 100644 index 83f087b0..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hdotbelow.glif deleted file mode 100644 index eb4e9ad8..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hlinebelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hlinebelow.glif deleted file mode 100644 index 050e4c93..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hookcmb.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hookcmb.glif deleted file mode 100644 index 449ab05a..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hookcmb.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/horizontalbar.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/horizontalbar.glif deleted file mode 100644 index 19ce9f0d..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/horizontalbar.glif +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/iacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/iacute.glif deleted file mode 100644 index 4b30d193..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/iacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ibreve.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ibreve.glif deleted file mode 100644 index 38c28c4c..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ibreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/icaron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/icaron.glif deleted file mode 100644 index d3942cc7..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/icaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/icircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/icircumflex.glif deleted file mode 100644 index 90eb87d6..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/icircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/idieresis.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/idieresis.glif deleted file mode 100644 index 698065f8..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/idieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/idotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/idotaccent.glif deleted file mode 100644 index 475ba205..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/idotaccent.glif +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/idotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/idotbelow.glif deleted file mode 100644 index a771154b..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/idotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/igrave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/igrave.glif deleted file mode 100644 index 1b0c663a..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/igrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ihookabove.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ihookabove.glif deleted file mode 100644 index 0c1940db..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ihookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/imacron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/imacron.glif deleted file mode 100644 index 5aefb9fd..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/imacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/iogonek.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/iogonek.glif deleted file mode 100644 index ad6dbc43..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/iogonek.glif +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/itilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/itilde.glif deleted file mode 100644 index cf86ba91..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/itilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/jcaron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/jcaron.glif deleted file mode 100644 index c7216447..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/jcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/jcircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/jcircumflex.glif deleted file mode 100644 index 72d2a8e7..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/jcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/kcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/kcommaaccent.glif deleted file mode 100644 index f772bd29..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/kcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/kdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/kdotbelow.glif deleted file mode 100644 index aaf7d3dc..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/kdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/klinebelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/klinebelow.glif deleted file mode 100644 index d0d9e6be..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/klinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/l.dot.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/l.dot.glif deleted file mode 100644 index 5760ec2d..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/l.dot.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/lacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/lacute.glif deleted file mode 100644 index 0223c651..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/lacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/lcaron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/lcaron.glif deleted file mode 100644 index ef447968..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/lcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/lcircumflexbelow.glif deleted file mode 100644 index 5a7f8f80..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/lcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/lcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/lcommaaccent.glif deleted file mode 100644 index 38284761..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/lcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ldotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ldotbelow.glif deleted file mode 100644 index 55108d9e..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ldotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/llinebelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/llinebelow.glif deleted file mode 100644 index 5e875610..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/llinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/lmacrondotbelow.glif deleted file mode 100644 index 52897f95..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/lmacrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/lslash.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/lslash.glif deleted file mode 100644 index 9bd0e6fe..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/lslash.glif +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/macute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/macute.glif deleted file mode 100644 index 11cd18da..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/macute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/mdotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/mdotaccent.glif deleted file mode 100644 index f185be08..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/mdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/mdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/mdotbelow.glif deleted file mode 100644 index 0d46bea8..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/mdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/middotcat.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/middotcat.glif deleted file mode 100644 index eadeb653..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/middotcat.glif +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/nacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/nacute.glif deleted file mode 100644 index 6e30ebe4..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/nacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ncaron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ncaron.glif deleted file mode 100644 index 02d670c2..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ncaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ncircumflexbelow.glif deleted file mode 100644 index b0427ea2..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ncircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ncommaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ncommaaccent.glif deleted file mode 100644 index 560e3dcd..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ncommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ndotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ndotaccent.glif deleted file mode 100644 index f14aad50..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ndotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ndotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ndotbelow.glif deleted file mode 100644 index 5a2a5b3d..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ngrave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ngrave.glif deleted file mode 100644 index 5bfe8a7c..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/nine.num.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/nine.num.glif deleted file mode 100644 index 67b40ebf..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/nine.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/nlinebelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/nlinebelow.glif deleted file mode 100644 index ec20ebe7..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/nlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ntilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ntilde.glif deleted file mode 100644 index dd83e887..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/oacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/oacute.glif deleted file mode 100644 index 1060d68e..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/oacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/obreve.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/obreve.glif deleted file mode 100644 index e8d8ce44..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/obreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocaron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocaron.glif deleted file mode 100644 index 9ff5a847..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocircumflex.glif deleted file mode 100644 index 44629ea4..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocircumflexacute.glif deleted file mode 100644 index c47e6108..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocircumflexacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocircumflexdotbelow.glif deleted file mode 100644 index 05901524..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocircumflexdotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocircumflexgrave.glif deleted file mode 100644 index eb951869..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocircumflexgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocircumflexhookabove.glif deleted file mode 100644 index 0e6b3305..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocircumflexhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocircumflextilde.glif deleted file mode 100644 index 70af9fab..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ocircumflextilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/odieresis.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/odieresis.glif deleted file mode 100644 index 4dbf7118..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/odieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/odotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/odotaccent.glif deleted file mode 100644 index 3d5af0b9..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/odotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/odotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/odotbelow.glif deleted file mode 100644 index b8af3467..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/odotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/oe.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/oe.glif deleted file mode 100644 index 07f14b18..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/oe.glif +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ograve.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ograve.glif deleted file mode 100644 index 82cd1922..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ograve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohookabove.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohookabove.glif deleted file mode 100644 index a1aef591..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohorn.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohorn.glif deleted file mode 100644 index f7d1b76f..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohorn.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohornacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohornacute.glif deleted file mode 100644 index bf626550..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohorndotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohorndotbelow.glif deleted file mode 100644 index 5af08285..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohorndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohorngrave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohorngrave.glif deleted file mode 100644 index 987f3f23..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohorngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohornhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohornhookabove.glif deleted file mode 100644 index bc10c8e4..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohorntilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohorntilde.glif deleted file mode 100644 index e0b37789..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohorntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohungarumlaut.glif deleted file mode 100644 index cde3df75..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ohungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/omacron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/omacron.glif deleted file mode 100644 index 92757eca..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/omacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/one.num.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/one.num.glif deleted file mode 100644 index 2c736483..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/one.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/oogonek.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/oogonek.glif deleted file mode 100644 index 04221cc3..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/oogonek.glif +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/oslash.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/oslash.glif deleted file mode 100644 index c3ca1a0b..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/oslash.glif +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/otilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/otilde.glif deleted file mode 100644 index 7308c306..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/otilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/racute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/racute.glif deleted file mode 100644 index dd819da1..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/racute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/rcaron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/rcaron.glif deleted file mode 100644 index 0e84de0e..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/rcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/rcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/rcommaaccent.glif deleted file mode 100644 index 8019c2c1..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/rcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/rdotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/rdotaccent.glif deleted file mode 100644 index 500cd54a..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/rdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/rdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/rdotbelow.glif deleted file mode 100644 index c6e18371..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/rdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ringcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ringcmb.cap.glif deleted file mode 100644 index c803df95..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ringcmb.cap.glif +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/rlinebelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/rlinebelow.glif deleted file mode 100644 index 7a20abf9..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/rlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/rmacrondotbelow.glif deleted file mode 100644 index 20c07df2..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/rmacrondotbelow.glif +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component2 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/sacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/sacute.glif deleted file mode 100644 index a9a29fb6..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/sacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/scaron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/scaron.glif deleted file mode 100644 index f8068755..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/scaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/scedilla.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/scedilla.glif deleted file mode 100644 index 8144942b..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/scedilla.glif +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/schwa.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/schwa.glif deleted file mode 100644 index 3ef8d8b6..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/schwa.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/scircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/scircumflex.glif deleted file mode 100644 index 8c8a0103..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/scircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/scommaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/scommaaccent.glif deleted file mode 100644 index 947f617c..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/scommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/sdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/sdotbelow.glif deleted file mode 100644 index 86cedc1a..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/sdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/seven.num.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/seven.num.glif deleted file mode 100644 index 4a2870c3..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/seven.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/six.num.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/six.num.glif deleted file mode 100644 index 5de7ecf5..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/six.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tbar.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tbar.glif deleted file mode 100644 index 82caf6fb..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tbar.glif +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tcaron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tcaron.glif deleted file mode 100644 index 6a11325b..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tcedilla.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tcedilla.glif deleted file mode 100644 index 22ca8987..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tcedilla.glif +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tcircumflexbelow.glif deleted file mode 100644 index 2a95a55c..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tcircumflexbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tcommaaccent.glif deleted file mode 100644 index 1941484c..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tcommaaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tdotbelow.glif deleted file mode 100644 index 0b20cc88..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/thorn.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/thorn.glif deleted file mode 100644 index 9aed6234..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/thorn.glif +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/three.num.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/three.num.glif deleted file mode 100644 index a260e860..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/three.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tlinebelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tlinebelow.glif deleted file mode 100644 index 182c5260..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/two.num.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/two.num.glif deleted file mode 100644 index 76a642f3..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/two.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uacute.glif deleted file mode 100644 index 2f2f429c..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ubreve.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ubreve.glif deleted file mode 100644 index 5898dcf9..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ubreve.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ucaron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ucaron.glif deleted file mode 100644 index 991cb769..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ucaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ucircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ucircumflex.glif deleted file mode 100644 index 6898de97..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ucircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/udieresis.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/udieresis.glif deleted file mode 100644 index ec05b9f3..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/udieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/udieresisacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/udieresisacute.glif deleted file mode 100644 index c978d617..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/udieresisacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/udieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/udieresiscaron.glif deleted file mode 100644 index 6abd48d6..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/udieresiscaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/udieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/udieresisgrave.glif deleted file mode 100644 index bd7736e0..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/udieresisgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/udieresismacron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/udieresismacron.glif deleted file mode 100644 index a6d62416..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/udieresismacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/udotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/udotbelow.glif deleted file mode 100644 index e4f195cb..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/udotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ugrave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ugrave.glif deleted file mode 100644 index 65ea88eb..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ugrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhookabove.glif deleted file mode 100644 index 183bf518..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhorn.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhorn.glif deleted file mode 100644 index aee17839..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhorn.glif +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhornacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhornacute.glif deleted file mode 100644 index 89ab428f..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhornacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhorndotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhorndotbelow.glif deleted file mode 100644 index 3be6673a..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhorndotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhorngrave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhorngrave.glif deleted file mode 100644 index f68c1733..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhorngrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhornhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhornhookabove.glif deleted file mode 100644 index 5a62fa56..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhornhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhorntilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhorntilde.glif deleted file mode 100644 index 8f038a9c..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhorntilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhungarumlaut.glif deleted file mode 100644 index 39f35ee3..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uhungarumlaut.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/umacron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/umacron.glif deleted file mode 100644 index e4ef493b..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/umacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uni1E_9E_.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uni1E_9E_.glif deleted file mode 100644 index c56865d8..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uni1E_9E_.glif +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uni2011.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uni2011.glif deleted file mode 100644 index cb2d7998..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uni2011.glif +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uogonek.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uogonek.glif deleted file mode 100644 index d7055435..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uogonek.glif +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uring.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uring.glif deleted file mode 100644 index 74a15be1..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uring.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/utilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/utilde.glif deleted file mode 100644 index ac8162b1..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/utilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/vdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/vdotbelow.glif deleted file mode 100644 index c5d385cf..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/vdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/wacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/wacute.glif deleted file mode 100644 index bd126a8c..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/wacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/wcircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/wcircumflex.glif deleted file mode 100644 index cce418d0..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/wcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/wdieresis.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/wdieresis.glif deleted file mode 100644 index 6868f0a1..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/wdieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/wgrave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/wgrave.glif deleted file mode 100644 index e5fac723..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/wgrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/xdieresis.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/xdieresis.glif deleted file mode 100644 index 47f3dc77..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/xdieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/yacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/yacute.glif deleted file mode 100644 index 86d8f939..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/yacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ycircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ycircumflex.glif deleted file mode 100644 index 236829c9..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ycircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ydieresis.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ydieresis.glif deleted file mode 100644 index da49414a..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ydieresis.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ydotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ydotaccent.glif deleted file mode 100644 index c5dc8d80..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ydotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ydotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ydotbelow.glif deleted file mode 100644 index 32effa50..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ydotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ygrave.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ygrave.glif deleted file mode 100644 index b3e984e6..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ygrave.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/yhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/yhookabove.glif deleted file mode 100644 index 3a536e02..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/yhookabove.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ymacron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ymacron.glif deleted file mode 100644 index f4d2ee7b..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ymacron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ytilde.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ytilde.glif deleted file mode 100644 index a494e3cd..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ytilde.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zacute.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zacute.glif deleted file mode 100644 index 7de38d46..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zacute.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zcaron.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zcaron.glif deleted file mode 100644 index 43414f60..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zcaron.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zcircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zcircumflex.glif deleted file mode 100644 index 28cf6da5..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zcircumflex.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zdotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zdotaccent.glif deleted file mode 100644 index fb122ae2..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zdotaccent.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zdotbelow.glif deleted file mode 100644 index 6ef5c54f..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zdotbelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zero.num.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zero.num.glif deleted file mode 100644 index eabd1785..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zero.num.glif +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zlinebelow.glif b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zlinebelow.glif deleted file mode 100644 index 57b84373..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zlinebelow.glif +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - public.markColor - 0.7843,0.7843,0.7843,1 - public.objectLibs - - component0 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - component1 - - public.truetype.roundOffsetToGrid - - public.truetype.useMyMetrics - - - - public.truetype.overlap - - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/lib.plist b/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/lib.plist deleted file mode 100644 index 4f7c9c39..00000000 --- a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/lib.plist +++ /dev/null @@ -1,1292 +0,0 @@ - - - - - com.typemytype.robofont.compileSettings.MacRomanFirst - - com.typemytype.robofont.compileSettings.autohint - 1 - com.typemytype.robofont.compileSettings.checkOutlines - 0 - com.typemytype.robofont.compileSettings.createDummyDSIG - - com.typemytype.robofont.compileSettings.decompose - 0 - com.typemytype.robofont.compileSettings.generateFormat - 1 - com.typemytype.robofont.compileSettings.layerName - foreground - com.typemytype.robofont.compileSettings.releaseMode - 1 - com.typemytype.robofont.italicSlantOffset - 0 - com.typemytype.robofont.segmentType - curve - com.typemytype.robofont.shouldAddPointsInSplineConversion - 1 - public.glyphOrder - - .notdef - A - B - C - D - E - F - G - H - I - J - K - L - M - N - O - P - Q - R - S - T - U - V - W - X - Y - Z - a - b - c - d - e - f - g - h - i - j - k - l - m - n - o - p - q - r - s - t - u - v - w - x - y - z - period - comma - colon - semicolon - question - exclam - questiondown - exclamdown - ellipsis - twodotleader - quotedblleft - quotedblright - quotedblbase - quoteleft - quoteright - quotesinglbase - guillemetleft - guillemetright - guilsinglleft - guilsinglright - parenleft - parenright - bracketleft - bracketright - braceleft - braceright - slash - backslash - bar - hyphen - endash - emdash - periodcentered - bullet - underscore - ampersand - at - published - copyright - registered - servicemark - trademark - asterisk - dagger - daggerdbl - section - paragraph - zero - one - two - three - four - five - six - seven - eight - nine - colon.fig - plus - divide - minus - equal - notequal - asciitilde - approxequal - multiply - less - greater - lessequal - greaterequal - plusminus - asciicircum - mu - numbersign - percent - quotedbl - quotesingle - ordfeminine - ordmasculine - degree - dollar - sterling - yen - Euro - naira - peso - uni20BA - uni20BD - uni20B9 - bahtthai - won - cent - dong - onehalf - onethird - twothirds - onequarter - threequarters - onefifth - twofifths - threefifths - fourfifths - onesixth - fivesixths - oneeighth - threeeighths - fiveeighths - seveneighths - zero.sup - one.sup - two.sup - three.sup - four.sup - five.sup - six.sup - seven.sup - eight.sup - nine.sup - zero.inf - one.inf - two.inf - three.inf - four.inf - five.inf - six.inf - seven.inf - eight.inf - nine.inf - primemod - dblprimemod - commaturnedmod - apostrophemod - ringhalfleft - ringhalfright - verticallinemod - verticallinelowmod - acute - hungarumlaut - grave - circumflex - caron - breve - tilde - macron - dieresis - dotaccent - ring - uniA788 - macronlowmod - cedilla - ogonek - Aacute - Agrave - Acircumflex - Acircumflexdotbelow - Acircumflexacute - Acircumflexgrave - Acircumflexhookabove - Acircumflextilde - Acaron - Abreve - Abrevedotbelow - Abreveacute - Abrevegrave - Abrevehookabove - Abrevetilde - Atilde - Amacron - Adieresis - Adotaccent - Aring - Ahookabove - Adotbelow - Aogonek - AE - Blinebelow - Cacute - Ccircumflex - Ccaron - Cdotaccent - Ccedilla - Dcaron - Dcircumflexbelow - Dlinebelow - Ddotbelow - Dcroat - Eacute - Egrave - Ecircumflex - Ecircumflexdotbelow - Ecircumflexacute - Ecircumflexgrave - Ecircumflexhookabove - Ecircumflextilde - Ecaron - Ebreve - Etilde - Emacron - Edieresis - Edotaccent - Ehookabove - Edotbelow - Eogonek - Gcircumflex - Gcaron - Gbreve - Gmacron - Gdotaccent - Gcommaaccent - Hcircumflex - Hbrevebelow - Hdotbelow - Hcedilla - Hbar - Iacute - Igrave - Icircumflex - Icaron - Ibreve - Itilde - Imacron - Idieresis - Idotaccent - Ihookabove - Idotbelow - Iogonek - Jcircumflex - Klinebelow - Kcommaaccent - Kdotbelow - Lacute - Lcaron - Lcommaaccent - Lcircumflexbelow - Llinebelow - Lmacrondotbelow - Ldotbelow - L.dot - Lslash - Macute - Mdotaccent - Mdotbelow - Nacute - Ngrave - Ncaron - Ntilde - Ndotaccent - Ncircumflexbelow - Ncommaaccent - Ndotbelow - Nlinebelow - Eng - Oacute - Ohungarumlaut - Ograve - Ocircumflex - Ocircumflexdotbelow - Ocircumflexacute - Ocircumflexgrave - Ocircumflexhookabove - Ocircumflextilde - Ocaron - Obreve - Otilde - Omacron - Odieresis - Odotaccent - Ohookabove - Odotbelow - Oogonek - Oslash - OE - Ohorn - Ohornacute - Ohorngrave - Ohorntilde - Ohornhookabove - Ohorndotbelow - Racute - Rcaron - Rdotaccent - Rmacrondotbelow - Rcommaaccent - Rdotbelow - Rlinebelow - Sacute - Scircumflex - Scaron - Scommaaccent - Sdotbelow - Scedilla - uni1E9E - Tcaron - Tcircumflexbelow - Tcommaaccent - Tdotbelow - Tlinebelow - Tcedilla - Tbar - Uacute - Uhungarumlaut - Ugrave - Ucircumflex - Ucaron - Ubreve - Utilde - Umacron - Udieresis - Udieresisacute - Udieresisgrave - Udieresiscaron - Udieresismacron - Uring - Uhookabove - Udotbelow - Uogonek - Uhorn - Uhornacute - Uhorngrave - Uhorntilde - Uhornhookabove - Uhorndotbelow - Vdotbelow - Wacute - Wgrave - Wcircumflex - Wdieresis - Xdieresis - Yacute - Ygrave - Ycircumflex - Ytilde - Ymacron - Ydieresis - Ydotaccent - Yhookabove - Ydotbelow - Zacute - Zcircumflex - Zcaron - Zdotaccent - Zdotbelow - Zlinebelow - Eth - Thorn - Schwa - aacute - agrave - acircumflex - acircumflexdotbelow - acircumflexacute - acircumflexgrave - acircumflexhookabove - acircumflextilde - acaron - abreve - abrevedotbelow - abreveacute - abrevegrave - abrevehookabove - abrevetilde - atilde - amacron - adieresis - adotaccent - aring - ahookabove - adotbelow - aogonek - ae - blinebelow - cacute - ccircumflex - ccaron - cdotaccent - ccedilla - dcaron - dcircumflexbelow - dlinebelow - ddotbelow - dcroat - eacute - egrave - ecircumflex - ecircumflexdotbelow - ecircumflexacute - ecircumflexgrave - ecircumflexhookabove - ecircumflextilde - ecaron - ebreve - etilde - emacron - edieresis - edotaccent - ehookabove - edotbelow - eogonek - gcircumflex - gcaron - gbreve - gmacron - gdotaccent - gcommaaccent - hcircumflex - hbrevebelow - hlinebelow - hdotbelow - hcedilla - hbar - dotlessi - iacute - igrave - icircumflex - icaron - ibreve - itilde - imacron - idieresis - idotaccent - ihookabove - idotbelow - iogonek - dotlessj - jcircumflex - jcaron - klinebelow - kcommaaccent - kdotbelow - lacute - lcaron - lcommaaccent - lcircumflexbelow - llinebelow - lmacrondotbelow - ldotbelow - l.dot - lslash - macute - mdotaccent - mdotbelow - nacute - ngrave - ncaron - ntilde - ndotaccent - ncircumflexbelow - ncommaaccent - ndotbelow - nlinebelow - eng - oacute - ohungarumlaut - ograve - ocircumflex - ocircumflexdotbelow - ocircumflexacute - ocircumflexgrave - ocircumflexhookabove - ocircumflextilde - ocaron - obreve - otilde - omacron - odieresis - odotaccent - ohookabove - odotbelow - oogonek - oslash - oe - ohorn - ohornacute - ohorngrave - ohorntilde - ohornhookabove - ohorndotbelow - racute - rcaron - rdotaccent - rmacrondotbelow - rcommaaccent - rdotbelow - rlinebelow - sacute - scircumflex - scaron - scommaaccent - sdotbelow - scedilla - germandbls - tcaron - tcircumflexbelow - tcommaaccent - tdotbelow - tlinebelow - tcedilla - tbar - uacute - uhungarumlaut - ugrave - ucircumflex - ucaron - ubreve - utilde - umacron - udieresis - udieresisacute - udieresisgrave - udieresiscaron - udieresismacron - uring - uhookabove - udotbelow - uogonek - uhorn - uhornacute - uhorngrave - uhorntilde - uhornhookabove - uhorndotbelow - vdotbelow - wacute - wgrave - wcircumflex - wdieresis - xdieresis - yacute - ygrave - ycircumflex - ytilde - ymacron - ydieresis - ydotaccent - yhookabove - ydotbelow - zacute - zcircumflex - zcaron - zdotaccent - zdotbelow - zlinebelow - eth - thorn - schwa - space - uni00A0 - zero.num - one.num - two.num - three.num - four.num - five.num - six.num - seven.num - eight.num - nine.num - fraction - fracbar - zero.den - one.den - two.den - three.den - four.den - five.den - six.den - seven.den - eight.den - nine.den - uni2011 - horizontalbar - middotcat - middotcat.cap - acutecmb - hungarumlautcmb - gravecmb - commaaboverightcmb - circumflexcmb - caroncmb - brevecmb - tildecmb - macroncmb - dieresiscmb - dotaccentcmb - ringcmb - commaturnedabovecmb - hookcmb - circumflexbelowcmb - brevebelowcmb - macronbelowcmb - dieresisbelowcmb - dotbelowcmb - uni0326 - cedillacmb - ogonekcmb - dieresisacute - dieresisgrave - dieresiscaron - dieresismacron - breveacute - brevegrave - brevehook - brevetilde - circumflexacute - circumflexgrave - circumflexhook - circumflextilde - acutecmb.cap - hungarumlautcmb.cap - gravecmb.cap - circumflexcmb.cap - caroncmb.cap - brevecmb.cap - tildecmb.cap - macroncmb.cap - dieresiscmb.cap - dotaccentcmb.cap - ringcmb.cap - hookcmb.cap - dieresisacute.cap - dieresisgrave.cap - dieresiscaron.cap - dieresismacron.cap - breveacute.cap - brevegrave.cap - brevehook.cap - brevetilde.cap - circumflexacute.cap - circumflexgrave.cap - circumflexhook.cap - circumflextilde.cap - - public.postscriptNames - - Abreveacute - uni1EAE - Abrevedotbelow - uni1EB6 - Abrevegrave - uni1EB0 - Abrevehookabove - uni1EB2 - Abrevetilde - uni1EB4 - Acaron - uni01CD - Acircumflexacute - uni1EA4 - Acircumflexdotbelow - uni1EAC - Acircumflexgrave - uni1EA6 - Acircumflexhookabove - uni1EA8 - Acircumflextilde - uni1EAA - Adotaccent - uni0226 - Adotbelow - uni1EA0 - Ahookabove - uni1EA2 - Blinebelow - uni1E06 - Dcircumflexbelow - uni1E12 - Ddotbelow - uni1E0C - Dlinebelow - uni1E0E - Ecircumflexacute - uni1EBE - Ecircumflexdotbelow - uni1EC6 - Ecircumflexgrave - uni1EC0 - Ecircumflexhookabove - uni1EC2 - Ecircumflextilde - uni1EC4 - Edotbelow - uni1EB8 - Ehookabove - uni1EBA - Etilde - uni1EBC - Gcommaaccent - uni0122 - Gmacron - uni1E20 - Hbrevebelow - uni1E2A - Hcedilla - uni1E28 - Hdotbelow - uni1E24 - Icaron - uni01CF - Idotbelow - uni1ECA - Ihookabove - uni1EC8 - Kcommaaccent - uni0136 - Kdotbelow - uni1E32 - Klinebelow - uni1E34 - L.dot - Ldot - Lcircumflexbelow - uni1E3C - Lcommaaccent - uni013B - Ldotbelow - uni1E36 - Llinebelow - uni1E3A - Lmacrondotbelow - uni1E38 - Macute - uni1E3E - Mdotaccent - uni1E40 - Mdotbelow - uni1E42 - Ncircumflexbelow - uni1E4A - Ncommaaccent - uni0145 - Ndotaccent - uni1E44 - Ndotbelow - uni1E46 - Ngrave - uni01F8 - Nlinebelow - uni1E48 - Ocaron - uni01D1 - Ocircumflexacute - uni1ED0 - Ocircumflexdotbelow - uni1ED8 - Ocircumflexgrave - uni1ED2 - Ocircumflexhookabove - uni1ED4 - Ocircumflextilde - uni1ED6 - Odotaccent - uni022E - Odotbelow - uni1ECC - Ohookabove - uni1ECE - Ohornacute - uni1EDA - Ohorndotbelow - uni1EE2 - Ohorngrave - uni1EDC - Ohornhookabove - uni1EDE - Ohorntilde - uni1EE0 - Oogonek - uni01EA - Rcommaaccent - uni0156 - Rdotaccent - uni1E58 - Rdotbelow - uni1E5A - Rlinebelow - uni1E5E - Rmacrondotbelow - uni1E5C - Scedilla - uni015E - Schwa - uni018F - Scommaaccent - uni0218 - Sdotbelow - uni1E62 - Tcedilla - uni0162 - Tcircumflexbelow - uni1E70 - Tcommaaccent - uni021A - Tdotbelow - uni1E6C - Tlinebelow - uni1E6E - Ucaron - uni01D3 - Udieresisacute - uni01D7 - Udieresiscaron - uni01D9 - Udieresisgrave - uni01DB - Udieresismacron - uni01D5 - Udotbelow - uni1EE4 - Uhookabove - uni1EE6 - Uhornacute - uni1EE8 - Uhorndotbelow - uni1EF0 - Uhorngrave - uni1EEA - Uhornhookabove - uni1EEC - Uhorntilde - uni1EEE - Vdotbelow - uni1E7E - Xdieresis - uni1E8C - Ydotaccent - uni1E8E - Ydotbelow - uni1EF4 - Yhookabove - uni1EF6 - Ymacron - uni0232 - Ytilde - uni1EF8 - Zcircumflex - uni1E90 - Zdotbelow - uni1E92 - Zlinebelow - uni1E94 - abreveacute - uni1EAF - abrevedotbelow - uni1EB7 - abrevegrave - uni1EB1 - abrevehookabove - uni1EB3 - abrevetilde - uni1EB5 - acaron - uni01CE - acircumflexacute - uni1EA5 - acircumflexdotbelow - uni1EAD - acircumflexgrave - uni1EA7 - acircumflexhookabove - uni1EA9 - acircumflextilde - uni1EAB - acutecmb - uni0301 - acutecmb.cap - uni0301.cap - adotaccent - uni0227 - adotbelow - uni1EA1 - ahookabove - uni1EA3 - apostrophemod - uni02BC - bahtthai - uni0E3F - blinebelow - uni1E07 - breveacute - uni02D80301 - breveacute.cap - uni02D80301.cap - brevebelowcmb - uni032E - brevecmb - uni0306 - brevecmb.cap - uni0306.cap - brevegrave - uni02D80300 - brevegrave.cap - uni02D80300.cap - brevehook - uni02D80309 - brevehook.cap - uni02D80309.cap - brevetilde - uni02D80303 - brevetilde.cap - uni02D80303.cap - caroncmb - uni030C - caroncmb.cap - uni030C.cap - cedillacmb - uni0327 - circumflexacute - uni02C60301 - circumflexacute.cap - uni02C60301.cap - circumflexbelowcmb - uni032D - circumflexcmb - uni0302 - circumflexcmb.cap - uni0302.cap - circumflexgrave - uni02C60300 - circumflexgrave.cap - uni02C60300.cap - circumflexhook - uni02C60309 - circumflexhook.cap - uni02C60309.cap - circumflextilde - uni02C60303 - circumflextilde.cap - uni02C60303.cap - commaaboverightcmb - uni0315 - commaturnedabovecmb - uni0312 - commaturnedmod - uni02BB - dblprimemod - uni02BA - dcircumflexbelow - uni1E13 - ddotbelow - uni1E0D - dieresisacute - uni00A80301 - dieresisacute.cap - uni00A80301.cap - dieresisbelowcmb - uni0324 - dieresiscaron - uni00A8030C - dieresiscaron.cap - uni00A8030C.cap - dieresiscmb - uni0308 - dieresiscmb.cap - uni0308.cap - dieresisgrave - uni00A80300 - dieresisgrave.cap - uni00A80300.cap - dieresismacron - uni00A80304 - dieresismacron.cap - uni00A80304.cap - dlinebelow - uni1E0F - dotaccentcmb - uni0307 - dotaccentcmb.cap - uni0307.cap - dotbelowcmb - uni0323 - dotlessj - uni0237 - ecircumflexacute - uni1EBF - ecircumflexdotbelow - uni1EC7 - ecircumflexgrave - uni1EC1 - ecircumflexhookabove - uni1EC3 - ecircumflextilde - uni1EC5 - edotbelow - uni1EB9 - ehookabove - uni1EBB - etilde - uni1EBD - gcommaaccent - uni0123 - gmacron - uni1E21 - gravecmb - uni0300 - gravecmb.cap - uni0300.cap - guillemetleft - uni00AB - guillemetright - uni00BB - hbrevebelow - uni1E2B - hcedilla - uni1E29 - hdotbelow - uni1E25 - hlinebelow - uni1E96 - hookcmb - uni0309 - hookcmb.cap - uni0309.cap - horizontalbar - uni2015 - hungarumlautcmb - uni030B - hungarumlautcmb.cap - uni030B.cap - icaron - uni01D0 - idotaccent - i.dot - idotbelow - uni1ECB - ihookabove - uni1EC9 - jcaron - uni01F0 - kcommaaccent - uni0137 - kdotbelow - uni1E33 - klinebelow - uni1E35 - l.dot - ldot - lcircumflexbelow - uni1E3D - lcommaaccent - uni013C - ldotbelow - uni1E37 - llinebelow - uni1E3B - lmacrondotbelow - uni1E39 - macronbelowcmb - uni0331 - macroncmb - uni0304 - macroncmb.cap - uni0304.cap - macronlowmod - uni02CD - macute - uni1E3F - mdotaccent - uni1E41 - mdotbelow - uni1E43 - naira - uni20A6 - ncircumflexbelow - uni1E4B - ncommaaccent - uni0146 - ndotaccent - uni1E45 - ndotbelow - uni1E47 - ngrave - uni01F9 - nlinebelow - uni1E49 - ocaron - uni01D2 - ocircumflexacute - uni1ED1 - ocircumflexdotbelow - uni1ED9 - ocircumflexgrave - uni1ED3 - ocircumflexhookabove - uni1ED5 - ocircumflextilde - uni1ED7 - odotaccent - uni022F - odotbelow - uni1ECD - ogonekcmb - uni0328 - ohookabove - uni1ECF - ohornacute - uni1EDB - ohorndotbelow - uni1EE3 - ohorngrave - uni1EDD - ohornhookabove - uni1EDF - ohorntilde - uni1EE1 - oogonek - uni01EB - peso - uni20B1 - primemod - uni02B9 - published - uni2117 - rcommaaccent - uni0157 - rdotaccent - uni1E59 - rdotbelow - uni1E5B - ringcmb - uni030A - ringcmb.cap - uni030A.cap - ringhalfleft - uni02BF - ringhalfright - uni02BE - rlinebelow - uni1E5F - rmacrondotbelow - uni1E5D - scedilla - uni015F - schwa - uni0259 - scommaaccent - uni0219 - sdotbelow - uni1E63 - servicemark - uni2120 - tcedilla - uni0163 - tcircumflexbelow - uni1E71 - tcommaaccent - uni021B - tdotbelow - uni1E6D - tildecmb - uni0303 - tildecmb.cap - uni0303.cap - tlinebelow - uni1E6F - twodotleader - uni2025 - ucaron - uni01D4 - udieresisacute - uni01D8 - udieresiscaron - uni01DA - udieresisgrave - uni01DC - udieresismacron - uni01D6 - udotbelow - uni1EE5 - uhookabove - uni1EE7 - uhornacute - uni1EE9 - uhorndotbelow - uni1EF1 - uhorngrave - uni1EEB - uhornhookabove - uni1EED - uhorntilde - uni1EEF - uni1E9E - uni1E9E - vdotbelow - uni1E7F - verticallinelowmod - uni02CC - verticallinemod - uni02C8 - won - uni20A9 - xdieresis - uni1E8D - ydotaccent - uni1E8F - ydotbelow - uni1EF5 - yhookabove - uni1EF7 - ymacron - uni0233 - ytilde - uni1EF9 - zcircumflex - uni1E91 - zdotbelow - uni1E93 - zlinebelow - uni1E95 - - - diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/features.fea b/sources/instances/truetype/IntelOneMono-Regular.ufo/features.fea new file mode 100644 index 00000000..167ad64f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/features.fea @@ -0,0 +1,6 @@ + +include(../../features/shared.fea); + +include(../../features/mark/IntelOneMono-Regular mark.fea); + +include(../../features/aalt.fea); diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/fontinfo.plist b/sources/instances/truetype/IntelOneMono-Regular.ufo/fontinfo.plist new file mode 100644 index 00000000..60ddacc2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/fontinfo.plist @@ -0,0 +1,379 @@ + + + + + ascender + 740 + capHeight + 655 + copyright + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + descender + -260 + familyName + Intel One Mono + guidelines + + italicAngle + 0.0 + openTypeHeadFlags + + 0 + 1 + + openTypeHheaAscender + 1090 + openTypeHheaDescender + -290 + openTypeHheaLineGap + 0 + openTypeNameDesigner + Fred Shallcrass + openTypeNameDesignerURL + http://frerejones.com + openTypeNameLicense + This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL + openTypeNameLicenseURL + https://github.com/intel/intel-one-mono/blob/main/license + openTypeNameManufacturer + Frere-Jones Type LLC + openTypeNameManufacturerURL + http://frerejones.com + openTypeNameRecords + + + encodingID + 0 + languageID + 0 + nameID + 0 + platformID + 1 + string + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + + + encodingID + 1 + languageID + 1033 + nameID + 0 + platformID + 3 + string + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + + + encodingID + 0 + languageID + 0 + nameID + 1 + platformID + 1 + string + Intel One Mono + + + encodingID + 1 + languageID + 1033 + nameID + 1 + platformID + 3 + string + Intel One Mono + + + encodingID + 0 + languageID + 0 + nameID + 2 + platformID + 1 + string + Regular + + + encodingID + 1 + languageID + 1033 + nameID + 2 + platformID + 3 + string + Regular + + + encodingID + 0 + languageID + 0 + nameID + 4 + platformID + 1 + string + Intel One Mono + + + encodingID + 1 + languageID + 1033 + nameID + 4 + platformID + 3 + string + Intel One Mono + + + encodingID + 0 + languageID + 0 + nameID + 6 + platformID + 1 + string + IntelOneMono-Regular + + + encodingID + 1 + languageID + 1033 + nameID + 6 + platformID + 3 + string + IntelOneMono-Regular + + + encodingID + 0 + languageID + 0 + nameID + 8 + platformID + 1 + string + Frere-Jones Type LLC + + + encodingID + 1 + languageID + 1033 + nameID + 8 + platformID + 3 + string + Frere-Jones Type LLC + + + encodingID + 0 + languageID + 0 + nameID + 9 + platformID + 1 + string + Fred Shallcrass + + + encodingID + 1 + languageID + 1033 + nameID + 9 + platformID + 3 + string + Fred Shallcrass + + + encodingID + 0 + languageID + 0 + nameID + 11 + platformID + 1 + string + http://frerejones.com + + + encodingID + 1 + languageID + 1033 + nameID + 11 + platformID + 3 + string + http://frerejones.com + + + encodingID + 0 + languageID + 0 + nameID + 12 + platformID + 1 + string + http://frerejones.com + + + encodingID + 1 + languageID + 1033 + nameID + 12 + platformID + 3 + string + http://frerejones.com + + + openTypeOS2CodePageRanges + + 0 + 1 + 4 + 7 + 8 + 29 + + openTypeOS2Panose + + 2 + 11 + 5 + 9 + 2 + 2 + 3 + 2 + 2 + 4 + + openTypeOS2Selection + + 7 + 8 + + openTypeOS2StrikeoutPosition + 286 + openTypeOS2StrikeoutSize + 50 + openTypeOS2Type + + openTypeOS2TypoAscender + 1090 + openTypeOS2TypoDescender + -290 + openTypeOS2TypoLineGap + 0 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 29 + 32 + + openTypeOS2VendorID + FRJN + openTypeOS2WeightClass + 400 + openTypeOS2WidthClass + 5 + openTypeOS2WinAscent + 1090 + openTypeOS2WinDescent + 290 + postscriptBlueFuzz + 0 + postscriptBlueScale + 0.05 + postscriptBlueValues + + -15 + 0 + 465 + 480 + 655 + 670 + 710 + 725 + + postscriptDefaultWidthX + 614 + postscriptFamilyBlues + + postscriptFamilyOtherBlues + + postscriptFontName + IntelOneMono-Regular + postscriptForceBold + + postscriptFullName + Intel One Mono Regular + postscriptIsFixedPitch + + postscriptOtherBlues + + -245 + -230 + + postscriptStemSnapH + + 72 + + postscriptStemSnapV + + 86 + + postscriptUnderlinePosition + -75 + postscriptUnderlineThickness + 50 + styleMapFamilyName + Intel One Mono + styleMapStyleName + regular + styleName + Regular + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 4 + xHeight + 465 + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_E_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_E_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_E_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_E_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_acute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_acute.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_breve.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_breve.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_breveacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_breveacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_breveacute.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_breveacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_brevedotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_brevedotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_brevedotbelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_brevedotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_brevegrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_brevegrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_brevegrave.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_brevegrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_brevehookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_brevehookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_brevehookabove.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_brevehookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_brevetilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_brevetilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_brevetilde.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_brevetilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_caron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_caron.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_circumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_circumflexdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_circumflexdotbelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_circumflexdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_circumflexhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_circumflexhookabove.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_circumflexhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_circumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_circumflextilde.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_circumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_dieresis.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_dieresis.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_grave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_grave.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_hookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_hookabove.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_macron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_macron.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_ogonek.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_ogonek.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_ring.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_ring.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_ring.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_ring.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_tilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/A_tilde.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/A_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/B_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/B_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/B_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/B_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/B_linebelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/B_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/B_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/B_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/C_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/C_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/C_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/C_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/C_acute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/C_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/C_acute.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/C_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/C_caron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/C_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/C_caron.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/C_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/C_cedilla.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/C_cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/C_cedilla.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/C_cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/C_circumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/C_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/C_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/C_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/C_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/C_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/C_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/C_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/D_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/D_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/D_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/D_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/D_caron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/D_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/D_caron.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/D_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/D_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/D_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/D_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/D_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/D_croat.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/D_croat.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/D_croat.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/D_croat.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/D_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/D_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/D_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/D_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/D_linebelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/D_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/D_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/D_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_acute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_acute.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_breve.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_breve.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_caron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_caron.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_circumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_circumflexdotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_circumflexdotbelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_circumflexdotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_circumflexhookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_circumflexhookabove.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_circumflexhookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_circumflextilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_circumflextilde.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_circumflextilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_dieresis.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_dieresis.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_grave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_grave.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_hookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_hookabove.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_macron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_macron.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_ng.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_ng.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_ng.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_ng.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_ogonek.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_ogonek.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_th.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_th.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_th.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_th.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_tilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_tilde.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_uro.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_uro.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/E_uro.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/E_uro.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/F_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/F_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/F_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/F_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/G_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/G_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/G_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/G_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/G_breve.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/G_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/G_breve.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/G_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/G_caron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/G_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/G_caron.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/G_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/G_circumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/G_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/G_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/G_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/G_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/G_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/G_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/G_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/G_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/G_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/G_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/G_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/G_macron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/G_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/G_macron.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/G_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/H_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/H_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/H_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/H_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/H_bar.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/H_bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/H_bar.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/H_bar.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/H_brevebelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/H_brevebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/H_brevebelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/H_brevebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/H_cedilla.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/H_cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/H_cedilla.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/H_cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/H_circumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/H_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/H_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/H_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/H_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/H_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/H_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/H_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_acute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_acute.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_breve.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_breve.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_caron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_caron.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_circumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_dieresis.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_dieresis.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_grave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_grave.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_hookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_hookabove.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_hookabove.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_hookabove.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_macron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_macron.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_ogonek.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_ogonek.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_tilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/I_tilde.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/I_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/J_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/J_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/J_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/J_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/J_circumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/J_circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/J_circumflex.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/J_circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/K_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/K_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/K_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/K_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/K_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/K_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/K_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/K_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/K_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/K_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/K_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/K_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/K_linebelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/K_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/K_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/K_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_.dot.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_.dot.glif new file mode 100644 index 00000000..7daaafa3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_.dot.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + public.objectLibs + + component0 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + component1 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + component2 + + public.truetype.roundOffsetToGrid + + public.truetype.useMyMetrics + + + + public.truetype.overlap + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_acute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_acute.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_caron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_caron.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_linebelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_macrondotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_macrondotbelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_macrondotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_slash.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_slash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/L_slash.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/L_slash.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/M_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/M_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/M_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/M_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/M_acute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/M_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/M_acute.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/M_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/M_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/M_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/M_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/M_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/M_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/M_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/M_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/M_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/N_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/N_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/N_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/N_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/N_acute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/N_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/N_acute.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/N_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/N_caron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/N_caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/N_caron.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/N_caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/N_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/N_circumflexbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/N_circumflexbelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/N_circumflexbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/N_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/N_commaaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/N_commaaccent.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/N_commaaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/N_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/N_dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/N_dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/N_dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/N_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/N_dotbelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/N_dotbelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/N_dotbelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/N_grave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/N_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/N_grave.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/N_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/N_linebelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/N_linebelow.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/N_linebelow.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/N_linebelow.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/N_tilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/N_tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/N_tilde.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/N_tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_E_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..07bb2b6c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_E_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_acute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_acute.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_breve.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..20a13237 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_breve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_caron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_caron.glif new file mode 100644 index 00000000..9ca1ee6d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_circumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..f5e5ed00 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_circumflexacute.glif new file mode 100644 index 00000000..3d0d348a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_circumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_circumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_circumflexdotbelow.glif new file mode 100644 index 00000000..a9de3d36 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_circumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_circumflexgrave.glif new file mode 100644 index 00000000..8efd59bd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_circumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_circumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_circumflexhookabove.glif new file mode 100644 index 00000000..20c0661d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_circumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_circumflextilde.glif new file mode 100644 index 00000000..0ff6b581 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_circumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_dieresis.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..1a7cd345 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_dotaccent.glif new file mode 100644 index 00000000..8a84259c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_dotbelow.glif new file mode 100644 index 00000000..328b2629 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_grave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_grave.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_hookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_hookabove.glif new file mode 100644 index 00000000..57af63f0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_horn.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_horn.glif new file mode 100644 index 00000000..1b9eaeb1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_horn.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_hornacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_hornacute.glif new file mode 100644 index 00000000..e4033ea8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_hornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_horndotbelow.glif new file mode 100644 index 00000000..93878b8d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_horndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_horngrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_horngrave.glif new file mode 100644 index 00000000..8291aefe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_horngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_hornhookabove.glif new file mode 100644 index 00000000..8ddccec2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_hornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_horntilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_horntilde.glif new file mode 100644 index 00000000..b4b5bac4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_horntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_hungarumlaut.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/O_hungarumlaut.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_hungarumlaut.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_macron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..f30b2c49 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_ogonek.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_ogonek.glif new file mode 100644 index 00000000..7f4251f5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_ogonek.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_slash.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..9d6c212a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_slash.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_tilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..bca62047 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/O_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/P_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/P_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/P_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/P_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Q_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Q_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Q_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Q_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/R_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_acute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..fbf39217 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_caron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..be68e0c1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..a401cd11 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_dotaccent.glif new file mode 100644 index 00000000..0cadc373 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_dotbelow.glif new file mode 100644 index 00000000..57402e85 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_linebelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_linebelow.glif new file mode 100644 index 00000000..80e0026e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_macrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_macrondotbelow.glif new file mode 100644 index 00000000..29895d88 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/R_macrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/S_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_acute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..547fe213 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_caron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..4cfac990 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_cedilla.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..b7bb82cd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_chwa.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..8640961c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_chwa.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_circumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..dd14b560 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..315dd5b1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_dotbelow.glif new file mode 100644 index 00000000..4a8449dd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/S_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_bar.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/T_bar.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_bar.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_caron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..23d20008 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_cedilla.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..4248b1fc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_circumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_circumflexbelow.glif new file mode 100644 index 00000000..04e62723 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_circumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_commaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..8efd5833 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_dotbelow.glif new file mode 100644 index 00000000..3d102e5d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_horn.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..993088ff --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_horn.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_linebelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_linebelow.glif new file mode 100644 index 00000000..7c07de34 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/T_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/U_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_acute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..b0b6e168 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_breve.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..9eba3d7f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_breve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_caron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_caron.glif new file mode 100644 index 00000000..be0f3c37 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_circumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..56808f64 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_dieresis.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..c558bf10 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_dieresisacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_dieresisacute.glif new file mode 100644 index 00000000..e5cbbe3c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_dieresisacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_dieresiscaron.glif new file mode 100644 index 00000000..dc2ff1ac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_dieresiscaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_dieresisgrave.glif new file mode 100644 index 00000000..b227a449 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_dieresisgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_dieresismacron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_dieresismacron.glif new file mode 100644 index 00000000..3d8c49b3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_dieresismacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_dotbelow.glif new file mode 100644 index 00000000..d2f0ef86 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_grave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..debff763 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_hookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_hookabove.glif new file mode 100644 index 00000000..fccb10eb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_horn.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_horn.glif new file mode 100644 index 00000000..2c90b436 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_horn.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_hornacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_hornacute.glif new file mode 100644 index 00000000..7e948009 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_hornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_horndotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_horndotbelow.glif new file mode 100644 index 00000000..eb199a1c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_horndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_horngrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_horngrave.glif new file mode 100644 index 00000000..e2fae54b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_horngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_hornhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_hornhookabove.glif new file mode 100644 index 00000000..fd1cf394 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_hornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_horntilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_horntilde.glif new file mode 100644 index 00000000..a348994a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_horntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..f97071b4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_macron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..f40fd627 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_ogonek.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..0b66b49d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_ring.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..f5aa731d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_ring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_tilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..7a348d5c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/U_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/V_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/V_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/V_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/V_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/V_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/V_dotbelow.glif new file mode 100644 index 00000000..27ada561 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/V_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/W_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/W_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/W_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/W_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/W_acute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..e279689d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/W_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/W_circumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..0593fed6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/W_dieresis.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..a513fa2d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/W_grave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..b7532bf3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/W_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/X_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/X_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/X_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/X_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/X_dieresis.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/X_dieresis.glif new file mode 100644 index 00000000..812f5e70 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/X_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Y_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_acute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..f0cace4b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_circumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..5f341efd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_dieresis.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..3d227ac3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_dotaccent.glif new file mode 100644 index 00000000..d27b4384 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_dotbelow.glif new file mode 100644 index 00000000..b0c7e405 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_grave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_grave.glif new file mode 100644 index 00000000..03a5a3c0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_grave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_hookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_hookabove.glif new file mode 100644 index 00000000..dec444fd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_hookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_macron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_macron.glif new file mode 100644 index 00000000..aca72e51 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_macron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_tilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_tilde.glif new file mode 100644 index 00000000..cb3e0249 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Y_tilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Z_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Z_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/Z_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Z_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Z_acute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..a9845b89 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Z_acute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Z_caron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..85891f1f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Z_caron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Z_circumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Z_circumflex.glif new file mode 100644 index 00000000..3c9253b7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Z_circumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Z_dotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..ddf1e225 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Z_dotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Z_dotbelow.glif new file mode 100644 index 00000000..db7fbf07 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Z_dotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Z_linebelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Z_linebelow.glif new file mode 100644 index 00000000..0cdbdb99 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/Z_linebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/_notdef.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/_notdef.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/_notdef.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/_notdef.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/a.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/a.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/a.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/a.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/aacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..6df08290 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/aacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/abreve.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..c00296b7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/abreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/abreveacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/abreveacute.glif new file mode 100644 index 00000000..e3570196 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/abreveacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/abrevedotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/abrevedotbelow.glif new file mode 100644 index 00000000..4bdb8041 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/abrevedotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/abrevegrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/abrevegrave.glif new file mode 100644 index 00000000..8026d936 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/abrevegrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/abrevehookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/abrevehookabove.glif new file mode 100644 index 00000000..8a1e0bda --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/abrevehookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/abrevetilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/abrevetilde.glif new file mode 100644 index 00000000..0a712716 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/abrevetilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acaron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..bd40eefc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..3e585288 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acircumflexacute.glif new file mode 100644 index 00000000..b6cf16f3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acircumflexdotbelow.glif new file mode 100644 index 00000000..abe92976 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acircumflexgrave.glif new file mode 100644 index 00000000..b4e04824 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acircumflexhookabove.glif new file mode 100644 index 00000000..bab276ef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acircumflextilde.glif new file mode 100644 index 00000000..75e9fbf8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acute.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acute.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acutecmb.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acutecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acutecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acutecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acutecmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acutecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/acutecmb.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/acutecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/adieresis.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..9c739f0b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/adieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/adotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/adotaccent.glif new file mode 100644 index 00000000..0b723d14 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/adotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/adotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/adotbelow.glif new file mode 100644 index 00000000..c93627c6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/adotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ae.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ae.glif new file mode 100644 index 00000000..f4427899 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ae.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/agrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..5b8ae88c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/agrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ahookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ahookabove.glif new file mode 100644 index 00000000..c44c229e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ahookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/amacron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..e937822d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/amacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ampersand.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ampersand.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ampersand.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ampersand.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ampersand_ampersand.liga.glif new file mode 100644 index 00000000..a6171111 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ampersand_ampersand.liga.glif @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/aogonek.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..316f1d09 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/aogonek.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/apostrophemod.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/apostrophemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/apostrophemod.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/apostrophemod.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/approxequal.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/approxequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/approxequal.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/approxequal.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/aring.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/aring.glif new file mode 100644 index 00000000..5547cee9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/aring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/asciicircum.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciicircum.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/asciicircum.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciicircum.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciicircum_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciicircum_equal.liga.glif new file mode 100644 index 00000000..e71078bd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciicircum_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/asciitilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciitilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/asciitilde.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciitilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..0384a9f5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciitilde_asciitilde.liga.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciitilde_asciitilde_greater.glif new file mode 100644 index 00000000..4c87fe20 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciitilde_asciitilde_greater.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciitilde_at.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciitilde_at.liga.glif new file mode 100644 index 00000000..8cc05e9a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciitilde_at.liga.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciitilde_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciitilde_greater.liga.glif new file mode 100644 index 00000000..95173823 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciitilde_greater.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciitilde_hyphen.liga.glif new file mode 100644 index 00000000..e44e9a5f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asciitilde_hyphen.liga.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/asterisk.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asterisk.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/asterisk.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asterisk.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asterisk_asterisk.liga.glif new file mode 100644 index 00000000..af9890f6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asterisk_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif new file mode 100644 index 00000000..9f23a013 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asterisk_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asterisk_greater.liga.glif new file mode 100644 index 00000000..79183785 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asterisk_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asterisk_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asterisk_slash.liga.glif new file mode 100644 index 00000000..cca5f4f2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/asterisk_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/at.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/at.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/at.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/at.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/atilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..5a21d2e4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/atilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/b.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/b.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/b.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/b.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/backslash.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/backslash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/backslash.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/backslash.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/backslash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/backslash_slash.liga.glif new file mode 100644 index 00000000..c30b9b7f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/backslash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/bahtthai.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bahtthai.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/bahtthai.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bahtthai.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/bar.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/bar.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar.liga.glif new file mode 100644 index 00000000..6e09a289 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_bar.liga.glif new file mode 100644 index 00000000..dc1b5564 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_bar.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_bar_greater.liga.glif new file mode 100644 index 00000000..0e8872b0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_bar_greater.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_equal.liga.glif new file mode 100644 index 00000000..f0ff4c22 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_equal.start.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_equal.start.glif new file mode 100644 index 00000000..1d8820c2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_greater.liga.glif new file mode 100644 index 00000000..70b7a7dd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_greater.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_hyphen.liga.glif new file mode 100644 index 00000000..282deecb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_hyphen.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_hyphen.start.glif new file mode 100644 index 00000000..655c41cc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bar_hyphen.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_braceright.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_braceright.liga.glif new file mode 100644 index 00000000..c03d21f5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_braceright.liga.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bracketright.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bracketright.liga.glif new file mode 100644 index 00000000..0151abe8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_bracketright.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_equal.liga.glif new file mode 100644 index 00000000..301985fd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_equal.start.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_equal.start.glif new file mode 100644 index 00000000..25ed694c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_greater.liga.glif new file mode 100644 index 00000000..2bbb22f2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_hyphen.liga.glif new file mode 100644 index 00000000..fb18b3ab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_hyphen.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_hyphen.start.glif new file mode 100644 index 00000000..7235ec17 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bar_hyphen.start.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/blinebelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/blinebelow.glif new file mode 100644 index 00000000..8eb2a305 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/blinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/braceleft.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/braceleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/braceleft.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/braceleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/braceleft_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/braceleft_bar.liga.glif new file mode 100644 index 00000000..4d343642 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/braceleft_bar.liga.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/braceright.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/braceright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/braceright.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/braceright.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/bracketleft.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bracketleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/bracketleft.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bracketleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bracketleft_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bracketleft_bar.liga.glif new file mode 100644 index 00000000..5e98a976 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bracketleft_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/bracketright.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bracketright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/bracketright.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bracketright.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bracketright_numbersign.liga.glif new file mode 100644 index 00000000..d775a5db --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bracketright_numbersign.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/breve.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/breve.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/breve.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/breve.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/breveacute.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/breveacute.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/breveacute.cap.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/breveacute.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/breveacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/breveacute.glif new file mode 100644 index 00000000..6c615f6d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/breveacute.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevebelowcmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevebelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevebelowcmb.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevebelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevecmb.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevecmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevecmb.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevegrave.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevegrave.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevegrave.cap.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevegrave.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevegrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevegrave.glif new file mode 100644 index 00000000..69d28b7b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevegrave.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevehook.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevehook.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevehook.cap.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevehook.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevehook.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevehook.glif new file mode 100644 index 00000000..83dfece2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevehook.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevetilde.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevetilde.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/brevetilde.cap.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevetilde.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevetilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevetilde.glif new file mode 100644 index 00000000..7ad0f663 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/brevetilde.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/bullet.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bullet.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/bullet.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/bullet.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/c.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/c.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/c.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/c.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/cacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..ed7b192c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/cacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/caron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/caron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/caron.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/caron.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/caroncmb.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/caroncmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/caroncmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/caroncmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/caroncmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/caroncmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/caroncmb.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/caroncmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ccaron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..9625c398 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ccaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ccedilla.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..23174611 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ccedilla.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ccircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..04eb82bb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/cdotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..fe12910d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/cedilla.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/cedilla.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/cedilla.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/cedilla.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/cedillacmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/cedillacmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/cedillacmb.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/cedillacmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/cent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/cent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/cent.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/cent.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflex.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflex.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflex.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflexacute.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflexacute.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflexacute.cap.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflexacute.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflexacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflexacute.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflexacute.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflexacute.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflexbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflexbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflexbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflexbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflexcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflexcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflexcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflexcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflexcmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflexcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflexcmb.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflexcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflexgrave.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflexgrave.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflexgrave.cap.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflexgrave.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflexgrave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflexgrave.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflexgrave.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflexhook.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflexhook.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflexhook.cap.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflexhook.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflexhook.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflexhook.glif new file mode 100644 index 00000000..97462d42 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflexhook.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflextilde.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflextilde.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/circumflextilde.cap.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflextilde.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflextilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflextilde.glif new file mode 100644 index 00000000..b6c7a21e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/circumflextilde.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/colon.fig.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon.fig.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/colon.fig.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon.fig.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/colon.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/colon.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon_colon.liga.glif new file mode 100644 index 00000000..6c2c4d7d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon_colon_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon_colon_colon.liga.glif new file mode 100644 index 00000000..d6a3666b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon_colon_colon.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon_colon_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon_colon_equal.liga.glif new file mode 100644 index 00000000..45dacbb6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon_colon_equal.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon_equal.liga.glif new file mode 100644 index 00000000..42952a6e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon_greater.liga.glif new file mode 100644 index 00000000..ae4b1a9f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon_greater.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon_less.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon_less.liga.glif new file mode 100644 index 00000000..a04006d6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/colon_less.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/comma.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/comma.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/comma.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/comma.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/commaaboverightcmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/commaaboverightcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/commaaboverightcmb.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/commaaboverightcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/commaturnedabovecmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/commaturnedabovecmb.glif new file mode 100644 index 00000000..f2cc65d1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/commaturnedabovecmb.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/commaturnedmod.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/commaturnedmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/commaturnedmod.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/commaturnedmod.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/contents.plist b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/contents.plist new file mode 100644 index 00000000..10a2ded8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/contents.plist @@ -0,0 +1,2092 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + AE + A_E_.glif + Aacute + A_acute.glif + Abreve + A_breve.glif + Abreveacute + A_breveacute.glif + Abrevedotbelow + A_brevedotbelow.glif + Abrevegrave + A_brevegrave.glif + Abrevehookabove + A_brevehookabove.glif + Abrevetilde + A_brevetilde.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflexacute + A_circumflexacute.glif + Acircumflexdotbelow + A_circumflexdotbelow.glif + Acircumflexgrave + A_circumflexgrave.glif + Acircumflexhookabove + A_circumflexhookabove.glif + Acircumflextilde + A_circumflextilde.glif + Adieresis + A_dieresis.glif + Adotaccent + A_dotaccent.glif + Adotbelow + A_dotbelow.glif + Agrave + A_grave.glif + Ahookabove + A_hookabove.glif + Amacron + A_macron.glif + Aogonek + A_ogonek.glif + Aring + A_ring.glif + Atilde + A_tilde.glif + B + B_.glif + Blinebelow + B_linebelow.glif + C + C_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + D + D_.glif + Dcaron + D_caron.glif + Dcircumflexbelow + D_circumflexbelow.glif + Dcroat + D_croat.glif + Ddotbelow + D_dotbelow.glif + Dlinebelow + D_linebelow.glif + E + E_.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Ecircumflexacute + E_circumflexacute.glif + Ecircumflexdotbelow + E_circumflexdotbelow.glif + Ecircumflexgrave + E_circumflexgrave.glif + Ecircumflexhookabove + E_circumflexhookabove.glif + Ecircumflextilde + E_circumflextilde.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Edotbelow + E_dotbelow.glif + Egrave + E_grave.glif + Ehookabove + E_hookabove.glif + Emacron + E_macron.glif + Eng + E_ng.glif + Eogonek + E_ogonek.glif + Eth + E_th.glif + Etilde + E_tilde.glif + Euro + E_uro.glif + F + F_.glif + G + G_.glif + Gbreve + G_breve.glif + Gcaron + G_caron.glif + Gcircumflex + G_circumflex.glif + Gcommaaccent + G_commaaccent.glif + Gdotaccent + G_dotaccent.glif + Gmacron + G_macron.glif + H + H_.glif + Hbar + H_bar.glif + Hbrevebelow + H_brevebelow.glif + Hcedilla + H_cedilla.glif + Hcircumflex + H_circumflex.glif + Hdotbelow + H_dotbelow.glif + I + I_.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icaron + I_caron.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idotaccent + I_dotaccent.glif + Idotbelow + I_dotbelow.glif + Igrave + I_grave.glif + Ihookabove + I_hookabove.glif + Imacron + I_macron.glif + Iogonek + I_ogonek.glif + Itilde + I_tilde.glif + J + J_.glif + Jcircumflex + J_circumflex.glif + K + K_.glif + Kcommaaccent + K_commaaccent.glif + Kdotbelow + K_dotbelow.glif + Klinebelow + K_linebelow.glif + L + L_.glif + L.dot + L_.dot.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcircumflexbelow + L_circumflexbelow.glif + Lcommaaccent + L_commaaccent.glif + Ldotbelow + L_dotbelow.glif + Llinebelow + L_linebelow.glif + Lmacrondotbelow + L_macrondotbelow.glif + Lslash + L_slash.glif + M + M_.glif + Macute + M_acute.glif + Mdotaccent + M_dotaccent.glif + Mdotbelow + M_dotbelow.glif + N + N_.glif + Nacute + N_acute.glif + Ncaron + N_caron.glif + Ncircumflexbelow + N_circumflexbelow.glif + Ncommaaccent + N_commaaccent.glif + Ndotaccent + N_dotaccent.glif + Ndotbelow + N_dotbelow.glif + Ngrave + N_grave.glif + Nlinebelow + N_linebelow.glif + Ntilde + N_tilde.glif + O + O_.glif + OE + O_E_.glif + Oacute + O_acute.glif + Obreve + O_breve.glif + Ocaron + O_caron.glif + Ocircumflex + O_circumflex.glif + Ocircumflexacute + O_circumflexacute.glif + Ocircumflexdotbelow + O_circumflexdotbelow.glif + Ocircumflexgrave + O_circumflexgrave.glif + Ocircumflexhookabove + O_circumflexhookabove.glif + Ocircumflextilde + O_circumflextilde.glif + Odieresis + O_dieresis.glif + Odotaccent + O_dotaccent.glif + Odotbelow + O_dotbelow.glif + Ograve + O_grave.glif + Ohookabove + O_hookabove.glif + Ohorn + O_horn.glif + Ohornacute + O_hornacute.glif + Ohorndotbelow + O_horndotbelow.glif + Ohorngrave + O_horngrave.glif + Ohornhookabove + O_hornhookabove.glif + Ohorntilde + O_horntilde.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Oogonek + O_ogonek.glif + Oslash + O_slash.glif + Otilde + O_tilde.glif + P + P_.glif + Q + Q_.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Rdotaccent + R_dotaccent.glif + Rdotbelow + R_dotbelow.glif + Rlinebelow + R_linebelow.glif + Rmacrondotbelow + R_macrondotbelow.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Sdotbelow + S_dotbelow.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tcircumflexbelow + T_circumflexbelow.glif + Tcommaaccent + T_commaaccent.glif + Tdotbelow + T_dotbelow.glif + Thorn + T_horn.glif + Tlinebelow + T_linebelow.glif + U + U_.glif + Uacute + U_acute.glif + Ubreve + U_breve.glif + Ucaron + U_caron.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresisacute + U_dieresisacute.glif + Udieresiscaron + U_dieresiscaron.glif + Udieresisgrave + U_dieresisgrave.glif + Udieresismacron + U_dieresismacron.glif + Udotbelow + U_dotbelow.glif + Ugrave + U_grave.glif + Uhookabove + U_hookabove.glif + Uhorn + U_horn.glif + Uhornacute + U_hornacute.glif + Uhorndotbelow + U_horndotbelow.glif + Uhorngrave + U_horngrave.glif + Uhornhookabove + U_hornhookabove.glif + Uhorntilde + U_horntilde.glif + Uhungarumlaut + U_hungarumlaut.glif + Umacron + U_macron.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Utilde + U_tilde.glif + V + V_.glif + Vdotbelow + V_dotbelow.glif + W + W_.glif + Wacute + W_acute.glif + Wcircumflex + W_circumflex.glif + Wdieresis + W_dieresis.glif + Wgrave + W_grave.glif + X + X_.glif + Xdieresis + X_dieresis.glif + Y + Y_.glif + Yacute + Y_acute.glif + Ycircumflex + Y_circumflex.glif + Ydieresis + Y_dieresis.glif + Ydotaccent + Y_dotaccent.glif + Ydotbelow + Y_dotbelow.glif + Ygrave + Y_grave.glif + Yhookabove + Y_hookabove.glif + Ymacron + Y_macron.glif + Ytilde + Y_tilde.glif + Z + Z_.glif + Zacute + Z_acute.glif + Zcaron + Z_caron.glif + Zcircumflex + Z_circumflex.glif + Zdotaccent + Z_dotaccent.glif + Zdotbelow + Z_dotbelow.glif + Zlinebelow + Z_linebelow.glif + a + a.glif + aacute + aacute.glif + abreve + abreve.glif + abreveacute + abreveacute.glif + abrevedotbelow + abrevedotbelow.glif + abrevegrave + abrevegrave.glif + abrevehookabove + abrevehookabove.glif + abrevetilde + abrevetilde.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflexacute + acircumflexacute.glif + acircumflexdotbelow + acircumflexdotbelow.glif + acircumflexgrave + acircumflexgrave.glif + acircumflexhookabove + acircumflexhookabove.glif + acircumflextilde + acircumflextilde.glif + acute + acute.glif + acutecmb + acutecmb.glif + acutecmb.cap + acutecmb.cap.glif + adieresis + adieresis.glif + adotaccent + adotaccent.glif + adotbelow + adotbelow.glif + ae + ae.glif + agrave + agrave.glif + ahookabove + ahookabove.glif + amacron + amacron.glif + ampersand + ampersand.glif + ampersand_ampersand.liga + ampersand_ampersand.liga.glif + aogonek + aogonek.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + asciicircum + asciicircum.glif + asciicircum_equal.liga + asciicircum_equal.liga.glif + asciitilde + asciitilde.glif + asciitilde_asciitilde.liga + asciitilde_asciitilde.liga.glif + asciitilde_asciitilde_greater + asciitilde_asciitilde_greater.glif + asciitilde_at.liga + asciitilde_at.liga.glif + asciitilde_greater.liga + asciitilde_greater.liga.glif + asciitilde_hyphen.liga + asciitilde_hyphen.liga.glif + asterisk + asterisk.glif + asterisk_asterisk.liga + asterisk_asterisk.liga.glif + asterisk_asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga.glif + asterisk_greater.liga + asterisk_greater.liga.glif + asterisk_slash.liga + asterisk_slash.liga.glif + at + at.glif + atilde + atilde.glif + b + b.glif + backslash + backslash.glif + backslash_slash.liga + backslash_slash.liga.glif + bahtthai + bahtthai.glif + bar + bar.glif + bar_bar.liga + bar_bar.liga.glif + bar_bar_bar.liga + bar_bar_bar.liga.glif + bar_bar_bar_greater.liga + bar_bar_bar_greater.liga.glif + bar_bar_equal.liga + bar_bar_equal.liga.glif + bar_bar_equal.start + bar_bar_equal.start.glif + bar_bar_greater.liga + bar_bar_greater.liga.glif + bar_bar_hyphen.liga + bar_bar_hyphen.liga.glif + bar_bar_hyphen.start + bar_bar_hyphen.start.glif + bar_braceright.liga + bar_braceright.liga.glif + bar_bracketright.liga + bar_bracketright.liga.glif + bar_equal.liga + bar_equal.liga.glif + bar_equal.start + bar_equal.start.glif + bar_greater.liga + bar_greater.liga.glif + bar_hyphen.liga + bar_hyphen.liga.glif + bar_hyphen.start + bar_hyphen.start.glif + blinebelow + blinebelow.glif + braceleft + braceleft.glif + braceleft_bar.liga + braceleft_bar.liga.glif + braceright + braceright.glif + bracketleft + bracketleft.glif + bracketleft_bar.liga + bracketleft_bar.liga.glif + bracketright + bracketright.glif + bracketright_numbersign.liga + bracketright_numbersign.liga.glif + breve + breve.glif + breveacute + breveacute.glif + breveacute.cap + breveacute.cap.glif + brevebelowcmb + brevebelowcmb.glif + brevecmb + brevecmb.glif + brevecmb.cap + brevecmb.cap.glif + brevegrave + brevegrave.glif + brevegrave.cap + brevegrave.cap.glif + brevehook + brevehook.glif + brevehook.cap + brevehook.cap.glif + brevetilde + brevetilde.glif + brevetilde.cap + brevetilde.cap.glif + bullet + bullet.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caroncmb + caroncmb.glif + caroncmb.cap + caroncmb.cap.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cedillacmb + cedillacmb.glif + cent + cent.glif + circumflex + circumflex.glif + circumflexacute + circumflexacute.glif + circumflexacute.cap + circumflexacute.cap.glif + circumflexbelowcmb + circumflexbelowcmb.glif + circumflexcmb + circumflexcmb.glif + circumflexcmb.cap + circumflexcmb.cap.glif + circumflexgrave + circumflexgrave.glif + circumflexgrave.cap + circumflexgrave.cap.glif + circumflexhook + circumflexhook.glif + circumflexhook.cap + circumflexhook.cap.glif + circumflextilde + circumflextilde.glif + circumflextilde.cap + circumflextilde.cap.glif + colon + colon.glif + colon.fig + colon.fig.glif + colon_colon.liga + colon_colon.liga.glif + colon_colon_colon.liga + colon_colon_colon.liga.glif + colon_colon_equal.liga + colon_colon_equal.liga.glif + colon_equal.liga + colon_equal.liga.glif + colon_greater.liga + colon_greater.liga.glif + colon_less.liga + colon_less.liga.glif + comma + comma.glif + commaaboverightcmb + commaaboverightcmb.glif + commaturnedabovecmb + commaturnedabovecmb.glif + commaturnedmod + commaturnedmod.glif + copyright + copyright.glif + d + d.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + darkshade + darkshade.glif + dbldnhorzbxd + dbldnhorzbxd.glif + dbldnleftbxd + dbldnleftbxd.glif + dbldnrightbxd + dbldnrightbxd.glif + dblhorzbxd + dblhorzbxd.glif + dblprimemod + dblprimemod.glif + dbluphorzbxd + dbluphorzbxd.glif + dblupleftbxd + dblupleftbxd.glif + dbluprightbxd + dbluprightbxd.glif + dblvertbxd + dblvertbxd.glif + dblverthorzbxd + dblverthorzbxd.glif + dblvertleftbxd + dblvertleftbxd.glif + dblvertrightbxd + dblvertrightbxd.glif + dcaron + dcaron.glif + dcircumflexbelow + dcircumflexbelow.glif + dcroat + dcroat.glif + ddotbelow + ddotbelow.glif + degree + degree.glif + dieresis + dieresis.glif + dieresisacute + dieresisacute.glif + dieresisacute.cap + dieresisacute.cap.glif + dieresisbelowcmb + dieresisbelowcmb.glif + dieresiscaron + dieresiscaron.glif + dieresiscaron.cap + dieresiscaron.cap.glif + dieresiscmb + dieresiscmb.glif + dieresiscmb.cap + dieresiscmb.cap.glif + dieresisgrave + dieresisgrave.glif + dieresisgrave.cap + dieresisgrave.cap.glif + dieresismacron + dieresismacron.glif + dieresismacron.cap + dieresismacron.cap.glif + divide + divide.glif + dlinebelow + dlinebelow.glif + dndblhorzsngbxd + dndblhorzsngbxd.glif + dndblleftsngbxd + dndblleftsngbxd.glif + dndblrightsngbxd + dndblrightsngbxd.glif + dneighthblock + dneighthblock.glif + dnfiveeighthsblock + dnfiveeighthsblock.glif + dnhalfblock + dnhalfblock.glif + dnheavyhorzlightbxd + dnheavyhorzlightbxd.glif + dnheavyleftlightbxd + dnheavyleftlightbxd.glif + dnheavyleftuplightbxd + dnheavyleftuplightbxd.glif + dnheavyrightlightbxd + dnheavyrightlightbxd.glif + dnheavyrightuplightbxd + dnheavyrightuplightbxd.glif + dnheavyuphorzlightbxd + dnheavyuphorzlightbxd.glif + dnleftquadrant + dnleftquadrant.glif + dnlighthorzheavybxd + dnlighthorzheavybxd.glif + dnlightleftheavybxd + dnlightleftheavybxd.glif + dnlightleftupheavybxd + dnlightleftupheavybxd.glif + dnlightrightheavybxd + dnlightrightheavybxd.glif + dnlightrightupheavybxd + dnlightrightupheavybxd.glif + dnlightuphorzheavybxd + dnlightuphorzheavybxd.glif + dnquarterblock + dnquarterblock.glif + dnrightquadrant + dnrightquadrant.glif + dnseveneighthsblock + dnseveneighthsblock.glif + dnsnghorzdblbxd + dnsnghorzdblbxd.glif + dnsngleftdblbxd + dnsngleftdblbxd.glif + dnsngrightdblbxd + dnsngrightdblbxd.glif + dnthreeeighthsblock + dnthreeeighthsblock.glif + dnthreequartersblock + dnthreequartersblock.glif + dollar + dollar.glif + dollar_greater.liga + dollar_greater.liga.glif + dong + dong.glif + dotaccent + dotaccent.glif + dotaccentcmb + dotaccentcmb.glif + dotaccentcmb.cap + dotaccentcmb.cap.glif + dotbelowcmb + dotbelowcmb.glif + dotlessi + dotlessi.glif + dotlessj + dotlessj.glif + e + e.glif + eacute + eacute.glif + ebreve + ebreve.glif + ecaron + ecaron.glif + ecircumflex + ecircumflex.glif + ecircumflexacute + ecircumflexacute.glif + ecircumflexdotbelow + ecircumflexdotbelow.glif + ecircumflexgrave + ecircumflexgrave.glif + ecircumflexhookabove + ecircumflexhookabove.glif + ecircumflextilde + ecircumflextilde.glif + edieresis + edieresis.glif + edotaccent + edotaccent.glif + edotbelow + edotbelow.glif + egrave + egrave.glif + ehookabove + ehookabove.glif + eight + eight.glif + eight.den + eight.den.glif + eight.inf + eight.inf.glif + eight.num + eight.num.glif + eight.sup + eight.sup.glif + ellipsis + ellipsis.glif + emacron + emacron.glif + emdash + emdash.glif + endash + endash.glif + eng + eng.glif + eogonek + eogonek.glif + equal + equal.glif + equal.end + equal.end.glif + equal.middle + equal.middle.glif + equal.start + equal.start.glif + equal_asciitilde.liga + equal_asciitilde.liga.glif + equal_bar.end + equal_bar.end.glif + equal_bar.liga + equal_bar.liga.glif + equal_bar_bar.end + equal_bar_bar.end.glif + equal_bar_bar.liga + equal_bar_bar.liga.glif + equal_bar_bar_equal.middle + equal_bar_bar_equal.middle.glif + equal_bar_equal.middle + equal_bar_equal.middle.glif + equal_colon_equal.middle + equal_colon_equal.middle.glif + equal_equal.liga + equal_equal.liga.glif + equal_equal_equal.liga + equal_equal_equal.liga.glif + equal_exclam_equal.middle + equal_exclam_equal.middle.glif + equal_greater.end + equal_greater.end.glif + equal_greater.liga + equal_greater.liga.glif + equal_greater_equal.middle + equal_greater_equal.middle.glif + equal_greater_greater.end + equal_greater_greater.end.glif + equal_greater_greater.liga + equal_greater_greater.liga.glif + equal_greater_greater_equal.m + equal_greater_greater_equal.m.glif + equal_less.end + equal_less.end.glif + equal_less.liga + equal_less.liga.glif + equal_less_equal.middle + equal_less_equal.middle.glif + equal_less_less.end + equal_less_less.end.glif + equal_less_less.liga + equal_less_less.liga.glif + equal_less_less_equal.middle + equal_less_less_equal.middle.glif + equal_slash.end + equal_slash.end.glif + equal_slash.liga + equal_slash.liga.glif + equal_slash_equal.middle + equal_slash_equal.middle.glif + equal_slash_slash.end + equal_slash_slash.end.glif + equal_slash_slash.liga + equal_slash_slash.liga.glif + equal_slash_slash_equal.middle + equal_slash_slash_equal.middle.glif + eth + eth.glif + etilde + etilde.glif + exclam + exclam.glif + exclam_asciitilde.liga + exclam_asciitilde.liga.glif + exclam_equal.liga + exclam_equal.liga.glif + exclam_equal_equal.liga + exclam_equal_equal.liga.glif + exclam_exclam.liga + exclam_exclam.liga.glif + exclam_exclam_period.liga + exclam_exclam_period.liga.glif + exclamdown + exclamdown.glif + f + f.glif + five + five.glif + five.den + five.den.glif + five.inf + five.inf.glif + five.num + five.num.glif + five.sup + five.sup.glif + fiveeighths + fiveeighths.glif + fivesixths + fivesixths.glif + four + four.glif + four.den + four.den.glif + four.inf + four.inf.glif + four.num + four.num.glif + four.sup + four.sup.glif + fourfifths + fourfifths.glif + fracbar + fracbar.glif + fraction + fraction.glif + fullblock + fullblock.glif + g + g.glif + gbreve + gbreve.glif + gcaron + gcaron.glif + gcircumflex + gcircumflex.glif + gcommaaccent + gcommaaccent.glif + gdotaccent + gdotaccent.glif + germandbls + germandbls.glif + gmacron + gmacron.glif + grave + grave.glif + gravecmb + gravecmb.glif + gravecmb.cap + gravecmb.cap.glif + greater + greater.glif + greater_colon.liga + greater_colon.liga.glif + greater_equal + greater_equal.glif + greater_equal.liga + greater_equal.liga.glif + greater_equal.start + greater_equal.start.glif + greater_equal_greater.liga + greater_equal_greater.liga.glif + greater_greater.liga + greater_greater.liga.glif + greater_greater_equal.liga + greater_greater_equal.liga.glif + greater_greater_equal.start + greater_greater_equal.start.glif + greater_greater_greater.liga + greater_greater_greater.liga.glif + greater_greater_hyphen.liga + greater_greater_hyphen.liga.glif + greater_greater_hyphen.start + greater_greater_hyphen.start.glif + greater_hyphen.liga + greater_hyphen.liga.glif + greater_hyphen.start + greater_hyphen.start.glif + greater_hyphen_greater.liga + greater_hyphen_greater.liga.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetright + guillemetright.glif + guilsinglleft + guilsinglleft.glif + guilsinglright + guilsinglright.glif + h + h.glif + hbar + hbar.glif + hbrevebelow + hbrevebelow.glif + hcedilla + hcedilla.glif + hcircumflex + hcircumflex.glif + hdotbelow + hdotbelow.glif + heavydbldashhorzbxd + heavydbldashhorzbxd.glif + heavydbldashvertbxd + heavydbldashvertbxd.glif + heavydnbxd + heavydnbxd.glif + heavydnhorzbxd + heavydnhorzbxd.glif + heavydnleftbxd + heavydnleftbxd.glif + heavydnrightbxd + heavydnrightbxd.glif + heavyhorzbxd + heavyhorzbxd.glif + heavyleftbxd + heavyleftbxd.glif + heavyleftlightrightbxd + heavyleftlightrightbxd.glif + heavyquaddashhorzbxd + heavyquaddashhorzbxd.glif + heavyquaddashvertbxd + heavyquaddashvertbxd.glif + heavyrightbxd + heavyrightbxd.glif + heavytrpldashhorzbxd + heavytrpldashhorzbxd.glif + heavytrpldashvertbxd + heavytrpldashvertbxd.glif + heavyupbxd + heavyupbxd.glif + heavyuphorzbxd + heavyuphorzbxd.glif + heavyupleftbxd + heavyupleftbxd.glif + heavyuplightdnbxd + heavyuplightdnbxd.glif + heavyuprightbxd + heavyuprightbxd.glif + heavyvertbxd + heavyvertbxd.glif + heavyverthorzbxd + heavyverthorzbxd.glif + heavyvertleftbxd + heavyvertleftbxd.glif + heavyvertrightbxd + heavyvertrightbxd.glif + hlinebelow + hlinebelow.glif + hookcmb + hookcmb.glif + hookcmb.cap + hookcmb.cap.glif + horizontalbar + horizontalbar.glif + hungarumlaut + hungarumlaut.glif + hungarumlautcmb + hungarumlautcmb.glif + hungarumlautcmb.cap + hungarumlautcmb.cap.glif + hyphen + hyphen.glif + hyphen.end + hyphen.end.glif + hyphen.middle + hyphen.middle.glif + hyphen.start + hyphen.start.glif + hyphen_asciitilde.liga + hyphen_asciitilde.liga.glif + hyphen_bar.end + hyphen_bar.end.glif + hyphen_bar.liga + hyphen_bar.liga.glif + hyphen_bar_bar.end + hyphen_bar_bar.end.glif + hyphen_bar_bar.liga + hyphen_bar_bar.liga.glif + hyphen_bar_bar_hyphen.middle + hyphen_bar_bar_hyphen.middle.glif + hyphen_bar_hyphen.middle + hyphen_bar_hyphen.middle.glif + hyphen_greater.end + hyphen_greater.end.glif + hyphen_greater.liga + hyphen_greater.liga.glif + hyphen_greater_greater.end + hyphen_greater_greater.end.glif + hyphen_greater_greater.liga + hyphen_greater_greater.liga.glif + hyphen_greater_greater_hyphen.m + hyphen_greater_greater_hyphen.m.glif + hyphen_greater_hyphen.middle + hyphen_greater_hyphen.middle.glif + hyphen_hyphen.liga + hyphen_hyphen.liga.glif + hyphen_hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga.glif + hyphen_less.end + hyphen_less.end.glif + hyphen_less.liga + hyphen_less.liga.glif + hyphen_less_hyphen.middle + hyphen_less_hyphen.middle.glif + hyphen_less_less.end + hyphen_less_less.end.glif + hyphen_less_less.liga + hyphen_less_less.liga.glif + hyphen_less_less_hyphen.middle + hyphen_less_less_hyphen.middle.glif + i + i.glif + iacute + iacute.glif + ibreve + ibreve.glif + icaron + icaron.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idotaccent + idotaccent.glif + idotbelow + idotbelow.glif + igrave + igrave.glif + ihookabove + ihookabove.glif + imacron + imacron.glif + iogonek + iogonek.glif + itilde + itilde.glif + j + j.glif + jcaron + jcaron.glif + jcircumflex + jcircumflex.glif + k + k.glif + kcommaaccent + kcommaaccent.glif + kdotbelow + kdotbelow.glif + klinebelow + klinebelow.glif + l + l.glif + l.dot + l.dot.glif + lacute + lacute.glif + lcaron + lcaron.glif + lcircumflexbelow + lcircumflexbelow.glif + lcommaaccent + lcommaaccent.glif + ldotbelow + ldotbelow.glif + leftdnheavyrightuplightbxd + leftdnheavyrightuplightbxd.glif + lefteighthblock + lefteighthblock.glif + leftfiveeighthsblock + leftfiveeighthsblock.glif + lefthalfblock + lefthalfblock.glif + leftheavyrightdnlightbxd + leftheavyrightdnlightbxd.glif + leftheavyrightuplightbxd + leftheavyrightuplightbxd.glif + leftheavyrightvertlightbxd + leftheavyrightvertlightbxd.glif + leftlightrightdnheavybxd + leftlightrightdnheavybxd.glif + leftlightrightupheavybxd + leftlightrightupheavybxd.glif + leftlightrightvertheavybxd + leftlightrightvertheavybxd.glif + leftquarterblock + leftquarterblock.glif + leftseveneighthsblock + leftseveneighthsblock.glif + leftthreeeighthsblock + leftthreeeighthsblock.glif + leftthreequartersblock + leftthreequartersblock.glif + leftupheavyrightdnlightbxd + leftupheavyrightdnlightbxd.glif + less + less.glif + less_asciitilde.liga + less_asciitilde.liga.glif + less_asciitilde_asciitilde.liga + less_asciitilde_asciitilde.liga.glif + less_asciitilde_greater.liga + less_asciitilde_greater.liga.glif + less_asterisk.liga + less_asterisk.liga.glif + less_asterisk_greater.liga + less_asterisk_greater.liga.glif + less_bar.liga + less_bar.liga.glif + less_bar_bar.liga + less_bar_bar.liga.glif + less_bar_bar_bar.liga + less_bar_bar_bar.liga.glif + less_bar_greater.liga + less_bar_greater.liga.glif + less_colon.liga + less_colon.liga.glif + less_dollar.liga + less_dollar.liga.glif + less_dollar_greater.liga + less_dollar_greater.liga.glif + less_equal + less_equal.glif + less_equal.liga + less_equal.liga.glif + less_equal.start + less_equal.start.glif + less_equal_greater.liga + less_equal_greater.liga.glif + less_equal_less.liga + less_equal_less.liga.glif + less_exclam_hyphen_hyphen.liga + less_exclam_hyphen_hyphen.liga.glif + less_greater.liga + less_greater.liga.glif + less_hyphen.liga + less_hyphen.liga.glif + less_hyphen.start + less_hyphen.start.glif + less_hyphen_greater.liga + less_hyphen_greater.liga.glif + less_hyphen_less.liga + less_hyphen_less.liga.glif + less_less.liga + less_less.liga.glif + less_less_equal.liga + less_less_equal.liga.glif + less_less_equal.start + less_less_equal.start.glif + less_less_hyphen.liga + less_less_hyphen.liga.glif + less_less_hyphen.start + less_less_hyphen.start.glif + less_less_less.liga + less_less_less.liga.glif + less_plus.liga + less_plus.liga.glif + less_plus_greater.liga + less_plus_greater.liga.glif + less_slash.liga + less_slash.liga.glif + less_slash_greater.liga + less_slash_greater.liga.glif + lessequal + lessequal.glif + lightarcdnleftbxd + lightarcdnleftbxd.glif + lightarcdnrightbxd + lightarcdnrightbxd.glif + lightarcupleftbxd + lightarcupleftbxd.glif + lightarcuprightbxd + lightarcuprightbxd.glif + lightdbldashhorzbxd + lightdbldashhorzbxd.glif + lightdbldashvertbxd + lightdbldashvertbxd.glif + lightdiagcrossbxd + lightdiagcrossbxd.glif + lightdiagupleftdnrightbxd + lightdiagupleftdnrightbxd.glif + lightdiaguprightdnleftbxd + lightdiaguprightdnleftbxd.glif + lightdnbxd + lightdnbxd.glif + lightdnhorzbxd + lightdnhorzbxd.glif + lightdnleftbxd + lightdnleftbxd.glif + lightdnrightbxd + lightdnrightbxd.glif + lighthorzbxd + lighthorzbxd.glif + lightleftbxd + lightleftbxd.glif + lightleftheavyrightbxd + lightleftheavyrightbxd.glif + lightquaddashhorzbxd + lightquaddashhorzbxd.glif + lightquaddashvertbxd + lightquaddashvertbxd.glif + lightrightbxd + lightrightbxd.glif + lightshade + lightshade.glif + lighttrpldashhorzbxd + lighttrpldashhorzbxd.glif + lighttrpldashvertbxd + lighttrpldashvertbxd.glif + lightupbxd + lightupbxd.glif + lightupheavydnbxd + lightupheavydnbxd.glif + lightuphorzbxd + lightuphorzbxd.glif + lightupleftbxd + lightupleftbxd.glif + lightuprightbxd + lightuprightbxd.glif + lightvertbxd + lightvertbxd.glif + lightverthorzbxd + lightverthorzbxd.glif + lightvertleftbxd + lightvertleftbxd.glif + lightvertrightbxd + lightvertrightbxd.glif + ligspacer + ligspacer.glif + llinebelow + llinebelow.glif + lmacrondotbelow + lmacrondotbelow.glif + lslash + lslash.glif + m + m.glif + macron + macron.glif + macronbelowcmb + macronbelowcmb.glif + macroncmb + macroncmb.glif + macroncmb.cap + macroncmb.cap.glif + macronlowmod + macronlowmod.glif + macute + macute.glif + mdotaccent + mdotaccent.glif + mdotbelow + mdotbelow.glif + mediumshade + mediumshade.glif + middotcat + middotcat.glif + middotcat.cap + middotcat.cap.glif + minus + minus.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + naira + naira.glif + ncaron + ncaron.glif + ncircumflexbelow + ncircumflexbelow.glif + ncommaaccent + ncommaaccent.glif + ndotaccent + ndotaccent.glif + ndotbelow + ndotbelow.glif + ngrave + ngrave.glif + nine + nine.glif + nine.den + nine.den.glif + nine.inf + nine.inf.glif + nine.num + nine.num.glif + nine.sup + nine.sup.glif + nlinebelow + nlinebelow.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numbersign.end + numbersign.end.glif + numbersign.middle + numbersign.middle.glif + numbersign.start + numbersign.start.glif + numbersign_braceleft.liga + numbersign_braceleft.liga.glif + numbersign_bracketleft.liga + numbersign_bracketleft.liga.glif + numbersign_colon.liga + numbersign_colon.liga.glif + numbersign_equal.liga + numbersign_equal.liga.glif + numbersign_exclam.liga + numbersign_exclam.liga.glif + numbersign_parenleft.liga + numbersign_parenleft.liga.glif + numbersign_question.liga + numbersign_question.liga.glif + numbersign_underscore.liga + numbersign_underscore.liga.glif + numbersign_underscore_parenleft + numbersign_underscore_parenleft.glif + o + o.glif + oacute + oacute.glif + obreve + obreve.glif + ocaron + ocaron.glif + ocircumflex + ocircumflex.glif + ocircumflexacute + ocircumflexacute.glif + ocircumflexdotbelow + ocircumflexdotbelow.glif + ocircumflexgrave + ocircumflexgrave.glif + ocircumflexhookabove + ocircumflexhookabove.glif + ocircumflextilde + ocircumflextilde.glif + odieresis + odieresis.glif + odotaccent + odotaccent.glif + odotbelow + odotbelow.glif + oe + oe.glif + ogonek + ogonek.glif + ogonekcmb + ogonekcmb.glif + ograve + ograve.glif + ohookabove + ohookabove.glif + ohorn + ohorn.glif + ohornacute + ohornacute.glif + ohorndotbelow + ohorndotbelow.glif + ohorngrave + ohorngrave.glif + ohornhookabove + ohornhookabove.glif + ohorntilde + ohorntilde.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + one + one.glif + one.den + one.den.glif + one.inf + one.inf.glif + one.num + one.num.glif + one.sup + one.sup.glif + oneeighth + oneeighth.glif + onefifth + onefifth.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesixth + onesixth.glif + onethird + onethird.glif + oogonek + oogonek.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + otilde + otilde.glif + p + p.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenright + parenright.glif + percent + percent.glif + percent_percent.liga + percent_percent.liga.glif + period + period.glif + period_equal.liga + period_equal.liga.glif + period_hyphen.liga + period_hyphen.liga.glif + period_period.liga + period_period.liga.glif + period_period_equal.liga + period_period_equal.liga.glif + period_period_less.liga + period_period_less.liga.glif + period_period_period.liga + period_period_period.liga.glif + period_question.liga + period_question.liga.glif + periodcentered + periodcentered.glif + peso + peso.glif + plus + plus.glif + plus_greater.liga + plus_greater.liga.glif + plus_plus.liga + plus_plus.liga.glif + plus_plus_plus.liga + plus_plus_plus.liga.glif + plusminus + plusminus.glif + primemod + primemod.glif + published + published.glif + q + q.glif + question + question.glif + question_colon.liga + question_colon.liga.glif + question_equal.liga + question_equal.liga.glif + question_period.liga + question_period.liga.glif + question_question.liga + question_question.liga.glif + questiondown + questiondown.glif + quotedbl + quotedbl.glif + quotedblbase + quotedblbase.glif + quotedblleft + quotedblleft.glif + quotedblright + quotedblright.glif + quoteleft + quoteleft.glif + quoteright + quoteright.glif + quotesinglbase + quotesinglbase.glif + quotesingle + quotesingle.glif + r + r.glif + racute + racute.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + rdotaccent + rdotaccent.glif + rdotbelow + rdotbelow.glif + registered + registered.glif + rightdnheavyleftuplightbxd + rightdnheavyleftuplightbxd.glif + righteighthblock + righteighthblock.glif + righthalfblock + righthalfblock.glif + rightheavyleftdnlightbxd + rightheavyleftdnlightbxd.glif + rightheavyleftuplightbxd + rightheavyleftuplightbxd.glif + rightheavyleftvertlightbxd + rightheavyleftvertlightbxd.glif + rightlightleftdnheavybxd + rightlightleftdnheavybxd.glif + rightlightleftupheavybxd + rightlightleftupheavybxd.glif + rightlightleftvertheavybxd + rightlightleftvertheavybxd.glif + rightupheavyleftdnlightbxd + rightupheavyleftdnlightbxd.glif + ring + ring.glif + ringcmb + ringcmb.glif + ringcmb.cap + ringcmb.cap.glif + ringhalfleft + ringhalfleft.glif + ringhalfright + ringhalfright.glif + rlinebelow + rlinebelow.glif + rmacrondotbelow + rmacrondotbelow.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwa + schwa.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + sdotbelow + sdotbelow.glif + section + section.glif + semicolon + semicolon.glif + semicolon_semicolon.liga + semicolon_semicolon.liga.glif + servicemark + servicemark.glif + seven + seven.glif + seven.den + seven.den.glif + seven.inf + seven.inf.glif + seven.num + seven.num.glif + seven.sup + seven.sup.glif + seveneighths + seveneighths.glif + six + six.glif + six.den + six.den.glif + six.inf + six.inf.glif + six.num + six.num.glif + six.sup + six.sup.glif + slash + slash.glif + slash_asterisk.liga + slash_asterisk.liga.glif + slash_backslash.liga + slash_backslash.liga.glif + slash_equal.liga + slash_equal.liga.glif + slash_equal.start + slash_equal.start.glif + slash_greater.liga + slash_greater.liga.glif + slash_slash.liga + slash_slash.liga.glif + slash_slash_equal.liga + slash_slash_equal.liga.glif + slash_slash_equal.start + slash_slash_equal.start.glif + slash_slash_slash.liga + slash_slash_slash.liga.glif + space + space.glif + sterling + sterling.glif + t + t.glif + tbar + tbar.glif + tcaron + tcaron.glif + tcedilla + tcedilla.glif + tcircumflexbelow + tcircumflexbelow.glif + tcommaaccent + tcommaaccent.glif + tdotbelow + tdotbelow.glif + thorn + thorn.glif + three + three.glif + three.den + three.den.glif + three.inf + three.inf.glif + three.num + three.num.glif + three.sup + three.sup.glif + threeeighths + threeeighths.glif + threefifths + threefifths.glif + threequarters + threequarters.glif + tilde + tilde.glif + tildecmb + tildecmb.glif + tildecmb.cap + tildecmb.cap.glif + tlinebelow + tlinebelow.glif + trademark + trademark.glif + two + two.glif + two.den + two.den.glif + two.inf + two.inf.glif + two.num + two.num.glif + two.sup + two.sup.glif + twodotleader + twodotleader.glif + twofifths + twofifths.glif + twothirds + twothirds.glif + u + u.glif + uacute + uacute.glif + ubreve + ubreve.glif + ucaron + ucaron.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresisacute + udieresisacute.glif + udieresiscaron + udieresiscaron.glif + udieresisgrave + udieresisgrave.glif + udieresismacron + udieresismacron.glif + udotbelow + udotbelow.glif + ugrave + ugrave.glif + uhookabove + uhookabove.glif + uhorn + uhorn.glif + uhornacute + uhornacute.glif + uhorndotbelow + uhorndotbelow.glif + uhorngrave + uhorngrave.glif + uhornhookabove + uhornhookabove.glif + uhorntilde + uhorntilde.glif + uhungarumlaut + uhungarumlaut.glif + umacron + umacron.glif + underscore + underscore.glif + underscore.end + underscore.end.glif + underscore.middle + underscore.middle.glif + underscore.start + underscore.start.glif + underscore_bar_underscore.m + underscore_bar_underscore.m.glif + uni00A0 + uni00A_0.glif + uni0326 + uni0326.glif + uni1E9E + uni1E_9E_.glif + uni2011 + uni2011.glif + uni20B9 + uni20B_9.glif + uni20BA + uni20B_A_.glif + uni20BD + uni20B_D_.glif + uni2610 + uni2610.glif + uni2611 + uni2611.glif + uni2612 + uni2612.glif + uni2713 + uni2713.glif + uniA788 + uniA_788.glif + uniE0A0 + uniE_0A_0.glif + uniE0A1 + uniE_0A_1.glif + uniE0A2 + uniE_0A_2.glif + uniE0B0 + uniE_0B_0.glif + uniE0B1 + uniE_0B_1.glif + uniE0B2 + uniE_0B_2.glif + uniE0B3 + uniE_0B_3.glif + uogonek + uogonek.glif + updblhorzsngbxd + updblhorzsngbxd.glif + updblleftsngbxd + updblleftsngbxd.glif + updblrightsngbxd + updblrightsngbxd.glif + upeighthblock + upeighthblock.glif + uphalfblock + uphalfblock.glif + upheavydnhorzlightbxd + upheavydnhorzlightbxd.glif + upheavyhorzlightbxd + upheavyhorzlightbxd.glif + upheavyleftdnlightbxd + upheavyleftdnlightbxd.glif + upheavyleftlightbxd + upheavyleftlightbxd.glif + upheavyrightdnlightbxd + upheavyrightdnlightbxd.glif + upheavyrightlightbxd + upheavyrightlightbxd.glif + upleftdnleftdnrightquadrant + upleftdnleftdnrightquadrant.glif + upleftdnrightquadrant + upleftdnrightquadrant.glif + upleftquadrant + upleftquadrant.glif + upleftuprightdnleftquadrant + upleftuprightdnleftquadrant.glif + upleftuprightdnrightquadrant + upleftuprightdnrightquadrant.glif + uplightdnhorzheavybxd + uplightdnhorzheavybxd.glif + uplighthorzheavybxd + uplighthorzheavybxd.glif + uplightleftdnheavybxd + uplightleftdnheavybxd.glif + uplightleftheavybxd + uplightleftheavybxd.glif + uplightrightdnheavybxd + uplightrightdnheavybxd.glif + uplightrightheavybxd + uplightrightheavybxd.glif + uprightdnleftdnrightquadrant + uprightdnleftdnrightquadrant.glif + uprightdnleftquadrant + uprightdnleftquadrant.glif + uprightquadrant + uprightquadrant.glif + upsnghorzdblbxd + upsnghorzdblbxd.glif + upsngleftdblbxd + upsngleftdblbxd.glif + upsngrightdblbxd + upsngrightdblbxd.glif + uring + uring.glif + utilde + utilde.glif + v + v.glif + vdotbelow + vdotbelow.glif + vertdblhorzsngbxd + vertdblhorzsngbxd.glif + vertdblleftsngbxd + vertdblleftsngbxd.glif + vertdblrightsngbxd + vertdblrightsngbxd.glif + vertheavyhorzlightbxd + vertheavyhorzlightbxd.glif + vertheavyleftlightbxd + vertheavyleftlightbxd.glif + vertheavyrightlightbxd + vertheavyrightlightbxd.glif + verticallinelowmod + verticallinelowmod.glif + verticallinemod + verticallinemod.glif + vertlighthorzheavybxd + vertlighthorzheavybxd.glif + vertlightleftheavybxd + vertlightleftheavybxd.glif + vertlightrightheavybxd + vertlightrightheavybxd.glif + vertsnghorzdblbxd + vertsnghorzdblbxd.glif + vertsngleftdblbxd + vertsngleftdblbxd.glif + vertsngrightdblbxd + vertsngrightdblbxd.glif + w + w.glif + w_w_w.liga + w_w_w.liga.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wgrave + wgrave.glif + won + won.glif + x + x.glif + xdieresis + xdieresis.glif + y + y.glif + yacute + yacute.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + ydotaccent + ydotaccent.glif + ydotbelow + ydotbelow.glif + yen + yen.glif + ygrave + ygrave.glif + yhookabove + yhookabove.glif + ymacron + ymacron.glif + ytilde + ytilde.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zcircumflex + zcircumflex.glif + zdotaccent + zdotaccent.glif + zdotbelow + zdotbelow.glif + zero + zero.glif + zero.den + zero.den.glif + zero.inf + zero.inf.glif + zero.num + zero.num.glif + zero.sup + zero.sup.glif + zlinebelow + zlinebelow.glif + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/copyright.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/copyright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/copyright.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/copyright.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/d.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/d.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/d.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/d.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dagger.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dagger.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dagger.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dagger.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/daggerdbl.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/daggerdbl.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/daggerdbl.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/daggerdbl.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/darkshade.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/darkshade.glif new file mode 100644 index 00000000..a56d0f0a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/darkshade.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dbldnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dbldnhorzbxd.glif new file mode 100644 index 00000000..d00ba709 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dbldnhorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dbldnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dbldnleftbxd.glif new file mode 100644 index 00000000..7fd2e0e9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dbldnleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dbldnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dbldnrightbxd.glif new file mode 100644 index 00000000..dc308f2a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dbldnrightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dblhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dblhorzbxd.glif new file mode 100644 index 00000000..bfd0fb1f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dblhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dblprimemod.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dblprimemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dblprimemod.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dblprimemod.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dbluphorzbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dbluphorzbxd.glif new file mode 100644 index 00000000..ec40985e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dbluphorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dblupleftbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dblupleftbxd.glif new file mode 100644 index 00000000..cf6fc089 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dblupleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dbluprightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dbluprightbxd.glif new file mode 100644 index 00000000..086cf3d1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dbluprightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dblvertbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dblvertbxd.glif new file mode 100644 index 00000000..fa5d56f1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dblvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dblverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dblverthorzbxd.glif new file mode 100644 index 00000000..15d6a1d5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dblverthorzbxd.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dblvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dblvertleftbxd.glif new file mode 100644 index 00000000..d37b4c41 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dblvertleftbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dblvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dblvertrightbxd.glif new file mode 100644 index 00000000..58e1a57b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dblvertrightbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dcaron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..aafb54a6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dcircumflexbelow.glif new file mode 100644 index 00000000..c21700df --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dcroat.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..36ae5b96 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dcroat.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ddotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ddotbelow.glif new file mode 100644 index 00000000..67110fce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ddotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/degree.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/degree.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/degree.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/degree.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresis.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresis.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresis.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresisacute.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresisacute.cap.glif new file mode 100644 index 00000000..afcf27ee --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresisacute.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresisacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..5c0124ce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresisbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresisbelowcmb.glif new file mode 100644 index 00000000..e45fa759 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresisbelowcmb.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresiscaron.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresiscaron.cap.glif new file mode 100644 index 00000000..29cb13f8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresiscaron.cap.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresiscaron.glif new file mode 100644 index 00000000..e9ea0095 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresiscaron.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresiscmb.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresiscmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresiscmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresiscmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresiscmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresiscmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dieresiscmb.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresiscmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresisgrave.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresisgrave.cap.glif new file mode 100644 index 00000000..a3c0901c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresisgrave.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresisgrave.glif new file mode 100644 index 00000000..e8fad5a1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresisgrave.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresismacron.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresismacron.cap.glif new file mode 100644 index 00000000..c69ca6ed --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresismacron.cap.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresismacron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresismacron.glif new file mode 100644 index 00000000..ca78ea46 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dieresismacron.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/divide.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/divide.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/divide.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/divide.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dlinebelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dlinebelow.glif new file mode 100644 index 00000000..659c476b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dndblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dndblhorzsngbxd.glif new file mode 100644 index 00000000..66b705b3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dndblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dndblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dndblleftsngbxd.glif new file mode 100644 index 00000000..fe8771a6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dndblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dndblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dndblrightsngbxd.glif new file mode 100644 index 00000000..3d3d2e27 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dndblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dneighthblock.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dneighthblock.glif new file mode 100644 index 00000000..f9382474 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dneighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnfiveeighthsblock.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnfiveeighthsblock.glif new file mode 100644 index 00000000..6d6b327e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnhalfblock.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnhalfblock.glif new file mode 100644 index 00000000..5cb2299a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnhalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnheavyhorzlightbxd.glif new file mode 100644 index 00000000..04e4ecc3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnheavyleftlightbxd.glif new file mode 100644 index 00000000..942fb241 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnheavyleftuplightbxd.glif new file mode 100644 index 00000000..4d900306 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnheavyrightlightbxd.glif new file mode 100644 index 00000000..9fce2989 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnheavyrightuplightbxd.glif new file mode 100644 index 00000000..3a905b3d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnheavyuphorzlightbxd.glif new file mode 100644 index 00000000..70eadd8b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnheavyuphorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnleftquadrant.glif new file mode 100644 index 00000000..0f752b04 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnlighthorzheavybxd.glif new file mode 100644 index 00000000..78f62c2c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnlighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnlightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnlightleftheavybxd.glif new file mode 100644 index 00000000..30b2ea09 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnlightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnlightleftupheavybxd.glif new file mode 100644 index 00000000..aa758b21 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnlightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnlightrightheavybxd.glif new file mode 100644 index 00000000..a1fd3307 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnlightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnlightrightupheavybxd.glif new file mode 100644 index 00000000..b1293a6a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnlightuphorzheavybxd.glif new file mode 100644 index 00000000..3db3ada5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnlightuphorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnquarterblock.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnquarterblock.glif new file mode 100644 index 00000000..5dc81108 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnrightquadrant.glif new file mode 100644 index 00000000..012bd532 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnrightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnseveneighthsblock.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnseveneighthsblock.glif new file mode 100644 index 00000000..a47c62d6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnsnghorzdblbxd.glif new file mode 100644 index 00000000..7d244c99 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnsngleftdblbxd.glif new file mode 100644 index 00000000..607c9a4a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnsngrightdblbxd.glif new file mode 100644 index 00000000..1df546f2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnthreeeighthsblock.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnthreeeighthsblock.glif new file mode 100644 index 00000000..e54a10a3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnthreequartersblock.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnthreequartersblock.glif new file mode 100644 index 00000000..e7b739c3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dnthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dollar.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dollar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dollar.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dollar.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dollar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dollar_greater.liga.glif new file mode 100644 index 00000000..d6b80ccb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dollar_greater.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dong.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dong.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dong.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dong.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dotaccent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dotaccent.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dotaccent.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dotaccentcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dotaccentcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dotaccentcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dotaccentcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dotaccentcmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dotaccentcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dotaccentcmb.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dotaccentcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dotbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dotbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dotbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dotbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dotlessi.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dotlessi.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/dotlessi.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dotlessi.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dotlessj.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dotlessj.glif new file mode 100644 index 00000000..b3e53013 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/dotlessj.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/e.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/e.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/e.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/e.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..52dfa8c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ebreve.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..bd560fd6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ebreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecaron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..ef9eb414 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..19cfbb73 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecircumflexacute.glif new file mode 100644 index 00000000..a4b7ad44 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecircumflexdotbelow.glif new file mode 100644 index 00000000..2670f1bc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecircumflexgrave.glif new file mode 100644 index 00000000..7be696a0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecircumflexhookabove.glif new file mode 100644 index 00000000..278f01b4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecircumflextilde.glif new file mode 100644 index 00000000..b19ca7d2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ecircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/edieresis.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..23246012 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/edieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/edotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..c211ffb6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/edotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/edotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/edotbelow.glif new file mode 100644 index 00000000..51b298f5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/edotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/egrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..981228a6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/egrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ehookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ehookabove.glif new file mode 100644 index 00000000..a002ec64 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ehookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eight.den.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eight.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eight.den.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eight.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eight.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eight.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eight.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eight.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eight.inf.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eight.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eight.inf.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eight.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eight.num.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eight.num.glif new file mode 100644 index 00000000..b8fc65b8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eight.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eight.sup.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eight.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/eight.sup.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eight.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ellipsis.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ellipsis.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ellipsis.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ellipsis.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/emacron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..81d274da --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/emacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/emdash.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/emdash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/emdash.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/emdash.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/endash.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/endash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/endash.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/endash.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eng.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eng.glif new file mode 100644 index 00000000..4d6b263e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eng.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eogonek.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..ce889795 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eogonek.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal.end.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal.end.glif new file mode 100644 index 00000000..3b211bbb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/equal.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/equal.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal.middle.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal.middle.glif new file mode 100644 index 00000000..93ca7856 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal.start.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal.start.glif new file mode 100644 index 00000000..447ea850 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_asciitilde.liga.glif new file mode 100644 index 00000000..42bb0d7d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_asciitilde.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_bar.end.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_bar.end.glif new file mode 100644 index 00000000..01b5e40c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_bar.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_bar.liga.glif new file mode 100644 index 00000000..8c2df928 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_bar.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_bar_bar.end.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_bar_bar.end.glif new file mode 100644 index 00000000..8ba38094 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_bar_bar.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_bar_bar.liga.glif new file mode 100644 index 00000000..033e9503 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_bar_bar.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_bar_bar_equal.middle.glif new file mode 100644 index 00000000..e3cae047 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_bar_bar_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_bar_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_bar_equal.middle.glif new file mode 100644 index 00000000..d1057365 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_bar_equal.middle.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_colon_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_colon_equal.middle.glif new file mode 100644 index 00000000..bbb1ac3d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_colon_equal.middle.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_equal.liga.glif new file mode 100644 index 00000000..9ff9111f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_equal.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_equal_equal.liga.glif new file mode 100644 index 00000000..ef822c41 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_equal_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_exclam_equal.middle.glif new file mode 100644 index 00000000..a4564382 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_exclam_equal.middle.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_greater.end.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_greater.end.glif new file mode 100644 index 00000000..307cbba8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_greater.end.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_greater.liga.glif new file mode 100644 index 00000000..ce392e3c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_greater_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_greater_equal.middle.glif new file mode 100644 index 00000000..293c1a40 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_greater_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_greater_greater.end.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_greater_greater.end.glif new file mode 100644 index 00000000..79e8e521 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_greater_greater.end.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_greater_greater.liga.glif new file mode 100644 index 00000000..9c71949d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_greater_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_greater_greater_equal.m.glif new file mode 100644 index 00000000..ee4364dd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_greater_greater_equal.m.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_less.end.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_less.end.glif new file mode 100644 index 00000000..ccb8cd3e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_less.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_less.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_less.liga.glif new file mode 100644 index 00000000..15f714fe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_less.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_less_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_less_equal.middle.glif new file mode 100644 index 00000000..5269a697 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_less_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_less_less.end.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_less_less.end.glif new file mode 100644 index 00000000..96d20536 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_less_less.end.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_less_less.liga.glif new file mode 100644 index 00000000..1c5bb271 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_less_less.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_less_less_equal.middle.glif new file mode 100644 index 00000000..7387ceec --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_less_less_equal.middle.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_slash.end.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_slash.end.glif new file mode 100644 index 00000000..1ece876e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_slash.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_slash.liga.glif new file mode 100644 index 00000000..fc29c3d9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_slash.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_slash_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_slash_equal.middle.glif new file mode 100644 index 00000000..d78b1617 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_slash_equal.middle.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_slash_slash.end.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_slash_slash.end.glif new file mode 100644 index 00000000..ff6c1f95 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_slash_slash.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_slash_slash.liga.glif new file mode 100644 index 00000000..cc44d1cf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_slash_slash.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_slash_slash_equal.middle.glif new file mode 100644 index 00000000..2cd47e8b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/equal_slash_slash_equal.middle.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eth.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eth.glif new file mode 100644 index 00000000..21d2854b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/eth.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/etilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/etilde.glif new file mode 100644 index 00000000..e1399a0e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/etilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/exclam.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/exclam.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/exclam.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/exclam.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/exclam_asciitilde.liga.glif new file mode 100644 index 00000000..062b72f8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/exclam_asciitilde.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/exclam_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/exclam_equal.liga.glif new file mode 100644 index 00000000..0e7617b3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/exclam_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/exclam_equal_equal.liga.glif new file mode 100644 index 00000000..fade7fb3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/exclam_equal_equal.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/exclam_exclam.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/exclam_exclam.liga.glif new file mode 100644 index 00000000..92766d8a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/exclam_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/exclam_exclam_period.liga.glif new file mode 100644 index 00000000..d5bfd152 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/exclam_exclam_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/exclamdown.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/exclamdown.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/exclamdown.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/exclamdown.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/f.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/f.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/f.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/f.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/five.den.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/five.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/five.den.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/five.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/five.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/five.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/five.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/five.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/five.inf.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/five.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/five.inf.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/five.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/five.num.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/five.num.glif new file mode 100644 index 00000000..1e32166f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/five.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/five.sup.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/five.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/five.sup.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/five.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/fiveeighths.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/fiveeighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/fiveeighths.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/fiveeighths.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/fivesixths.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/fivesixths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/fivesixths.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/fivesixths.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/four.den.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/four.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/four.den.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/four.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/four.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/four.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/four.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/four.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/four.inf.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/four.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/four.inf.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/four.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/four.num.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/four.num.glif new file mode 100644 index 00000000..62ef719b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/four.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/four.sup.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/four.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/four.sup.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/four.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/fourfifths.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/fourfifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/fourfifths.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/fourfifths.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/fracbar.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/fracbar.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/fracbar.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/fracbar.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/fraction.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/fraction.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/fraction.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/fraction.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/fullblock.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/fullblock.glif new file mode 100644 index 00000000..c0d56679 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/fullblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/g.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/g.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/g.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/g.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gbreve.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..63447b5d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gbreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gcaron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gcaron.glif new file mode 100644 index 00000000..44304fa6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gcircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..fd8993a8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..399e6cdf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gdotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..804867be --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/germandbls.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..9b67b38b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/germandbls.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gmacron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gmacron.glif new file mode 100644 index 00000000..d498ee6b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gmacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/grave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/grave.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/grave.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/grave.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gravecmb.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gravecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gravecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gravecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gravecmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gravecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/gravecmb.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/gravecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/greater.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/greater.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_colon.liga.glif new file mode 100644 index 00000000..64605444 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_equal.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_equal.glif new file mode 100644 index 00000000..ee85cc04 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_equal.liga.glif new file mode 100644 index 00000000..bb5dcbb2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_equal.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_equal.start.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_equal.start.glif new file mode 100644 index 00000000..0d845d73 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_equal.start.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_equal_greater.liga.glif new file mode 100644 index 00000000..48a5b543 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_equal_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_greater.liga.glif new file mode 100644 index 00000000..a7208ce7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_greater_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_greater_equal.liga.glif new file mode 100644 index 00000000..453bed67 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_greater_equal.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_greater_equal.start.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_greater_equal.start.glif new file mode 100644 index 00000000..e18ec608 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_greater_equal.start.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_greater_greater.liga.glif new file mode 100644 index 00000000..c4289f69 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_greater_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_greater_hyphen.liga.glif new file mode 100644 index 00000000..db500f8e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_greater_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_greater_hyphen.start.glif new file mode 100644 index 00000000..b6b4361d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_greater_hyphen.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_hyphen.liga.glif new file mode 100644 index 00000000..aeea023c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_hyphen.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_hyphen.start.glif new file mode 100644 index 00000000..b1ea7e59 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_hyphen.start.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_hyphen_greater.liga.glif new file mode 100644 index 00000000..0a25bff9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greater_hyphen_greater.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/greaterequal.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greaterequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/greaterequal.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/greaterequal.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/guillemetleft.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/guillemetleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/guillemetleft.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/guillemetleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/guillemetright.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/guillemetright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/guillemetright.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/guillemetright.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/guilsinglleft.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/guilsinglleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/guilsinglleft.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/guilsinglleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/guilsinglright.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/guilsinglright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/guilsinglright.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/guilsinglright.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/h.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/h.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/h.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/h.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hbar.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..9b7ecbc9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hbar.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hbrevebelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hbrevebelow.glif new file mode 100644 index 00000000..6c7c510c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hbrevebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hcedilla.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hcedilla.glif new file mode 100644 index 00000000..786438c6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hcedilla.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hcircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..4203c490 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hdotbelow.glif new file mode 100644 index 00000000..6041a610 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavydbldashhorzbxd.glif new file mode 100644 index 00000000..68c248fc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavydbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavydbldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavydbldashvertbxd.glif new file mode 100644 index 00000000..8b765941 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavydbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavydnbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavydnbxd.glif new file mode 100644 index 00000000..1c4cd504 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavydnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavydnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavydnhorzbxd.glif new file mode 100644 index 00000000..7d385f55 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavydnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavydnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavydnleftbxd.glif new file mode 100644 index 00000000..13125281 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavydnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavydnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavydnrightbxd.glif new file mode 100644 index 00000000..a68f4821 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavydnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyhorzbxd.glif new file mode 100644 index 00000000..e62d03f7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyhorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyleftbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyleftbxd.glif new file mode 100644 index 00000000..f68b33ac --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyleftlightrightbxd.glif new file mode 100644 index 00000000..1565e3de --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyleftlightrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyquaddashhorzbxd.glif new file mode 100644 index 00000000..8ff4c1d9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyquaddashvertbxd.glif new file mode 100644 index 00000000..667b2b7f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyrightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyrightbxd.glif new file mode 100644 index 00000000..f4e37fef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavytrpldashhorzbxd.glif new file mode 100644 index 00000000..1806f4e5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavytrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavytrpldashvertbxd.glif new file mode 100644 index 00000000..a1f58af2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavytrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyupbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyupbxd.glif new file mode 100644 index 00000000..b9cffc07 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyuphorzbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyuphorzbxd.glif new file mode 100644 index 00000000..9ffaa902 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyupleftbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyupleftbxd.glif new file mode 100644 index 00000000..ec53a452 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyuplightdnbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyuplightdnbxd.glif new file mode 100644 index 00000000..2015d75c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyuplightdnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyuprightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyuprightbxd.glif new file mode 100644 index 00000000..f1c7c14e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyvertbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyvertbxd.glif new file mode 100644 index 00000000..acd5f0cf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyverthorzbxd.glif new file mode 100644 index 00000000..fd30d7c8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyvertleftbxd.glif new file mode 100644 index 00000000..1b6d7866 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyvertrightbxd.glif new file mode 100644 index 00000000..33ca5c0f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/heavyvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hlinebelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hlinebelow.glif new file mode 100644 index 00000000..babe0c8c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hookcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hookcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hookcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hookcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hookcmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hookcmb.glif new file mode 100644 index 00000000..b8caf3fd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hookcmb.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/horizontalbar.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/horizontalbar.glif new file mode 100644 index 00000000..ef4b3086 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/horizontalbar.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hungarumlaut.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hungarumlaut.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hungarumlaut.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hungarumlautcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hungarumlautcmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hungarumlautcmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hungarumlautcmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hungarumlautcmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hungarumlautcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hungarumlautcmb.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hungarumlautcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen.end.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen.end.glif new file mode 100644 index 00000000..e7d48287 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hyphen.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/hyphen.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen.middle.glif new file mode 100644 index 00000000..fc70de55 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen.start.glif new file mode 100644 index 00000000..d1503b3f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_asciitilde.liga.glif new file mode 100644 index 00000000..ea026e25 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_asciitilde.liga.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_bar.end.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_bar.end.glif new file mode 100644 index 00000000..303c0225 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_bar.end.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_bar.liga.glif new file mode 100644 index 00000000..d3a22cce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_bar.liga.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_bar.end.glif new file mode 100644 index 00000000..a5c109fd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_bar.end.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_bar.liga.glif new file mode 100644 index 00000000..ee43372a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_bar.liga.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif new file mode 100644 index 00000000..75fcbbee --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_hyphen.middle.glif new file mode 100644 index 00000000..5bd3a50f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_bar_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_greater.end.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_greater.end.glif new file mode 100644 index 00000000..4ca4d21c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_greater.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_greater.liga.glif new file mode 100644 index 00000000..73cf4236 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_greater.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_greater.end.glif new file mode 100644 index 00000000..73d84c49 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_greater.end.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_greater.liga.glif new file mode 100644 index 00000000..b3c1cc3b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_greater.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif new file mode 100644 index 00000000..6d2defc0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_hyphen.middle.glif new file mode 100644 index 00000000..226ed197 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_greater_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_hyphen.liga.glif new file mode 100644 index 00000000..4c49ab56 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_hyphen.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..52fb755c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_less.end.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_less.end.glif new file mode 100644 index 00000000..3a457609 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_less.end.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_less.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_less.liga.glif new file mode 100644 index 00000000..24efcb0c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_less.liga.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_less_hyphen.middle.glif new file mode 100644 index 00000000..1a7cd11a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_less_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_less_less.end.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_less_less.end.glif new file mode 100644 index 00000000..c744f399 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_less_less.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_less_less.liga.glif new file mode 100644 index 00000000..2b398db5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_less_less.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_less_less_hyphen.middle.glif new file mode 100644 index 00000000..4f1d887f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/hyphen_less_less_hyphen.middle.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/i.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/i.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/i.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/i.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/iacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..a0ffc6d0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/iacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ibreve.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..d53cbc35 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ibreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/icaron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/icaron.glif new file mode 100644 index 00000000..a2cba126 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/icaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/icircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..b6b84eb4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/icircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/idieresis.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..08e85818 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/idieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/idotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/idotaccent.glif new file mode 100644 index 00000000..5a3a3438 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/idotaccent.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/idotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/idotbelow.glif new file mode 100644 index 00000000..2506bb5d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/idotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/igrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..878c3248 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/igrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ihookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ihookabove.glif new file mode 100644 index 00000000..e06486a7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ihookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/imacron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..d531f74a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/imacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/iogonek.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..b9689b01 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/iogonek.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/itilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..ef906b5a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/itilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/j.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/j.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/j.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/j.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/jcaron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/jcaron.glif new file mode 100644 index 00000000..5d3190df --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/jcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/jcircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..b79dcb69 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/k.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/k.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/k.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/k.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/kcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..62f40dca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/kdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/kdotbelow.glif new file mode 100644 index 00000000..849b6ac0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/kdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/klinebelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/klinebelow.glif new file mode 100644 index 00000000..a1baf5bf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/klinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/l.dot.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/l.dot.glif new file mode 100644 index 00000000..e40e97ab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/l.dot.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/l.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/l.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/l.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/l.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..d9955f4e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/layerinfo.plist b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/layerinfo.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/layerinfo.plist rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/layerinfo.plist diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lcaron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..dfdf9234 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lcircumflexbelow.glif new file mode 100644 index 00000000..1164f770 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..fff9f7f2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ldotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ldotbelow.glif new file mode 100644 index 00000000..4b960671 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ldotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftdnheavyrightuplightbxd.glif new file mode 100644 index 00000000..8407ee02 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftdnheavyrightuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lefteighthblock.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lefteighthblock.glif new file mode 100644 index 00000000..bd0981c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lefteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftfiveeighthsblock.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftfiveeighthsblock.glif new file mode 100644 index 00000000..1db3b143 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lefthalfblock.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lefthalfblock.glif new file mode 100644 index 00000000..7ad2b780 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lefthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftheavyrightdnlightbxd.glif new file mode 100644 index 00000000..318ac4cf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftheavyrightuplightbxd.glif new file mode 100644 index 00000000..0c581e09 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftheavyrightvertlightbxd.glif new file mode 100644 index 00000000..3dff1b51 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftheavyrightvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftlightrightdnheavybxd.glif new file mode 100644 index 00000000..a2422973 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftlightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftlightrightupheavybxd.glif new file mode 100644 index 00000000..f92508ca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftlightrightvertheavybxd.glif new file mode 100644 index 00000000..16b12551 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftlightrightvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftquarterblock.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftquarterblock.glif new file mode 100644 index 00000000..0a473fc6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftseveneighthsblock.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftseveneighthsblock.glif new file mode 100644 index 00000000..e6dd7d1a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftthreeeighthsblock.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftthreeeighthsblock.glif new file mode 100644 index 00000000..c6bf4e61 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftthreequartersblock.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftthreequartersblock.glif new file mode 100644 index 00000000..75cb3ef3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftupheavyrightdnlightbxd.glif new file mode 100644 index 00000000..a6971f73 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/leftupheavyrightdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/less.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/less.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_asciitilde.liga.glif new file mode 100644 index 00000000..dd4c29ea --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_asciitilde.liga.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..dcc78427 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_asciitilde_asciitilde.liga.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_asciitilde_greater.liga.glif new file mode 100644 index 00000000..f9d79d71 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_asciitilde_greater.liga.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_asterisk.liga.glif new file mode 100644 index 00000000..1bc15f94 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_asterisk_greater.liga.glif new file mode 100644 index 00000000..a7ea9dec --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_asterisk_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_bar.liga.glif new file mode 100644 index 00000000..d01b3d69 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_bar.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_bar_bar.liga.glif new file mode 100644 index 00000000..8ebdd055 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_bar_bar.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_bar_bar_bar.liga.glif new file mode 100644 index 00000000..5ef2970c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_bar_bar_bar.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_bar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_bar_greater.liga.glif new file mode 100644 index 00000000..543109d4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_bar_greater.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_colon.liga.glif new file mode 100644 index 00000000..9865ad6d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_colon.liga.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_dollar.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_dollar.liga.glif new file mode 100644 index 00000000..9a0806f5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_dollar.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_dollar_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_dollar_greater.liga.glif new file mode 100644 index 00000000..08481087 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_dollar_greater.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_equal.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_equal.glif new file mode 100644 index 00000000..2161f4e8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_equal.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_equal.liga.glif new file mode 100644 index 00000000..537c5ea3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_equal.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_equal.start.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_equal.start.glif new file mode 100644 index 00000000..549caaf6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_equal.start.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_equal_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_equal_greater.liga.glif new file mode 100644 index 00000000..6e281d9c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_equal_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_equal_less.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_equal_less.liga.glif new file mode 100644 index 00000000..3ca4a9de --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_equal_less.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..05029a2f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_greater.liga.glif new file mode 100644 index 00000000..3b9948a4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_greater.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_hyphen.liga.glif new file mode 100644 index 00000000..96cce0ce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_hyphen.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_hyphen.start.glif new file mode 100644 index 00000000..d4d7ca79 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_hyphen.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_hyphen_greater.liga.glif new file mode 100644 index 00000000..da7bbcc1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_hyphen_greater.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_hyphen_less.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_hyphen_less.liga.glif new file mode 100644 index 00000000..1544d674 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_hyphen_less.liga.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_less.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_less.liga.glif new file mode 100644 index 00000000..8dedcdaf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_less.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_less_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_less_equal.liga.glif new file mode 100644 index 00000000..04ba2efe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_less_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_less_equal.start.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_less_equal.start.glif new file mode 100644 index 00000000..aadd7624 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_less_equal.start.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_less_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_less_hyphen.liga.glif new file mode 100644 index 00000000..2199e40f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_less_hyphen.liga.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_less_hyphen.start.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_less_hyphen.start.glif new file mode 100644 index 00000000..b0b4a84e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_less_hyphen.start.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_less_less.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_less_less.liga.glif new file mode 100644 index 00000000..40ad6dca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_less_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_plus.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_plus.liga.glif new file mode 100644 index 00000000..8cdd8443 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_plus.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_plus_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_plus_greater.liga.glif new file mode 100644 index 00000000..5c4de59f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_plus_greater.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_slash.liga.glif new file mode 100644 index 00000000..fc95934f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_slash.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_slash_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_slash_greater.liga.glif new file mode 100644 index 00000000..0992517a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/less_slash_greater.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/lessequal.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lessequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/lessequal.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lessequal.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightarcdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightarcdnleftbxd.glif new file mode 100644 index 00000000..27c9daf2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightarcdnleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightarcdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightarcdnrightbxd.glif new file mode 100644 index 00000000..345284c6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightarcdnrightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightarcupleftbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightarcupleftbxd.glif new file mode 100644 index 00000000..3d1410a0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightarcupleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightarcuprightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightarcuprightbxd.glif new file mode 100644 index 00000000..45a41780 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightarcuprightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdbldashhorzbxd.glif new file mode 100644 index 00000000..7b45593c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdbldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdbldashvertbxd.glif new file mode 100644 index 00000000..a4913454 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdiagcrossbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdiagcrossbxd.glif new file mode 100644 index 00000000..53c1ccc8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdiagcrossbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdiagupleftdnrightbxd.glif new file mode 100644 index 00000000..97afc1b3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdiagupleftdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdiaguprightdnleftbxd.glif new file mode 100644 index 00000000..946d3450 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdiaguprightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdnbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdnbxd.glif new file mode 100644 index 00000000..3a50261a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdnhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdnhorzbxd.glif new file mode 100644 index 00000000..1a41ad78 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdnleftbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdnleftbxd.glif new file mode 100644 index 00000000..2c9c50bd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdnrightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdnrightbxd.glif new file mode 100644 index 00000000..c9c0ad01 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lighthorzbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lighthorzbxd.glif new file mode 100644 index 00000000..9191c18b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lighthorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightleftbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightleftbxd.glif new file mode 100644 index 00000000..850dab99 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightleftheavyrightbxd.glif new file mode 100644 index 00000000..67ea204a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightleftheavyrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightquaddashhorzbxd.glif new file mode 100644 index 00000000..a0e88821 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightquaddashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightquaddashvertbxd.glif new file mode 100644 index 00000000..f112be46 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightrightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightrightbxd.glif new file mode 100644 index 00000000..9aab6834 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightshade.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightshade.glif new file mode 100644 index 00000000..0e5291b7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightshade.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lighttrpldashhorzbxd.glif new file mode 100644 index 00000000..61622aeb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lighttrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lighttrpldashvertbxd.glif new file mode 100644 index 00000000..7063a1bb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lighttrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightupbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightupbxd.glif new file mode 100644 index 00000000..61f5d9b3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightupheavydnbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightupheavydnbxd.glif new file mode 100644 index 00000000..3fdca957 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightupheavydnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightuphorzbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightuphorzbxd.glif new file mode 100644 index 00000000..21e63621 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightupleftbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightupleftbxd.glif new file mode 100644 index 00000000..f39e2699 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightuprightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightuprightbxd.glif new file mode 100644 index 00000000..fb992988 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightvertbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightvertbxd.glif new file mode 100644 index 00000000..1ab08f1d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightverthorzbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightverthorzbxd.glif new file mode 100644 index 00000000..e1fa4746 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightvertleftbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightvertleftbxd.glif new file mode 100644 index 00000000..830392b5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightvertrightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightvertrightbxd.glif new file mode 100644 index 00000000..90df71bc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lightvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ligspacer.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ligspacer.glif new file mode 100644 index 00000000..aaf0214e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ligspacer.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/llinebelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/llinebelow.glif new file mode 100644 index 00000000..b1606f28 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/llinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lmacrondotbelow.glif new file mode 100644 index 00000000..2e9294a1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lmacrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lslash.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..8466eee6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/lslash.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/m.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/m.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/m.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/m.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/macron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/macron.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/macron.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/macron.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/macronbelowcmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/macronbelowcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/macronbelowcmb.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/macronbelowcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/macroncmb.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/macroncmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/macroncmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/macroncmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/macroncmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/macroncmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/macroncmb.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/macroncmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/macronlowmod.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/macronlowmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/macronlowmod.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/macronlowmod.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/macute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/macute.glif new file mode 100644 index 00000000..9f9813ca --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/macute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/mdotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/mdotaccent.glif new file mode 100644 index 00000000..c4e7e4a7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/mdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/mdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/mdotbelow.glif new file mode 100644 index 00000000..ecb83f72 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/mdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/mediumshade.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/mediumshade.glif new file mode 100644 index 00000000..37be9904 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/mediumshade.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/middotcat.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/middotcat.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/middotcat.cap.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/middotcat.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/middotcat.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/middotcat.glif new file mode 100644 index 00000000..7f93e8b2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/middotcat.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/minus.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/minus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/minus.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/minus.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/mu.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/mu.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/mu.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/mu.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/multiply.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/multiply.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/multiply.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/multiply.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/n.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/n.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/n.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/n.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/nacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..6f2ce732 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/nacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/naira.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/naira.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/naira.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/naira.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ncaron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..7ed9ca74 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ncaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ncircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ncircumflexbelow.glif new file mode 100644 index 00000000..c0ac714c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ncircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ncommaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..ee010158 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ndotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ndotaccent.glif new file mode 100644 index 00000000..c815949c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ndotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ndotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ndotbelow.glif new file mode 100644 index 00000000..a65c1852 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ngrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ngrave.glif new file mode 100644 index 00000000..d26ff3c7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/nine.den.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/nine.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/nine.den.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/nine.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/nine.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/nine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/nine.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/nine.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/nine.inf.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/nine.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/nine.inf.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/nine.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/nine.num.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/nine.num.glif new file mode 100644 index 00000000..36a7e399 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/nine.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/nine.sup.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/nine.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/nine.sup.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/nine.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/nlinebelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/nlinebelow.glif new file mode 100644 index 00000000..6d243c0b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/nlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/notequal.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/notequal.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/notequal.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/notequal.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ntilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..2d705e10 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign.end.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign.end.glif new file mode 100644 index 00000000..8513ee19 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign.end.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/numbersign.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/numbersign.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign.middle.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign.middle.glif new file mode 100644 index 00000000..9488fe9d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign.start.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign.start.glif new file mode 100644 index 00000000..27e64ce2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign.start.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_braceleft.liga.glif new file mode 100644 index 00000000..ef9c5f68 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_braceleft.liga.glif @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_bracketleft.liga.glif new file mode 100644 index 00000000..922f123f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_bracketleft.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_colon.liga.glif new file mode 100644 index 00000000..967ed805 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_colon.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_equal.liga.glif new file mode 100644 index 00000000..7a90d15d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_equal.liga.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_exclam.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_exclam.liga.glif new file mode 100644 index 00000000..12127b00 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_exclam.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_parenleft.liga.glif new file mode 100644 index 00000000..43be77f6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_parenleft.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_question.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_question.liga.glif new file mode 100644 index 00000000..cbba0fff --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_underscore.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_underscore.liga.glif new file mode 100644 index 00000000..c4c9d7ef --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_underscore.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_underscore_parenleft.glif new file mode 100644 index 00000000..53b1752a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/numbersign_underscore_parenleft.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/o.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/o.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/o.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/o.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/oacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..03550f50 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/oacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/obreve.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..6f103a35 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/obreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocaron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocaron.glif new file mode 100644 index 00000000..14d5f183 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..eda210a4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocircumflexacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocircumflexacute.glif new file mode 100644 index 00000000..6960a74b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocircumflexacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocircumflexdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocircumflexdotbelow.glif new file mode 100644 index 00000000..4fac7a3e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocircumflexdotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocircumflexgrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocircumflexgrave.glif new file mode 100644 index 00000000..474f822f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocircumflexgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocircumflexhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocircumflexhookabove.glif new file mode 100644 index 00000000..0f89a1e3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocircumflexhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocircumflextilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocircumflextilde.glif new file mode 100644 index 00000000..d56b145d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ocircumflextilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/odieresis.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..30227154 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/odieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/odotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/odotaccent.glif new file mode 100644 index 00000000..d6b6f476 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/odotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/odotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/odotbelow.glif new file mode 100644 index 00000000..59c1de4c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/odotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/oe.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/oe.glif new file mode 100644 index 00000000..c036f573 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/oe.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ogonek.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ogonek.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ogonek.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ogonek.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ogonekcmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ogonekcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ogonekcmb.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ogonekcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ograve.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..8dbc8574 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ograve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohookabove.glif new file mode 100644 index 00000000..1d0ba12a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohorn.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohorn.glif new file mode 100644 index 00000000..63fefa6d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohorn.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohornacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohornacute.glif new file mode 100644 index 00000000..db1ac6e1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohorndotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohorndotbelow.glif new file mode 100644 index 00000000..aea32dcd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohorndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohorngrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohorngrave.glif new file mode 100644 index 00000000..4b1344fe --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohorngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohornhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohornhookabove.glif new file mode 100644 index 00000000..153e0418 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohorntilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohorntilde.glif new file mode 100644 index 00000000..c377e78d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohorntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..75d64db0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/omacron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..67fad8ad --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/omacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/one.den.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/one.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/one.den.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/one.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/one.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/one.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/one.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/one.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/one.inf.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/one.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/one.inf.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/one.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/one.num.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/one.num.glif new file mode 100644 index 00000000..33b01843 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/one.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/one.sup.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/one.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/one.sup.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/one.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/oneeighth.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/oneeighth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/oneeighth.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/oneeighth.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/onefifth.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/onefifth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/onefifth.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/onefifth.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/onehalf.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/onehalf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/onehalf.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/onehalf.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/onequarter.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/onequarter.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/onequarter.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/onequarter.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/onesixth.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/onesixth.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/onesixth.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/onesixth.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/onethird.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/onethird.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/onethird.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/onethird.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/oogonek.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/oogonek.glif new file mode 100644 index 00000000..227b046b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/oogonek.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ordfeminine.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ordfeminine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ordfeminine.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ordfeminine.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ordmasculine.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ordmasculine.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ordmasculine.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ordmasculine.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/oslash.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..da3ebe7c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/oslash.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/otilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..0d5b24e6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/otilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/p.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/p.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/p.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/p.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/paragraph.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/paragraph.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/paragraph.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/paragraph.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/parenleft.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/parenleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/parenleft.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/parenleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/parenright.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/parenright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/parenright.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/parenright.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/percent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/percent.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/percent.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/percent.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/percent_percent.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/percent_percent.liga.glif new file mode 100644 index 00000000..cce98635 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/percent_percent.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/period.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/period.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_equal.liga.glif new file mode 100644 index 00000000..a4dfe968 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_hyphen.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_hyphen.liga.glif new file mode 100644 index 00000000..f77f1504 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_period.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_period.liga.glif new file mode 100644 index 00000000..7040f36f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_period_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_period_equal.liga.glif new file mode 100644 index 00000000..a26f649a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_period_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_period_less.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_period_less.liga.glif new file mode 100644 index 00000000..8d662405 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_period_less.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_period_period.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_period_period.liga.glif new file mode 100644 index 00000000..25895b8b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_period_period.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_question.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_question.liga.glif new file mode 100644 index 00000000..41aab1b0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/period_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/periodcentered.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/periodcentered.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/periodcentered.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/periodcentered.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/peso.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/peso.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/peso.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/peso.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/plus.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/plus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/plus.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/plus.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/plus_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/plus_greater.liga.glif new file mode 100644 index 00000000..21f36121 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/plus_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/plus_plus.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/plus_plus.liga.glif new file mode 100644 index 00000000..5a5eaa26 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/plus_plus.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/plus_plus_plus.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/plus_plus_plus.liga.glif new file mode 100644 index 00000000..50fab2b4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/plus_plus_plus.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/plusminus.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/plusminus.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/plusminus.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/plusminus.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/primemod.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/primemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/primemod.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/primemod.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/published.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/published.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/published.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/published.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/q.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/q.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/q.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/q.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/question.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/question.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/question.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/question.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/question_colon.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/question_colon.liga.glif new file mode 100644 index 00000000..f5467224 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/question_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/question_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/question_equal.liga.glif new file mode 100644 index 00000000..e69e0ae8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/question_equal.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/question_period.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/question_period.liga.glif new file mode 100644 index 00000000..c5330f1a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/question_period.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/question_question.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/question_question.liga.glif new file mode 100644 index 00000000..f83e514f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/question_question.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/questiondown.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/questiondown.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/questiondown.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/questiondown.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/quotedbl.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/quotedbl.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/quotedbl.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/quotedbl.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/quotedblbase.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/quotedblbase.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/quotedblbase.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/quotedblbase.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/quotedblleft.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/quotedblleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/quotedblleft.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/quotedblleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/quotedblright.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/quotedblright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/quotedblright.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/quotedblright.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/quoteleft.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/quoteleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/quoteleft.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/quoteleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/quoteright.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/quoteright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/quoteright.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/quoteright.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/quotesinglbase.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/quotesinglbase.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/quotesinglbase.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/quotesinglbase.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/quotesingle.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/quotesingle.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/quotesingle.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/quotesingle.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/r.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/r.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/r.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/r.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/racute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/racute.glif new file mode 100644 index 00000000..9ef2dec6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/racute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rcaron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..397d08a4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..3725aac9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rdotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rdotaccent.glif new file mode 100644 index 00000000..ecdac240 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rdotbelow.glif new file mode 100644 index 00000000..129963e9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/registered.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/registered.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/registered.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/registered.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightdnheavyleftuplightbxd.glif new file mode 100644 index 00000000..4f02ea4e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightdnheavyleftuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/righteighthblock.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/righteighthblock.glif new file mode 100644 index 00000000..ee46a32d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/righteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/righthalfblock.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/righthalfblock.glif new file mode 100644 index 00000000..9f3ba315 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/righthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightheavyleftdnlightbxd.glif new file mode 100644 index 00000000..2174cfa7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightheavyleftuplightbxd.glif new file mode 100644 index 00000000..c405ab63 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightheavyleftvertlightbxd.glif new file mode 100644 index 00000000..273c562e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightheavyleftvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightlightleftdnheavybxd.glif new file mode 100644 index 00000000..baf04695 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightlightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightlightleftupheavybxd.glif new file mode 100644 index 00000000..65bf7672 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightlightleftvertheavybxd.glif new file mode 100644 index 00000000..df354958 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightlightleftvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightupheavyleftdnlightbxd.glif new file mode 100644 index 00000000..a8af9614 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rightupheavyleftdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ring.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ring.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ring.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ring.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ringcmb.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ringcmb.cap.glif new file mode 100644 index 00000000..a3ebf272 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ringcmb.cap.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ringcmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ringcmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ringcmb.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ringcmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ringhalfleft.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ringhalfleft.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ringhalfleft.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ringhalfleft.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ringhalfright.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ringhalfright.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/ringhalfright.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ringhalfright.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rlinebelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rlinebelow.glif new file mode 100644 index 00000000..2e8b238d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rmacrondotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rmacrondotbelow.glif new file mode 100644 index 00000000..b7ff2e45 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/rmacrondotbelow.glif @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/s.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/s.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/s.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/s.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/sacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..1b4dfb0a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/sacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/scaron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..c376be77 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/scaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/scedilla.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..cea70756 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/scedilla.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/schwa.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/schwa.glif new file mode 100644 index 00000000..bd395da1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/schwa.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/scircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..19dbef2b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/scircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/scommaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..8f483dad --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/sdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/sdotbelow.glif new file mode 100644 index 00000000..cd145dd2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/sdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/section.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/section.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/section.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/section.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/semicolon.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/semicolon.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/semicolon.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/semicolon.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/semicolon_semicolon.liga.glif new file mode 100644 index 00000000..fecb4442 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/semicolon_semicolon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/servicemark.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/servicemark.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/servicemark.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/servicemark.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/seven.den.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/seven.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/seven.den.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/seven.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/seven.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/seven.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/seven.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/seven.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/seven.inf.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/seven.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/seven.inf.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/seven.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/seven.num.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/seven.num.glif new file mode 100644 index 00000000..16a9c596 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/seven.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/seven.sup.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/seven.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/seven.sup.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/seven.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/seveneighths.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/seveneighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/seveneighths.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/seveneighths.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/six.den.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/six.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/six.den.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/six.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/six.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/six.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/six.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/six.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/six.inf.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/six.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/six.inf.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/six.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/six.num.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/six.num.glif new file mode 100644 index 00000000..50b656e5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/six.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/six.sup.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/six.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/six.sup.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/six.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/slash.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/slash.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_asterisk.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_asterisk.liga.glif new file mode 100644 index 00000000..236aa3a9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_asterisk.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_backslash.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_backslash.liga.glif new file mode 100644 index 00000000..75395c89 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_backslash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_equal.liga.glif new file mode 100644 index 00000000..3bd3cdc8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_equal.start.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_equal.start.glif new file mode 100644 index 00000000..c5adac6a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_greater.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_greater.liga.glif new file mode 100644 index 00000000..c402864e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_slash.liga.glif new file mode 100644 index 00000000..2bc4a71a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_slash.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_slash_equal.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_slash_equal.liga.glif new file mode 100644 index 00000000..6348ea3e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_slash_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_slash_equal.start.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_slash_equal.start.glif new file mode 100644 index 00000000..fbc5129f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_slash_equal.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_slash_slash.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_slash_slash.liga.glif new file mode 100644 index 00000000..3f943989 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/slash_slash_slash.liga.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/space.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/space.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/space.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/space.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/sterling.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/sterling.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/sterling.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/sterling.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/t.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/t.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/t.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/t.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tbar.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..a56d91aa --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tbar.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tcaron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..0e0fbb29 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tcedilla.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..abbfe6d8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tcedilla.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tcircumflexbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tcircumflexbelow.glif new file mode 100644 index 00000000..5738bb7f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tcircumflexbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tcommaaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..95a20a04 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tdotbelow.glif new file mode 100644 index 00000000..caab82f1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/thorn.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..674076b1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/thorn.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/three.den.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/three.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/three.den.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/three.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/three.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/three.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/three.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/three.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/three.inf.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/three.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/three.inf.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/three.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/three.num.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/three.num.glif new file mode 100644 index 00000000..cfc019ee --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/three.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/three.sup.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/three.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/three.sup.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/three.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/threeeighths.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/threeeighths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/threeeighths.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/threeeighths.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/threefifths.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/threefifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/threefifths.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/threefifths.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/threequarters.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/threequarters.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/threequarters.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/threequarters.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tilde.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tilde.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tilde.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tildecmb.cap.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tildecmb.cap.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tildecmb.cap.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tildecmb.cap.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tildecmb.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tildecmb.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/tildecmb.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tildecmb.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tlinebelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tlinebelow.glif new file mode 100644 index 00000000..d27c8b3b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/tlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/trademark.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/trademark.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/trademark.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/trademark.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/two.den.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/two.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/two.den.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/two.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/two.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/two.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/two.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/two.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/two.inf.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/two.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/two.inf.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/two.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/two.num.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/two.num.glif new file mode 100644 index 00000000..631bd1e0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/two.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/two.sup.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/two.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/two.sup.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/two.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/twodotleader.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/twodotleader.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/twodotleader.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/twodotleader.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/twofifths.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/twofifths.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/twofifths.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/twofifths.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/twothirds.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/twothirds.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/twothirds.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/twothirds.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/u.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/u.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/u.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/u.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..58c18f18 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ubreve.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..2efda948 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ubreve.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ucaron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ucaron.glif new file mode 100644 index 00000000..48205f51 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ucaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ucircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..cb9f0ea4 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/udieresis.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..e159bc2e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/udieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/udieresisacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/udieresisacute.glif new file mode 100644 index 00000000..92a9ccd6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/udieresisacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/udieresiscaron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/udieresiscaron.glif new file mode 100644 index 00000000..2bc27e79 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/udieresiscaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/udieresisgrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/udieresisgrave.glif new file mode 100644 index 00000000..0356fefc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/udieresisgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/udieresismacron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/udieresismacron.glif new file mode 100644 index 00000000..97accd57 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/udieresismacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/udotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/udotbelow.glif new file mode 100644 index 00000000..e884f9d3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/udotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ugrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..8f64b5e6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ugrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhookabove.glif new file mode 100644 index 00000000..fce76757 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhorn.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhorn.glif new file mode 100644 index 00000000..1c15441e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhorn.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhornacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhornacute.glif new file mode 100644 index 00000000..2ae91dd0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhornacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhorndotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhorndotbelow.glif new file mode 100644 index 00000000..120ec20e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhorndotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhorngrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhorngrave.glif new file mode 100644 index 00000000..b205a6dc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhorngrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhornhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhornhookabove.glif new file mode 100644 index 00000000..f019c811 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhornhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhorntilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhorntilde.glif new file mode 100644 index 00000000..4c2ee4a3 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhorntilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhungarumlaut.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..135406de --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/umacron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..728ec056 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/umacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/underscore.end.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/underscore.end.glif new file mode 100644 index 00000000..b8b4a1f6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/underscore.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/underscore.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/underscore.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/underscore.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/underscore.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/underscore.middle.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/underscore.middle.glif new file mode 100644 index 00000000..58f484e2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/underscore.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/underscore.start.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/underscore.start.glif new file mode 100644 index 00000000..61b8365f --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/underscore.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/underscore_bar_underscore.m.glif new file mode 100644 index 00000000..45eaaa0a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/underscore_bar_underscore.m.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uni00A_0.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni00A_0.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uni00A_0.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni00A_0.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uni0326.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni0326.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uni0326.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni0326.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni1E_9E_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni1E_9E_.glif new file mode 100644 index 00000000..c2929b68 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni1E_9E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni2011.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni2011.glif new file mode 100644 index 00000000..33e0d4b6 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni2011.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uni20B_9.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni20B_9.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uni20B_9.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni20B_9.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uni20B_A_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni20B_A_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uni20B_A_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni20B_A_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uni20B_D_.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni20B_D_.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uni20B_D_.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni20B_D_.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni2610.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni2610.glif new file mode 100644 index 00000000..2ee9dd83 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni2610.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni2611.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni2611.glif new file mode 100644 index 00000000..4070df56 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni2611.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni2612.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni2612.glif new file mode 100644 index 00000000..0e1445ab --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni2612.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni2713.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni2713.glif new file mode 100644 index 00000000..38e04632 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uni2713.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uniA_788.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniA_788.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/uniA_788.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniA_788.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0A_0.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0A_0.glif new file mode 100644 index 00000000..5f88789a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0A_0.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0A_1.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0A_1.glif new file mode 100644 index 00000000..2f182055 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0A_1.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0A_2.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0A_2.glif new file mode 100644 index 00000000..b4482921 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0A_2.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0B_0.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0B_0.glif new file mode 100644 index 00000000..4ef8ce00 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0B_0.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0B_1.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0B_1.glif new file mode 100644 index 00000000..9d468008 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0B_1.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0B_2.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0B_2.glif new file mode 100644 index 00000000..d8af7faf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0B_2.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0B_3.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0B_3.glif new file mode 100644 index 00000000..78767223 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uniE_0B_3.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uogonek.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..44a9c7e8 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uogonek.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/updblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/updblhorzsngbxd.glif new file mode 100644 index 00000000..6f27df1a --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/updblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/updblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/updblleftsngbxd.glif new file mode 100644 index 00000000..05b25981 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/updblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/updblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/updblrightsngbxd.glif new file mode 100644 index 00000000..032cff95 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/updblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upeighthblock.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upeighthblock.glif new file mode 100644 index 00000000..edbfe3c5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upeighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uphalfblock.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uphalfblock.glif new file mode 100644 index 00000000..f6006f81 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uphalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upheavydnhorzlightbxd.glif new file mode 100644 index 00000000..d84a80a0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upheavydnhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upheavyhorzlightbxd.glif new file mode 100644 index 00000000..d33dc3d2 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upheavyleftdnlightbxd.glif new file mode 100644 index 00000000..b6a741ce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upheavyleftlightbxd.glif new file mode 100644 index 00000000..eb582ade --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upheavyrightdnlightbxd.glif new file mode 100644 index 00000000..7215fe20 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upheavyrightlightbxd.glif new file mode 100644 index 00000000..799568f9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upleftdnleftdnrightquadrant.glif new file mode 100644 index 00000000..e0bdb776 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upleftdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upleftdnrightquadrant.glif new file mode 100644 index 00000000..6ca0f95d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upleftdnrightquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upleftquadrant.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upleftquadrant.glif new file mode 100644 index 00000000..9ab84ae1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upleftuprightdnleftquadrant.glif new file mode 100644 index 00000000..68671562 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upleftuprightdnleftquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upleftuprightdnrightquadrant.glif new file mode 100644 index 00000000..a20ceb2d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upleftuprightdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uplightdnhorzheavybxd.glif new file mode 100644 index 00000000..9aa49bdb --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uplightdnhorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uplighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uplighthorzheavybxd.glif new file mode 100644 index 00000000..8b12a598 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uplighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uplightleftdnheavybxd.glif new file mode 100644 index 00000000..575c2645 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uplightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uplightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uplightleftheavybxd.glif new file mode 100644 index 00000000..680d85dc --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uplightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uplightrightdnheavybxd.glif new file mode 100644 index 00000000..95ca50ce --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uplightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uplightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uplightrightheavybxd.glif new file mode 100644 index 00000000..e94ab36c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uplightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uprightdnleftdnrightquadrant.glif new file mode 100644 index 00000000..4211b39d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uprightdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uprightdnleftquadrant.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uprightdnleftquadrant.glif new file mode 100644 index 00000000..aea6004b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uprightdnleftquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uprightquadrant.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uprightquadrant.glif new file mode 100644 index 00000000..245dc1dd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uprightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upsnghorzdblbxd.glif new file mode 100644 index 00000000..67f6fb31 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upsngleftdblbxd.glif new file mode 100644 index 00000000..19ac2d99 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upsngrightdblbxd.glif new file mode 100644 index 00000000..3dda0e76 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/upsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uring.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uring.glif new file mode 100644 index 00000000..b56d2a05 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/uring.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/utilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..d1e50adf --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/utilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/v.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/v.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/v.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/v.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vdotbelow.glif new file mode 100644 index 00000000..93a9c351 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertdblhorzsngbxd.glif new file mode 100644 index 00000000..391b0891 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertdblhorzsngbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertdblleftsngbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertdblleftsngbxd.glif new file mode 100644 index 00000000..6a16b713 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertdblleftsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertdblrightsngbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertdblrightsngbxd.glif new file mode 100644 index 00000000..285c5592 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertdblrightsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertheavyhorzlightbxd.glif new file mode 100644 index 00000000..5f1ca7b0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertheavyhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertheavyleftlightbxd.glif new file mode 100644 index 00000000..add4dbff --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertheavyleftlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertheavyrightlightbxd.glif new file mode 100644 index 00000000..b9315f86 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertheavyrightlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/verticallinelowmod.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/verticallinelowmod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/verticallinelowmod.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/verticallinelowmod.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/verticallinemod.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/verticallinemod.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/verticallinemod.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/verticallinemod.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertlighthorzheavybxd.glif new file mode 100644 index 00000000..887f15a7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertlighthorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertlightleftheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertlightleftheavybxd.glif new file mode 100644 index 00000000..05fa6f7b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertlightleftheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertlightrightheavybxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertlightrightheavybxd.glif new file mode 100644 index 00000000..2827168b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertlightrightheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertsnghorzdblbxd.glif new file mode 100644 index 00000000..07c363ae --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertsnghorzdblbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertsngleftdblbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertsngleftdblbxd.glif new file mode 100644 index 00000000..60128235 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertsngleftdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertsngrightdblbxd.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertsngrightdblbxd.glif new file mode 100644 index 00000000..0ba240b7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/vertsngrightdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/w.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/w.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/w.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/w.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/w_w_w.liga.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/w_w_w.liga.glif new file mode 100644 index 00000000..f038b8a5 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/w_w_w.liga.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/wacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..6ab87963 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/wacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/wcircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..68278e09 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/wdieresis.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..e5a7477d --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/wdieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/wgrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..f3f8b3d1 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/wgrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/won.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/won.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/won.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/won.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/x.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/x.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/x.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/x.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/xdieresis.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/xdieresis.glif new file mode 100644 index 00000000..b649e86b --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/xdieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/y.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/y.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/y.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/y.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/yacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..98671a7e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/yacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ycircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..5a649977 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ydieresis.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..3cdb111e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ydieresis.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ydotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ydotaccent.glif new file mode 100644 index 00000000..900d0c3c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ydotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ydotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ydotbelow.glif new file mode 100644 index 00000000..4150c931 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ydotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/yen.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/yen.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/yen.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/yen.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ygrave.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ygrave.glif new file mode 100644 index 00000000..5599ff16 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ygrave.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/yhookabove.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/yhookabove.glif new file mode 100644 index 00000000..0fbc6c74 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/yhookabove.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ymacron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ymacron.glif new file mode 100644 index 00000000..5b10eabd --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ymacron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ytilde.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ytilde.glif new file mode 100644 index 00000000..d17e2a5c --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/ytilde.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/z.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/z.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/z.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/z.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zacute.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..e1ef8877 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zacute.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zcaron.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..a5ce02d9 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zcaron.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zcircumflex.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zcircumflex.glif new file mode 100644 index 00000000..860db0a7 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zcircumflex.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zdotaccent.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..5b4acfc0 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zdotbelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zdotbelow.glif new file mode 100644 index 00000000..daf83f6e --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zdotbelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zero.den.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zero.den.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zero.den.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zero.den.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zero.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zero.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zero.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zero.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zero.inf.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zero.inf.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zero.inf.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zero.inf.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zero.num.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zero.num.glif new file mode 100644 index 00000000..79b7d898 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zero.num.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zero.sup.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zero.sup.glif similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/glyphs/zero.sup.glif rename to sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zero.sup.glif diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zlinebelow.glif b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zlinebelow.glif new file mode 100644 index 00000000..45d8e306 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/glyphs/zlinebelow.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/layercontents.plist b/sources/instances/truetype/IntelOneMono-Regular.ufo/layercontents.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/layercontents.plist rename to sources/instances/truetype/IntelOneMono-Regular.ufo/layercontents.plist diff --git a/sources/instances/truetype/IntelOneMono-Regular.ufo/lib.plist b/sources/instances/truetype/IntelOneMono-Regular.ufo/lib.plist new file mode 100644 index 00000000..220cf895 --- /dev/null +++ b/sources/instances/truetype/IntelOneMono-Regular.ufo/lib.plist @@ -0,0 +1,1651 @@ + + + + + com.typemytype.robofont.compileSettings.MacRomanFirst + + com.typemytype.robofont.compileSettings.autohint + 0 + com.typemytype.robofont.compileSettings.checkOutlines + 0 + com.typemytype.robofont.compileSettings.createDummyDSIG + + com.typemytype.robofont.compileSettings.decompose + 0 + com.typemytype.robofont.compileSettings.generateFormat + 1 + com.typemytype.robofont.compileSettings.layerName + foreground + com.typemytype.robofont.compileSettings.releaseMode + 1 + com.typemytype.robofont.italicSlantOffset + 0 + com.typemytype.robofont.segmentType + curve + com.typemytype.robofont.shouldAddPointsInSplineConversion + 1 + public.glyphOrder + + .notdef + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + S + T + U + V + W + X + Y + Z + a + b + c + d + e + f + g + h + i + j + k + l + m + n + o + p + q + r + s + t + u + v + w + x + y + z + period + comma + colon + semicolon + question + exclam + questiondown + exclamdown + ellipsis + twodotleader + quotedblleft + quotedblright + quotedblbase + quoteleft + quoteright + quotesinglbase + guillemetleft + guillemetright + guilsinglleft + guilsinglright + parenleft + parenright + bracketleft + bracketright + braceleft + braceright + slash + backslash + bar + hyphen + endash + emdash + periodcentered + bullet + underscore + ampersand + at + published + copyright + registered + servicemark + trademark + asterisk + dagger + daggerdbl + section + paragraph + zero + one + two + three + four + five + six + seven + eight + nine + colon.fig + plus + divide + minus + equal + notequal + asciitilde + approxequal + multiply + less + greater + lessequal + greaterequal + plusminus + asciicircum + mu + numbersign + percent + quotedbl + quotesingle + ordfeminine + ordmasculine + degree + dollar + sterling + yen + Euro + naira + peso + uni20BA + uni20BD + uni20B9 + bahtthai + won + cent + dong + onehalf + onethird + twothirds + onequarter + threequarters + onefifth + twofifths + threefifths + fourfifths + onesixth + fivesixths + oneeighth + threeeighths + fiveeighths + seveneighths + zero.sup + one.sup + two.sup + three.sup + four.sup + five.sup + six.sup + seven.sup + eight.sup + nine.sup + zero.inf + one.inf + two.inf + three.inf + four.inf + five.inf + six.inf + seven.inf + eight.inf + nine.inf + primemod + dblprimemod + commaturnedmod + apostrophemod + ringhalfleft + ringhalfright + verticallinemod + verticallinelowmod + acute + hungarumlaut + grave + circumflex + caron + breve + tilde + macron + dieresis + dotaccent + ring + uniA788 + macronlowmod + cedilla + ogonek + Aacute + Agrave + Acircumflex + Acircumflexdotbelow + Acircumflexacute + Acircumflexgrave + Acircumflexhookabove + Acircumflextilde + Acaron + Abreve + Abrevedotbelow + Abreveacute + Abrevegrave + Abrevehookabove + Abrevetilde + Atilde + Amacron + Adieresis + Adotaccent + Aring + Ahookabove + Adotbelow + Aogonek + AE + Blinebelow + Cacute + Ccircumflex + Ccaron + Cdotaccent + Ccedilla + Dcaron + Dcircumflexbelow + Dlinebelow + Ddotbelow + Dcroat + Eacute + Egrave + Ecircumflex + Ecircumflexdotbelow + Ecircumflexacute + Ecircumflexgrave + Ecircumflexhookabove + Ecircumflextilde + Ecaron + Ebreve + Etilde + Emacron + Edieresis + Edotaccent + Ehookabove + Edotbelow + Eogonek + Gcircumflex + Gcaron + Gbreve + Gmacron + Gdotaccent + Gcommaaccent + Hcircumflex + Hbrevebelow + Hdotbelow + Hcedilla + Hbar + Iacute + Igrave + Icircumflex + Icaron + Ibreve + Itilde + Imacron + Idieresis + Idotaccent + Ihookabove + Idotbelow + Iogonek + Jcircumflex + Klinebelow + Kcommaaccent + Kdotbelow + Lacute + Lcaron + Lcommaaccent + Lcircumflexbelow + Llinebelow + Lmacrondotbelow + Ldotbelow + L.dot + Lslash + Macute + Mdotaccent + Mdotbelow + Nacute + Ngrave + Ncaron + Ntilde + Ndotaccent + Ncircumflexbelow + Ncommaaccent + Ndotbelow + Nlinebelow + Eng + Oacute + Ohungarumlaut + Ograve + Ocircumflex + Ocircumflexdotbelow + Ocircumflexacute + Ocircumflexgrave + Ocircumflexhookabove + Ocircumflextilde + Ocaron + Obreve + Otilde + Omacron + Odieresis + Odotaccent + Ohookabove + Odotbelow + Oogonek + Oslash + OE + Ohorn + Ohornacute + Ohorngrave + Ohorntilde + Ohornhookabove + Ohorndotbelow + Racute + Rcaron + Rdotaccent + Rmacrondotbelow + Rcommaaccent + Rdotbelow + Rlinebelow + Sacute + Scircumflex + Scaron + Scommaaccent + Sdotbelow + Scedilla + uni1E9E + Tcaron + Tcircumflexbelow + Tcommaaccent + Tdotbelow + Tlinebelow + Tcedilla + Tbar + Uacute + Uhungarumlaut + Ugrave + Ucircumflex + Ucaron + Ubreve + Utilde + Umacron + Udieresis + Udieresisacute + Udieresisgrave + Udieresiscaron + Udieresismacron + Uring + Uhookabove + Udotbelow + Uogonek + Uhorn + Uhornacute + Uhorngrave + Uhorntilde + Uhornhookabove + Uhorndotbelow + Vdotbelow + Wacute + Wgrave + Wcircumflex + Wdieresis + Xdieresis + Yacute + Ygrave + Ycircumflex + Ytilde + Ymacron + Ydieresis + Ydotaccent + Yhookabove + Ydotbelow + Zacute + Zcircumflex + Zcaron + Zdotaccent + Zdotbelow + Zlinebelow + Eth + Thorn + Schwa + aacute + agrave + acircumflex + acircumflexdotbelow + acircumflexacute + acircumflexgrave + acircumflexhookabove + acircumflextilde + acaron + abreve + abrevedotbelow + abreveacute + abrevegrave + abrevehookabove + abrevetilde + atilde + amacron + adieresis + adotaccent + aring + ahookabove + adotbelow + aogonek + ae + blinebelow + cacute + ccircumflex + ccaron + cdotaccent + ccedilla + dcaron + dcircumflexbelow + dlinebelow + ddotbelow + dcroat + eacute + egrave + ecircumflex + ecircumflexdotbelow + ecircumflexacute + ecircumflexgrave + ecircumflexhookabove + ecircumflextilde + ecaron + ebreve + etilde + emacron + edieresis + edotaccent + ehookabove + edotbelow + eogonek + gcircumflex + gcaron + gbreve + gmacron + gdotaccent + gcommaaccent + hcircumflex + hbrevebelow + hlinebelow + hdotbelow + hcedilla + hbar + dotlessi + iacute + igrave + icircumflex + icaron + ibreve + itilde + imacron + idieresis + idotaccent + ihookabove + idotbelow + iogonek + dotlessj + jcircumflex + jcaron + klinebelow + kcommaaccent + kdotbelow + lacute + lcaron + lcommaaccent + lcircumflexbelow + llinebelow + lmacrondotbelow + ldotbelow + l.dot + lslash + macute + mdotaccent + mdotbelow + nacute + ngrave + ncaron + ntilde + ndotaccent + ncircumflexbelow + ncommaaccent + ndotbelow + nlinebelow + eng + oacute + ohungarumlaut + ograve + ocircumflex + ocircumflexdotbelow + ocircumflexacute + ocircumflexgrave + ocircumflexhookabove + ocircumflextilde + ocaron + obreve + otilde + omacron + odieresis + odotaccent + ohookabove + odotbelow + oogonek + oslash + oe + ohorn + ohornacute + ohorngrave + ohorntilde + ohornhookabove + ohorndotbelow + racute + rcaron + rdotaccent + rmacrondotbelow + rcommaaccent + rdotbelow + rlinebelow + sacute + scircumflex + scaron + scommaaccent + sdotbelow + scedilla + germandbls + tcaron + tcircumflexbelow + tcommaaccent + tdotbelow + tlinebelow + tcedilla + tbar + uacute + uhungarumlaut + ugrave + ucircumflex + ucaron + ubreve + utilde + umacron + udieresis + udieresisacute + udieresisgrave + udieresiscaron + udieresismacron + uring + uhookabove + udotbelow + uogonek + uhorn + uhornacute + uhorngrave + uhorntilde + uhornhookabove + uhorndotbelow + vdotbelow + wacute + wgrave + wcircumflex + wdieresis + xdieresis + yacute + ygrave + ycircumflex + ytilde + ymacron + ydieresis + ydotaccent + yhookabove + ydotbelow + zacute + zcircumflex + zcaron + zdotaccent + zdotbelow + zlinebelow + eth + thorn + schwa + space + uni00A0 + zero.num + one.num + two.num + three.num + four.num + five.num + six.num + seven.num + eight.num + nine.num + fraction + fracbar + zero.den + one.den + two.den + three.den + four.den + five.den + six.den + seven.den + eight.den + nine.den + uni2011 + horizontalbar + middotcat + middotcat.cap + acutecmb + hungarumlautcmb + gravecmb + commaaboverightcmb + circumflexcmb + caroncmb + brevecmb + tildecmb + macroncmb + dieresiscmb + dotaccentcmb + ringcmb + commaturnedabovecmb + hookcmb + circumflexbelowcmb + brevebelowcmb + macronbelowcmb + dieresisbelowcmb + dotbelowcmb + uni0326 + cedillacmb + ogonekcmb + dieresisacute + dieresisgrave + dieresiscaron + dieresismacron + breveacute + brevegrave + brevehook + brevetilde + circumflexacute + circumflexgrave + circumflexhook + circumflextilde + acutecmb.cap + hungarumlautcmb.cap + gravecmb.cap + circumflexcmb.cap + caroncmb.cap + brevecmb.cap + tildecmb.cap + macroncmb.cap + dieresiscmb.cap + dotaccentcmb.cap + ringcmb.cap + hookcmb.cap + dieresisacute.cap + dieresisgrave.cap + dieresiscaron.cap + dieresismacron.cap + breveacute.cap + brevegrave.cap + brevehook.cap + brevetilde.cap + circumflexacute.cap + circumflexgrave.cap + circumflexhook.cap + circumflextilde.cap + lighthorzbxd + heavyhorzbxd + lightvertbxd + heavyvertbxd + lighttrpldashhorzbxd + heavytrpldashhorzbxd + lighttrpldashvertbxd + heavytrpldashvertbxd + lightquaddashhorzbxd + heavyquaddashhorzbxd + lightquaddashvertbxd + heavyquaddashvertbxd + lightdnrightbxd + dnlightrightheavybxd + dnheavyrightlightbxd + heavydnrightbxd + lightdnleftbxd + dnlightleftheavybxd + dnheavyleftlightbxd + heavydnleftbxd + lightuprightbxd + uplightrightheavybxd + upheavyrightlightbxd + heavyuprightbxd + lightupleftbxd + uplightleftheavybxd + upheavyleftlightbxd + heavyupleftbxd + lightvertrightbxd + vertlightrightheavybxd + upheavyrightdnlightbxd + dnheavyrightuplightbxd + vertheavyrightlightbxd + dnlightrightupheavybxd + uplightrightdnheavybxd + heavyvertrightbxd + lightvertleftbxd + vertlightleftheavybxd + upheavyleftdnlightbxd + dnheavyleftuplightbxd + vertheavyleftlightbxd + dnlightleftupheavybxd + uplightleftdnheavybxd + heavyvertleftbxd + lightdnhorzbxd + leftheavyrightdnlightbxd + rightheavyleftdnlightbxd + dnlighthorzheavybxd + dnheavyhorzlightbxd + rightlightleftdnheavybxd + leftlightrightdnheavybxd + heavydnhorzbxd + lightuphorzbxd + leftheavyrightuplightbxd + rightheavyleftuplightbxd + uplighthorzheavybxd + upheavyhorzlightbxd + rightlightleftupheavybxd + leftlightrightupheavybxd + heavyuphorzbxd + lightverthorzbxd + leftheavyrightvertlightbxd + rightheavyleftvertlightbxd + vertlighthorzheavybxd + upheavydnhorzlightbxd + dnheavyuphorzlightbxd + vertheavyhorzlightbxd + leftupheavyrightdnlightbxd + rightupheavyleftdnlightbxd + leftdnheavyrightuplightbxd + rightdnheavyleftuplightbxd + dnlightuphorzheavybxd + uplightdnhorzheavybxd + rightlightleftvertheavybxd + leftlightrightvertheavybxd + heavyverthorzbxd + lightdbldashhorzbxd + heavydbldashhorzbxd + lightdbldashvertbxd + heavydbldashvertbxd + dblhorzbxd + dblvertbxd + dnsngrightdblbxd + dndblrightsngbxd + dbldnrightbxd + dnsngleftdblbxd + dndblleftsngbxd + dbldnleftbxd + upsngrightdblbxd + updblrightsngbxd + dbluprightbxd + upsngleftdblbxd + updblleftsngbxd + dblupleftbxd + vertsngrightdblbxd + vertdblrightsngbxd + dblvertrightbxd + vertsngleftdblbxd + vertdblleftsngbxd + dblvertleftbxd + dnsnghorzdblbxd + dndblhorzsngbxd + dbldnhorzbxd + upsnghorzdblbxd + updblhorzsngbxd + dbluphorzbxd + vertsnghorzdblbxd + vertdblhorzsngbxd + dblverthorzbxd + lightarcdnrightbxd + lightarcdnleftbxd + lightarcupleftbxd + lightarcuprightbxd + lightdiaguprightdnleftbxd + lightdiagupleftdnrightbxd + lightdiagcrossbxd + lightleftbxd + lightupbxd + lightrightbxd + lightdnbxd + heavyleftbxd + heavyupbxd + heavyrightbxd + heavydnbxd + lightleftheavyrightbxd + lightupheavydnbxd + heavyleftlightrightbxd + heavyuplightdnbxd + uphalfblock + dneighthblock + dnquarterblock + dnthreeeighthsblock + dnhalfblock + dnfiveeighthsblock + dnthreequartersblock + dnseveneighthsblock + fullblock + leftseveneighthsblock + leftthreequartersblock + leftfiveeighthsblock + lefthalfblock + leftthreeeighthsblock + leftquarterblock + lefteighthblock + righthalfblock + lightshade + mediumshade + darkshade + upeighthblock + righteighthblock + dnleftquadrant + dnrightquadrant + upleftquadrant + upleftdnleftdnrightquadrant + upleftdnrightquadrant + upleftuprightdnleftquadrant + upleftuprightdnrightquadrant + uprightquadrant + uprightdnleftquadrant + uprightdnleftdnrightquadrant + ligspacer + equal.start + equal.middle + equal.end + hyphen.start + hyphen.middle + hyphen.end + underscore.start + underscore.middle + underscore.end + numbersign.start + numbersign.middle + numbersign.end + period_equal.liga + period_period_equal.liga + period_hyphen.liga + colon_equal.liga + equal_equal.liga + exclam_equal.liga + equal_equal_equal.liga + exclam_equal_equal.liga + less_hyphen_less.liga + less_less_hyphen.liga + less_hyphen.liga + less_hyphen_greater.liga + hyphen_greater.liga + hyphen_greater_greater.liga + greater_hyphen_greater.liga + less_equal_less.liga + less_less_equal.liga + less_equal_greater.liga + equal_greater.liga + less_equal.liga + equal_greater_greater.liga + greater_equal_greater.liga + greater_equal.liga + greater_greater_equal.liga + greater_greater_hyphen.liga + greater_hyphen.liga + less_asciitilde_greater.liga + hyphen_less.liga + hyphen_less_less.liga + equal_less.liga + equal_less_less.liga + less_asciitilde_asciitilde.liga + less_asciitilde.liga + asciitilde_asciitilde.liga + asciitilde_greater.liga + asciitilde_asciitilde_greater + less_exclam_hyphen_hyphen.liga + slash_equal.liga + hyphen_bar.liga + bar_hyphen.liga + bar_equal.liga + hyphen_bar_bar.liga + bar_bar_hyphen.liga + equal_bar_bar.liga + bar_bar_equal.liga + equal_bar.liga + slash_slash_equal.liga + equal_slash.liga + equal_slash_slash.liga + equal_colon_equal.middle + equal_exclam_equal.middle + underscore_bar_underscore.m + hyphen_bar_hyphen.middle + equal_bar_equal.middle + hyphen_greater_hyphen.middle + hyphen_greater_greater_hyphen.m + equal_slash_slash_equal.middle + equal_slash_equal.middle + hyphen_bar_bar_hyphen.middle + equal_bar_bar_equal.middle + hyphen_less_hyphen.middle + hyphen_less_less_hyphen.middle + equal_greater_equal.middle + equal_less_equal.middle + equal_greater_greater_equal.m + equal_less_less_equal.middle + less_hyphen.start + greater_hyphen.start + bar_hyphen.start + less_equal.start + greater_equal.start + bar_equal.start + slash_equal.start + slash_slash_equal.start + less_less_hyphen.start + greater_greater_hyphen.start + bar_bar_hyphen.start + less_less_equal.start + greater_greater_equal.start + bar_bar_equal.start + hyphen_less.end + hyphen_greater.end + hyphen_bar.end + equal_less.end + equal_greater.end + equal_bar.end + hyphen_less_less.end + hyphen_greater_greater.end + hyphen_bar_bar.end + equal_less_less.end + equal_greater_greater.end + equal_bar_bar.end + equal_slash.end + equal_slash_slash.end + less_less_less.liga + less_less.liga + less_equal + less_greater.liga + greater_equal + greater_greater.liga + greater_greater_greater.liga + braceleft_bar.liga + bracketleft_bar.liga + less_colon.liga + colon_less.liga + greater_colon.liga + colon_greater.liga + bar_braceright.liga + bar_bracketright.liga + less_bar_bar_bar.liga + less_bar_bar.liga + less_bar.liga + less_bar_greater.liga + bar_greater.liga + bar_bar_greater.liga + bar_bar_bar_greater.liga + less_dollar.liga + less_dollar_greater.liga + dollar_greater.liga + less_plus.liga + less_plus_greater.liga + plus_greater.liga + less_asterisk.liga + less_asterisk_greater.liga + asterisk_greater.liga + slash_asterisk.liga + asterisk_slash.liga + slash_slash_slash.liga + slash_slash.liga + less_slash.liga + less_slash_greater.liga + slash_greater.liga + semicolon_semicolon.liga + colon_colon.liga + colon_colon_colon.liga + period_period.liga + period_period_period.liga + period_period_less.liga + exclam_exclam.liga + question_question.liga + percent_percent.liga + ampersand_ampersand.liga + bar_bar.liga + question_period.liga + question_colon.liga + plus_plus.liga + plus_plus_plus.liga + hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga + asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga + equal_asciitilde.liga + exclam_asciitilde.liga + asciitilde_hyphen.liga + w_w_w.liga + hyphen_asciitilde.liga + asciitilde_at.liga + asciicircum_equal.liga + question_equal.liga + numbersign_exclam.liga + numbersign_equal.liga + numbersign_colon.liga + numbersign_braceleft.liga + numbersign_bracketleft.liga + bracketright_numbersign.liga + numbersign_parenleft.liga + numbersign_question.liga + numbersign_underscore.liga + numbersign_underscore_parenleft + backslash_slash.liga + bar_bar_bar.liga + colon_colon_equal.liga + exclam_exclam_period.liga + period_question.liga + slash_backslash.liga + uniE0A0 + uniE0A1 + uniE0A2 + uniE0B0 + uniE0B1 + uniE0B2 + uniE0B3 + uni2610 + uni2611 + uni2612 + uni2713 + + public.postscriptNames + + Abreveacute + uni1EAE + Abrevedotbelow + uni1EB6 + Abrevegrave + uni1EB0 + Abrevehookabove + uni1EB2 + Abrevetilde + uni1EB4 + Acaron + uni01CD + Acircumflexacute + uni1EA4 + Acircumflexdotbelow + uni1EAC + Acircumflexgrave + uni1EA6 + Acircumflexhookabove + uni1EA8 + Acircumflextilde + uni1EAA + Adotaccent + uni0226 + Adotbelow + uni1EA0 + Ahookabove + uni1EA2 + Blinebelow + uni1E06 + Dcircumflexbelow + uni1E12 + Ddotbelow + uni1E0C + Dlinebelow + uni1E0E + Ecircumflexacute + uni1EBE + Ecircumflexdotbelow + uni1EC6 + Ecircumflexgrave + uni1EC0 + Ecircumflexhookabove + uni1EC2 + Ecircumflextilde + uni1EC4 + Edotbelow + uni1EB8 + Ehookabove + uni1EBA + Etilde + uni1EBC + Gcommaaccent + uni0122 + Gmacron + uni1E20 + Hbrevebelow + uni1E2A + Hcedilla + uni1E28 + Hdotbelow + uni1E24 + Icaron + uni01CF + Idotbelow + uni1ECA + Ihookabove + uni1EC8 + Kcommaaccent + uni0136 + Kdotbelow + uni1E32 + Klinebelow + uni1E34 + L.dot + Ldot + Lcircumflexbelow + uni1E3C + Lcommaaccent + uni013B + Ldotbelow + uni1E36 + Llinebelow + uni1E3A + Lmacrondotbelow + uni1E38 + Macute + uni1E3E + Mdotaccent + uni1E40 + Mdotbelow + uni1E42 + Ncircumflexbelow + uni1E4A + Ncommaaccent + uni0145 + Ndotaccent + uni1E44 + Ndotbelow + uni1E46 + Ngrave + uni01F8 + Nlinebelow + uni1E48 + Ocaron + uni01D1 + Ocircumflexacute + uni1ED0 + Ocircumflexdotbelow + uni1ED8 + Ocircumflexgrave + uni1ED2 + Ocircumflexhookabove + uni1ED4 + Ocircumflextilde + uni1ED6 + Odotaccent + uni022E + Odotbelow + uni1ECC + Ohookabove + uni1ECE + Ohornacute + uni1EDA + Ohorndotbelow + uni1EE2 + Ohorngrave + uni1EDC + Ohornhookabove + uni1EDE + Ohorntilde + uni1EE0 + Oogonek + uni01EA + Rcommaaccent + uni0156 + Rdotaccent + uni1E58 + Rdotbelow + uni1E5A + Rlinebelow + uni1E5E + Rmacrondotbelow + uni1E5C + Scedilla + uni015E + Schwa + uni018F + Scommaaccent + uni0218 + Sdotbelow + uni1E62 + Tcedilla + uni0162 + Tcircumflexbelow + uni1E70 + Tcommaaccent + uni021A + Tdotbelow + uni1E6C + Tlinebelow + uni1E6E + Ucaron + uni01D3 + Udieresisacute + uni01D7 + Udieresiscaron + uni01D9 + Udieresisgrave + uni01DB + Udieresismacron + uni01D5 + Udotbelow + uni1EE4 + Uhookabove + uni1EE6 + Uhornacute + uni1EE8 + Uhorndotbelow + uni1EF0 + Uhorngrave + uni1EEA + Uhornhookabove + uni1EEC + Uhorntilde + uni1EEE + Vdotbelow + uni1E7E + Xdieresis + uni1E8C + Ydotaccent + uni1E8E + Ydotbelow + uni1EF4 + Yhookabove + uni1EF6 + Ymacron + uni0232 + Ytilde + uni1EF8 + Zcircumflex + uni1E90 + Zdotbelow + uni1E92 + Zlinebelow + uni1E94 + abreveacute + uni1EAF + abrevedotbelow + uni1EB7 + abrevegrave + uni1EB1 + abrevehookabove + uni1EB3 + abrevetilde + uni1EB5 + acaron + uni01CE + acircumflexacute + uni1EA5 + acircumflexdotbelow + uni1EAD + acircumflexgrave + uni1EA7 + acircumflexhookabove + uni1EA9 + acircumflextilde + uni1EAB + acutecmb + uni0301 + acutecmb.cap + uni0301.cap + adotaccent + uni0227 + adotbelow + uni1EA1 + ahookabove + uni1EA3 + apostrophemod + uni02BC + bahtthai + uni0E3F + blinebelow + uni1E07 + breveacute + uni02D80301 + breveacute.cap + uni02D80301.cap + brevebelowcmb + uni032E + brevecmb + uni0306 + brevecmb.cap + uni0306.cap + brevegrave + uni02D80300 + brevegrave.cap + uni02D80300.cap + brevehook + uni02D80309 + brevehook.cap + uni02D80309.cap + brevetilde + uni02D80303 + brevetilde.cap + uni02D80303.cap + caroncmb + uni030C + caroncmb.cap + uni030C.cap + cedillacmb + uni0327 + circumflexacute + uni02C60301 + circumflexacute.cap + uni02C60301.cap + circumflexbelowcmb + uni032D + circumflexcmb + uni0302 + circumflexcmb.cap + uni0302.cap + circumflexgrave + uni02C60300 + circumflexgrave.cap + uni02C60300.cap + circumflexhook + uni02C60309 + circumflexhook.cap + uni02C60309.cap + circumflextilde + uni02C60303 + circumflextilde.cap + uni02C60303.cap + commaaboverightcmb + uni0315 + commaturnedabovecmb + uni0312 + commaturnedmod + uni02BB + dblprimemod + uni02BA + dcircumflexbelow + uni1E13 + ddotbelow + uni1E0D + dieresisacute + uni00A80301 + dieresisacute.cap + uni00A80301.cap + dieresisbelowcmb + uni0324 + dieresiscaron + uni00A8030C + dieresiscaron.cap + uni00A8030C.cap + dieresiscmb + uni0308 + dieresiscmb.cap + uni0308.cap + dieresisgrave + uni00A80300 + dieresisgrave.cap + uni00A80300.cap + dieresismacron + uni00A80304 + dieresismacron.cap + uni00A80304.cap + dlinebelow + uni1E0F + dotaccentcmb + uni0307 + dotaccentcmb.cap + uni0307.cap + dotbelowcmb + uni0323 + dotlessj + uni0237 + ecircumflexacute + uni1EBF + ecircumflexdotbelow + uni1EC7 + ecircumflexgrave + uni1EC1 + ecircumflexhookabove + uni1EC3 + ecircumflextilde + uni1EC5 + edotbelow + uni1EB9 + ehookabove + uni1EBB + etilde + uni1EBD + gcommaaccent + uni0123 + gmacron + uni1E21 + gravecmb + uni0300 + gravecmb.cap + uni0300.cap + guillemetleft + uni00AB + guillemetright + uni00BB + hbrevebelow + uni1E2B + hcedilla + uni1E29 + hdotbelow + uni1E25 + hlinebelow + uni1E96 + hookcmb + uni0309 + hookcmb.cap + uni0309.cap + horizontalbar + uni2015 + hungarumlautcmb + uni030B + hungarumlautcmb.cap + uni030B.cap + icaron + uni01D0 + idotaccent + i.dot + idotbelow + uni1ECB + ihookabove + uni1EC9 + jcaron + uni01F0 + kcommaaccent + uni0137 + kdotbelow + uni1E33 + klinebelow + uni1E35 + l.dot + ldot + lcircumflexbelow + uni1E3D + lcommaaccent + uni013C + ldotbelow + uni1E37 + llinebelow + uni1E3B + lmacrondotbelow + uni1E39 + macronbelowcmb + uni0331 + macroncmb + uni0304 + macroncmb.cap + uni0304.cap + macronlowmod + uni02CD + macute + uni1E3F + mdotaccent + uni1E41 + mdotbelow + uni1E43 + naira + uni20A6 + ncircumflexbelow + uni1E4B + ncommaaccent + uni0146 + ndotaccent + uni1E45 + ndotbelow + uni1E47 + ngrave + uni01F9 + nlinebelow + uni1E49 + ocaron + uni01D2 + ocircumflexacute + uni1ED1 + ocircumflexdotbelow + uni1ED9 + ocircumflexgrave + uni1ED3 + ocircumflexhookabove + uni1ED5 + ocircumflextilde + uni1ED7 + odotaccent + uni022F + odotbelow + uni1ECD + ogonekcmb + uni0328 + ohookabove + uni1ECF + ohornacute + uni1EDB + ohorndotbelow + uni1EE3 + ohorngrave + uni1EDD + ohornhookabove + uni1EDF + ohorntilde + uni1EE1 + oogonek + uni01EB + peso + uni20B1 + primemod + uni02B9 + published + uni2117 + rcommaaccent + uni0157 + rdotaccent + uni1E59 + rdotbelow + uni1E5B + ringcmb + uni030A + ringcmb.cap + uni030A.cap + ringhalfleft + uni02BF + ringhalfright + uni02BE + rlinebelow + uni1E5F + rmacrondotbelow + uni1E5D + scedilla + uni015F + schwa + uni0259 + scommaaccent + uni0219 + sdotbelow + uni1E63 + servicemark + uni2120 + tcedilla + uni0163 + tcircumflexbelow + uni1E71 + tcommaaccent + uni021B + tdotbelow + uni1E6D + tildecmb + uni0303 + tildecmb.cap + uni0303.cap + tlinebelow + uni1E6F + twodotleader + uni2025 + ucaron + uni01D4 + udieresisacute + uni01D8 + udieresiscaron + uni01DA + udieresisgrave + uni01DC + udieresismacron + uni01D6 + udotbelow + uni1EE5 + uhookabove + uni1EE7 + uhornacute + uni1EE9 + uhorndotbelow + uni1EF1 + uhorngrave + uni1EEB + uhornhookabove + uni1EED + uhorntilde + uni1EEF + uni1E9E + uni1E9E + vdotbelow + uni1E7F + verticallinelowmod + uni02CC + verticallinemod + uni02C8 + won + uni20A9 + xdieresis + uni1E8D + ydotaccent + uni1E8F + ydotbelow + uni1EF5 + yhookabove + uni1EF7 + ymacron + uni0233 + ytilde + uni1EF9 + zcircumflex + uni1E91 + zdotbelow + uni1E93 + zlinebelow + uni1E95 + + + diff --git a/sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/metainfo.plist b/sources/instances/truetype/IntelOneMono-Regular.ufo/metainfo.plist similarity index 100% rename from sources/instances/truetype/IntelOneMono-Regular-quadratic.ufo/metainfo.plist rename to sources/instances/truetype/IntelOneMono-Regular.ufo/metainfo.plist diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/features.fea b/sources/masters/IntelOneMono-Bold-mstr.ufo/features.fea index 442214bb..5a07e127 100644 --- a/sources/masters/IntelOneMono-Bold-mstr.ufo/features.fea +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/features.fea @@ -1,271 +1,3 @@ -# ---------------------------- -# INTEL ONE MONO OPENTYPE CODE -# ---------------------------- -# ---------------- -# Language Systems -# ---------------- - -languagesystem DFLT dflt; -languagesystem latn dflt; -languagesystem latn TRK; -languagesystem latn AZE; -languagesystem latn CRT; -languagesystem latn CAT; - - -# ------- -# Classes -# ------- - -# Base Letters -@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; -@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; - -# Figures -@fig = [zero one two three four five six seven eight nine]; -@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; -@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; -@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; -@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; - -# Marks Above -@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; -@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; - -# Marks Below -@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; - - -# --------------- -# Localized Forms -# --------------- - -feature locl { - script latn; - language TRK; - lookup iTurkish { - sub i by idotaccent; - } iTurkish; - language AZE; - lookup iTurkish; - language CRT; - lookup iTurkish; - language CAT; - sub l periodcentered' l by middotcat; - sub L periodcentered' L by middotcat.cap; - # try fusing them - sub L middotcat.cap by L.dot; - sub L middotcat by L.dot; - sub l middotcat by l.dot; -} locl; - - -# --------------------------------- -# Glyph Composition / Decomposition -# --------------------------------- - -feature ccmp { - - # Decompose unicode lowercase characters whose uppercase counterparts have no unicode. - lookup Decomp { - sub hlinebelow by h macronlowmod; - sub jcaron by j caron; - } Decomp; - - # Replace double above accents by combined drawings. - lookup DblMarks { - sub dieresiscmb acutecmb by dieresisacute; - sub dieresiscmb gravecmb by dieresisgrave; - sub dieresiscmb caroncmb by dieresiscaron; - sub dieresiscmb macroncmb by dieresismacron; - sub brevecmb acutecmb by breveacute; - sub brevecmb gravecmb by brevegrave; - sub brevecmb hookcmb by brevehook; - sub brevecmb tildecmb by brevetilde; - sub circumflexcmb acutecmb by circumflexacute; - sub circumflexcmb gravecmb by circumflexgrave; - sub circumflexcmb hookcmb by circumflexhook; - sub circumflexcmb tildecmb by circumflextilde; - # capital forms - sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; - sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; - sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; - sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; - sub brevecmb.cap acutecmb.cap by breveacute.cap; - sub brevecmb.cap gravecmb.cap by brevegrave.cap; - sub brevecmb.cap hookcmb.cap by brevehook.cap; - sub brevecmb.cap tildecmb.cap by brevetilde.cap; - sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; - sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; - sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; - sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; - } DblMarks; - - # Replace combining marks that follow a uppercase letter by their uppercase form - lookup CapitalMarks { - sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; - sub [@ltrUC] [@lcMarks]' by [@ucMarks]; - } CapitalMarks; - - # Replace letters with dotless counterparts when followed by a combining mark - lookup Dotless { - sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; - sub [i j]' [@lcMarks] by [dotlessi dotlessj]; - } Dotless; - - # Replace e ogonek with pre-drawn eogonek - lookup eogonek { - sub e ogonekcmb by eogonek; - } eogonek; - -} ccmp; - - -# ---------- -# Numerators -# ---------- - -feature numr { - sub @fig by @figNum; -} numr; - -# ------------ -# Denominators -# ------------ - -feature dnom { - sub @fig by @figDen; -} dnom; - -# ----------- -# Superscript -# ----------- - -feature sups { - sub @fig by @figSup; -} sups; - -# --------------------- -# Subscript & Inferiors -# --------------------- - -feature subs { - sub @fig by @figInf; -} subs; - -feature sinf { - sub @fig by @figInf; -} sinf; - - -# --------------------- -# Contextual Alternates -# --------------------- - -feature calt { - # shifts colon to align with math symbols when used together - - sub colon' [plus equal greater less hyphen] by colon.fig; - sub [plus equal less greater hyphen] colon' by colon.fig; - - sub colon' [colon colon.fig] by colon.fig; - sub colon.fig colon' by colon.fig; - -} calt; - - -# -------------- -# Stylistic Sets -# -------------- - -feature ss11 { - featureNames { - name "Raised Colon (Figures Only)"; # Windows English - name 1 0 0 "Raised Colon (Figures Only)"; # Mac English - }; - lookup FigureColonContextual { - sub @fig colon' @fig by colon.fig; - } FigureColonContextual; -} ss11; - -feature ss12 { - featureNames { - name "Raised Colon (Global)"; # Windows English - name 1 0 0 "Raised Colon (Global)"; # Mac English - }; - lookup FigureColon { - sub colon by colon.fig; - } FigureColon; -} ss12; - - -# -------------------- -# Stylistic Alternates -# -------------------- - -feature salt { - lookup FigureColon; # SS12 -} salt; - - -# -------------- -# All Alternates -# -------------- - -feature aalt { - sub germandbls from [germandbls uni1E9E]; - sub uni1E9E from [uni1E9E germandbls]; - sub colon from [colon colon.fig]; - sub colon.fig from [colon.fig colon]; - sub eight from [eight eight.den eight.sup eight.num eight.inf]; - sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; - sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; - sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; - sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; - sub five from [five five.inf five.num five.den five.sup]; - sub five.sup from [five.sup five five.inf five.num five.den]; - sub five.den from [five.den five.sup five five.inf five.num]; - sub five.num from [five.num five.den five.sup five five.inf]; - sub five.inf from [five.inf five.num five.den five.sup five]; - sub four from [four four.sup four.num four.den four.inf]; - sub four.inf from [four.inf four four.sup four.num four.den]; - sub four.den from [four.den four.inf four four.sup four.num]; - sub four.num from [four.num four.den four.inf four four.sup]; - sub four.sup from [four.sup four.num four.den four.inf four]; - sub nine from [nine nine.den nine.inf nine.num nine.sup]; - sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; - sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; - sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; - sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; - sub one from [one one.den one.num one.inf one.sup]; - sub one.sup from [one.sup one one.den one.num one.inf]; - sub one.inf from [one.inf one.sup one one.den one.num]; - sub one.num from [one.num one.inf one.sup one one.den]; - sub one.den from [one.den one.num one.inf one.sup one]; - sub seven from [seven seven.inf seven.num seven.sup seven.den]; - sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; - sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; - sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; - sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; - sub six from [six six.num six.sup six.den six.inf]; - sub six.inf from [six.inf six six.num six.sup six.den]; - sub six.den from [six.den six.inf six six.num six.sup]; - sub six.sup from [six.sup six.den six.inf six six.num]; - sub six.num from [six.num six.sup six.den six.inf six]; - sub three from [three three.inf three.den three.num three.sup]; - sub three.sup from [three.sup three three.inf three.den three.num]; - sub three.num from [three.num three.sup three three.inf three.den]; - sub three.den from [three.den three.num three.sup three three.inf]; - sub three.inf from [three.inf three.den three.num three.sup three]; - sub two from [two two.inf two.sup two.num two.den]; - sub two.den from [two.den two two.inf two.sup two.num]; - sub two.num from [two.num two.den two two.inf two.sup]; - sub two.sup from [two.sup two.num two.den two two.inf]; - sub two.inf from [two.inf two.sup two.num two.den two]; - sub zero from [zero zero.sup zero.num zero.den zero.inf]; - sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; - sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; - sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; - sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; -} aalt; +include(../features/shared.fea); +include(../features/aalt.fea); diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/fontinfo.plist b/sources/masters/IntelOneMono-Bold-mstr.ufo/fontinfo.plist index 95dd50ee..585ef84e 100644 --- a/sources/masters/IntelOneMono-Bold-mstr.ufo/fontinfo.plist +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/fontinfo.plist @@ -7,7 +7,7 @@ capHeight 655 copyright - Copyright 2023 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) descender -260 familyName @@ -53,7 +53,7 @@ platformID 1 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -65,7 +65,7 @@ platformID 3 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -383,7 +383,7 @@ versionMajor 1 versionMinor - 3 + 4 xHeight 477 diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_.dot.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_.dot.glif index e3ec776c..d418821a 100644 --- a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_.dot.glif +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/L_.dot.glif @@ -8,7 +8,6 @@ - diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/S_.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/S_.glif index 6c71dc72..5cba7a5f 100644 --- a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/S_.glif +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/S_.glif @@ -2,7 +2,6 @@ - diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acutecmb.cap.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acutecmb.cap.glif index 9e600f60..2b52b99c 100644 --- a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acutecmb.cap.glif +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/acutecmb.cap.glif @@ -1,6 +1,5 @@ - diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ampersand_ampersand.liga.glif new file mode 100644 index 00000000..f036b56e --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ampersand_ampersand.liga.glif @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadleft.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadleft.glif new file mode 100644 index 00000000..b92c0f45 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadleft.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadleftopen.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadleftopen.glif new file mode 100644 index 00000000..d741129b --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadleftopen.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadright.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadright.glif new file mode 100644 index 00000000..9f297316 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadright.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadrightopen.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadrightopen.glif new file mode 100644 index 00000000..2e46f9c3 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/arrowheadrightopen.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciicircum_equal.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciicircum_equal.liga.glif new file mode 100644 index 00000000..56a0b3e9 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciicircum_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..940ba462 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif new file mode 100644 index 00000000..da1fda29 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_at.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_at.liga.glif new file mode 100644 index 00000000..37035577 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_at.liga.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_greater.liga.glif new file mode 100644 index 00000000..ddf20e85 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_greater.liga.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif new file mode 100644 index 00000000..7f966b04 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk.glif index 60b1cc5c..38b08c57 100644 --- a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk.glif +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk.glif @@ -2,7 +2,6 @@ - diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_asterisk.liga.glif new file mode 100644 index 00000000..f5b70319 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_asterisk.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif new file mode 100644 index 00000000..8f5f8b44 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_greater.liga.glif new file mode 100644 index 00000000..74c21e34 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_slash.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_slash.liga.glif new file mode 100644 index 00000000..f55eb628 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/asterisk_slash.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/at.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/at.glif index 3ae8a063..a13f89ca 100644 --- a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/at.glif +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/at.glif @@ -2,7 +2,6 @@ - diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/backslash_slash.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/backslash_slash.liga.glif new file mode 100644 index 00000000..f919c7f8 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/backslash_slash.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar.liga.glif new file mode 100644 index 00000000..0bb2a5a7 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_bar.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_bar.liga.glif new file mode 100644 index 00000000..f494b682 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_bar.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif new file mode 100644 index 00000000..a412182b --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_equal.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_equal.liga.glif new file mode 100644 index 00000000..1c02fdf3 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_equal.start.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_equal.start.glif new file mode 100644 index 00000000..11adb29c --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_equal.start.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_greater.liga.glif new file mode 100644 index 00000000..96ab7c21 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_greater.liga.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif new file mode 100644 index 00000000..d5c1570a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_hyphen.start.glif new file mode 100644 index 00000000..8af92039 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bar_hyphen.start.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_braceright.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_braceright.liga.glif new file mode 100644 index 00000000..50d54a15 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_braceright.liga.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bracketright.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bracketright.liga.glif new file mode 100644 index 00000000..8dae676e --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_bracketright.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_equal.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_equal.liga.glif new file mode 100644 index 00000000..f1fb86d5 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_equal.start.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_equal.start.glif new file mode 100644 index 00000000..00d50c41 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_equal.start.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_greater.liga.glif new file mode 100644 index 00000000..f30ffcd3 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_greater.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_hyphen.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_hyphen.liga.glif new file mode 100644 index 00000000..bc4f18a2 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_hyphen.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_hyphen.start.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_hyphen.start.glif new file mode 100644 index 00000000..155c6d37 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bar_hyphen.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/braceleft_bar.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/braceleft_bar.liga.glif new file mode 100644 index 00000000..7ff96208 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/braceleft_bar.liga.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bracketleft_bar.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bracketleft_bar.liga.glif new file mode 100644 index 00000000..a0f639ba --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bracketleft_bar.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bracketright_numbersign.liga.glif new file mode 100644 index 00000000..a3d8465d --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/bracketright_numbersign.liga.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon.liga.glif new file mode 100644 index 00000000..b29b9a6f --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon_colon.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon_colon.liga.glif new file mode 100644 index 00000000..4c2addd8 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon_colon.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon_equal.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon_equal.liga.glif new file mode 100644 index 00000000..8c4b5f7a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_colon_equal.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_equal.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_equal.liga.glif new file mode 100644 index 00000000..296570a7 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_greater.liga.glif new file mode 100644 index 00000000..2c43daa4 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_greater.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_less.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_less.liga.glif new file mode 100644 index 00000000..5d6eb94c --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/colon_less.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/contents.plist b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/contents.plist index 872b0f47..140ed033 100644 --- a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/contents.plist +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/contents.plist @@ -502,6 +502,8 @@ amacron.glif ampersand ampersand.glif + ampersand_ampersand.liga + ampersand_ampersand.liga.glif aogonek aogonek.glif apostrophemod @@ -510,12 +512,40 @@ approxequal.glif aring aring.glif + arrowheadleft + arrowheadleft.glif + arrowheadleftopen + arrowheadleftopen.glif + arrowheadright + arrowheadright.glif + arrowheadrightopen + arrowheadrightopen.glif asciicircum asciicircum.glif + asciicircum_equal.liga + asciicircum_equal.liga.glif asciitilde asciitilde.glif + asciitilde_asciitilde.liga + asciitilde_asciitilde.liga.glif + asciitilde_asciitilde_greater + asciitilde_asciitilde_greater.glif + asciitilde_at.liga + asciitilde_at.liga.glif + asciitilde_greater.liga + asciitilde_greater.liga.glif + asciitilde_hyphen.liga + asciitilde_hyphen.liga.glif asterisk asterisk.glif + asterisk_asterisk.liga + asterisk_asterisk.liga.glif + asterisk_asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga.glif + asterisk_greater.liga + asterisk_greater.liga.glif + asterisk_slash.liga + asterisk_slash.liga.glif at at.glif atilde @@ -524,22 +554,60 @@ b.glif backslash backslash.glif + backslash_slash.liga + backslash_slash.liga.glif bahtthai bahtthai.glif bahtthai.bar bahtthai.bar.glif bar bar.glif + bar_bar.liga + bar_bar.liga.glif + bar_bar_bar.liga + bar_bar_bar.liga.glif + bar_bar_bar_greater.liga + bar_bar_bar_greater.liga.glif + bar_bar_equal.liga + bar_bar_equal.liga.glif + bar_bar_equal.start + bar_bar_equal.start.glif + bar_bar_greater.liga + bar_bar_greater.liga.glif + bar_bar_hyphen.liga + bar_bar_hyphen.liga.glif + bar_bar_hyphen.start + bar_bar_hyphen.start.glif + bar_braceright.liga + bar_braceright.liga.glif + bar_bracketright.liga + bar_bracketright.liga.glif + bar_equal.liga + bar_equal.liga.glif + bar_equal.start + bar_equal.start.glif + bar_greater.liga + bar_greater.liga.glif + bar_hyphen.liga + bar_hyphen.liga.glif + bar_hyphen.start + bar_hyphen.start.glif blinebelow blinebelow.glif braceleft braceleft.glif + braceleft_bar.liga + braceleft_bar.liga.glif braceright braceright.glif bracketleft bracketleft.glif + bracketleft_bar.liga + bracketleft_bar.liga.glif bracketright bracketright.glif + bracketright_numbersign.liga + bracketright_numbersign.liga.glif breve breve.glif breveacute @@ -620,6 +688,18 @@ colon.glif colon.fig colon.fig.glif + colon_colon.liga + colon_colon.liga.glif + colon_colon_colon.liga + colon_colon_colon.liga.glif + colon_colon_equal.liga + colon_colon_equal.liga.glif + colon_equal.liga + colon_equal.liga.glif + colon_greater.liga + colon_greater.liga.glif + colon_less.liga + colon_less.liga.glif comma comma.glif commaaboverightcmb @@ -636,8 +716,32 @@ dagger.glif daggerdbl daggerdbl.glif + darkshade + darkshade.glif + dbldnhorzbxd + dbldnhorzbxd.glif + dbldnleftbxd + dbldnleftbxd.glif + dbldnrightbxd + dbldnrightbxd.glif + dblhorzbxd + dblhorzbxd.glif dblprimemod dblprimemod.glif + dbluphorzbxd + dbluphorzbxd.glif + dblupleftbxd + dblupleftbxd.glif + dbluprightbxd + dbluprightbxd.glif + dblvertbxd + dblvertbxd.glif + dblverthorzbxd + dblverthorzbxd.glif + dblvertleftbxd + dblvertleftbxd.glif + dblvertrightbxd + dblvertrightbxd.glif dcaron dcaron.glif dcircumflexbelow @@ -676,10 +780,68 @@ divide.glif dlinebelow dlinebelow.glif + dndblhorzsngbxd + dndblhorzsngbxd.glif + dndblleftsngbxd + dndblleftsngbxd.glif + dndblrightsngbxd + dndblrightsngbxd.glif + dneighthblock + dneighthblock.glif + dnfiveeighthsblock + dnfiveeighthsblock.glif + dnhalfblock + dnhalfblock.glif + dnheavyhorzlightbxd + dnheavyhorzlightbxd.glif + dnheavyleftlightbxd + dnheavyleftlightbxd.glif + dnheavyleftuplightbxd + dnheavyleftuplightbxd.glif + dnheavyrightlightbxd + dnheavyrightlightbxd.glif + dnheavyrightuplightbxd + dnheavyrightuplightbxd.glif + dnheavyuphorzlightbxd + dnheavyuphorzlightbxd.glif + dnleftquadrant + dnleftquadrant.glif + dnlighthorzheavybxd + dnlighthorzheavybxd.glif + dnlightleftheavybxd + dnlightleftheavybxd.glif + dnlightleftupheavybxd + dnlightleftupheavybxd.glif + dnlightrightheavybxd + dnlightrightheavybxd.glif + dnlightrightupheavybxd + dnlightrightupheavybxd.glif + dnlightuphorzheavybxd + dnlightuphorzheavybxd.glif + dnquarterblock + dnquarterblock.glif + dnrightquadrant + dnrightquadrant.glif + dnseveneighthsblock + dnseveneighthsblock.glif + dnsnghorzdblbxd + dnsnghorzdblbxd.glif + dnsngleftdblbxd + dnsngleftdblbxd.glif + dnsngrightdblbxd + dnsngrightdblbxd.glif + dnthreeeighthsblock + dnthreeeighthsblock.glif + dnthreequartersblock + dnthreequartersblock.glif dollar dollar.glif dollar.bar dollar.bar.glif + dollar_greater.liga + dollar_greater.liga.glif + dollar_greater.ligabar + dollar_greater.ligabar.glif dong dong.glif dotaccent @@ -748,12 +910,86 @@ eogonek.glif equal equal.glif + equal.end + equal.end.glif + equal.middle + equal.middle.glif + equal.start + equal.start.glif + equal_asciitilde.liga + equal_asciitilde.liga.glif + equal_bar.end + equal_bar.end.glif + equal_bar.liga + equal_bar.liga.glif + equal_bar_bar.end + equal_bar_bar.end.glif + equal_bar_bar.liga + equal_bar_bar.liga.glif + equal_bar_bar_equal.middle + equal_bar_bar_equal.middle.glif + equal_bar_equal.middle + equal_bar_equal.middle.glif + equal_colon_equal.middle + equal_colon_equal.middle.glif + equal_equal.liga + equal_equal.liga.glif + equal_equal_equal.liga + equal_equal_equal.liga.glif + equal_exclam_equal.middle + equal_exclam_equal.middle.glif + equal_greater.end + equal_greater.end.glif + equal_greater.liga + equal_greater.liga.glif + equal_greater_equal.middle + equal_greater_equal.middle.glif + equal_greater_greater.end + equal_greater_greater.end.glif + equal_greater_greater.liga + equal_greater_greater.liga.glif + equal_greater_greater_equal.m + equal_greater_greater_equal.m.glif + equal_less.end + equal_less.end.glif + equal_less.liga + equal_less.liga.glif + equal_less_equal.middle + equal_less_equal.middle.glif + equal_less_less.end + equal_less_less.end.glif + equal_less_less.liga + equal_less_less.liga.glif + equal_less_less_equal.middle + equal_less_less_equal.middle.glif + equal_slash.end + equal_slash.end.glif + equal_slash.liga + equal_slash.liga.glif + equal_slash_equal.middle + equal_slash_equal.middle.glif + equal_slash_slash.end + equal_slash_slash.end.glif + equal_slash_slash.liga + equal_slash_slash.liga.glif + equal_slash_slash_equal.middle + equal_slash_slash_equal.middle.glif eth eth.glif etilde etilde.glif exclam exclam.glif + exclam_asciitilde.liga + exclam_asciitilde.liga.glif + exclam_equal.liga + exclam_equal.liga.glif + exclam_equal_equal.liga + exclam_equal_equal.liga.glif + exclam_exclam.liga + exclam_exclam.liga.glif + exclam_exclam_period.liga + exclam_exclam_period.liga.glif exclamdown exclamdown.glif f @@ -788,6 +1024,8 @@ fracbar.glif fraction fraction.glif + fullblock + fullblock.glif g g.glif gbreve @@ -812,6 +1050,34 @@ gravecmb.cap.glif greater greater.glif + greater_colon.liga + greater_colon.liga.glif + greater_equal + greater_equal.glif + greater_equal.liga + greater_equal.liga.glif + greater_equal.start + greater_equal.start.glif + greater_equal_greater.liga + greater_equal_greater.liga.glif + greater_greater.liga + greater_greater.liga.glif + greater_greater_equal.liga + greater_greater_equal.liga.glif + greater_greater_equal.start + greater_greater_equal.start.glif + greater_greater_greater.liga + greater_greater_greater.liga.glif + greater_greater_hyphen.liga + greater_greater_hyphen.liga.glif + greater_greater_hyphen.start + greater_greater_hyphen.start.glif + greater_hyphen.liga + greater_hyphen.liga.glif + greater_hyphen.start + greater_hyphen.start.glif + greater_hyphen_greater.liga + greater_hyphen_greater.liga.glif greaterequal greaterequal.glif guillemetleft @@ -834,6 +1100,52 @@ hcircumflex.glif hdotbelow hdotbelow.glif + heavydbldashhorzbxd + heavydbldashhorzbxd.glif + heavydbldashvertbxd + heavydbldashvertbxd.glif + heavydnbxd + heavydnbxd.glif + heavydnhorzbxd + heavydnhorzbxd.glif + heavydnleftbxd + heavydnleftbxd.glif + heavydnrightbxd + heavydnrightbxd.glif + heavyhorzbxd + heavyhorzbxd.glif + heavyleftbxd + heavyleftbxd.glif + heavyleftlightrightbxd + heavyleftlightrightbxd.glif + heavyquaddashhorzbxd + heavyquaddashhorzbxd.glif + heavyquaddashvertbxd + heavyquaddashvertbxd.glif + heavyrightbxd + heavyrightbxd.glif + heavytrpldashhorzbxd + heavytrpldashhorzbxd.glif + heavytrpldashvertbxd + heavytrpldashvertbxd.glif + heavyupbxd + heavyupbxd.glif + heavyuphorzbxd + heavyuphorzbxd.glif + heavyupleftbxd + heavyupleftbxd.glif + heavyuplightdnbxd + heavyuplightdnbxd.glif + heavyuprightbxd + heavyuprightbxd.glif + heavyvertbxd + heavyvertbxd.glif + heavyverthorzbxd + heavyverthorzbxd.glif + heavyvertleftbxd + heavyvertleftbxd.glif + heavyvertrightbxd + heavyvertrightbxd.glif hlinebelow hlinebelow.glif hookcmb @@ -850,6 +1162,54 @@ hungarumlautcmb.cap.glif hyphen hyphen.glif + hyphen.end + hyphen.end.glif + hyphen.middle + hyphen.middle.glif + hyphen.start + hyphen.start.glif + hyphen_asciitilde.liga + hyphen_asciitilde.liga.glif + hyphen_bar.end + hyphen_bar.end.glif + hyphen_bar.liga + hyphen_bar.liga.glif + hyphen_bar_bar.end + hyphen_bar_bar.end.glif + hyphen_bar_bar.liga + hyphen_bar_bar.liga.glif + hyphen_bar_bar_hyphen.middle + hyphen_bar_bar_hyphen.middle.glif + hyphen_bar_hyphen.middle + hyphen_bar_hyphen.middle.glif + hyphen_greater.end + hyphen_greater.end.glif + hyphen_greater.liga + hyphen_greater.liga.glif + hyphen_greater_greater.end + hyphen_greater_greater.end.glif + hyphen_greater_greater.liga + hyphen_greater_greater.liga.glif + hyphen_greater_greater_hyphen.m + hyphen_greater_greater_hyphen.m.glif + hyphen_greater_hyphen.middle + hyphen_greater_hyphen.middle.glif + hyphen_hyphen.liga + hyphen_hyphen.liga.glif + hyphen_hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga.glif + hyphen_less.end + hyphen_less.end.glif + hyphen_less.liga + hyphen_less.liga.glif + hyphen_less_hyphen.middle + hyphen_less_hyphen.middle.glif + hyphen_less_less.end + hyphen_less_less.end.glif + hyphen_less_less.liga + hyphen_less_less.liga.glif + hyphen_less_less_hyphen.middle + hyphen_less_less_hyphen.middle.glif i i.glif iacute @@ -904,10 +1264,174 @@ lcommaaccent.glif ldotbelow ldotbelow.glif + leftdnheavyrightuplightbxd + leftdnheavyrightuplightbxd.glif + lefteighthblock + lefteighthblock.glif + leftfiveeighthsblock + leftfiveeighthsblock.glif + lefthalfblock + lefthalfblock.glif + leftheavyrightdnlightbxd + leftheavyrightdnlightbxd.glif + leftheavyrightuplightbxd + leftheavyrightuplightbxd.glif + leftheavyrightvertlightbxd + leftheavyrightvertlightbxd.glif + leftlightrightdnheavybxd + leftlightrightdnheavybxd.glif + leftlightrightupheavybxd + leftlightrightupheavybxd.glif + leftlightrightvertheavybxd + leftlightrightvertheavybxd.glif + leftquarterblock + leftquarterblock.glif + leftseveneighthsblock + leftseveneighthsblock.glif + leftthreeeighthsblock + leftthreeeighthsblock.glif + leftthreequartersblock + leftthreequartersblock.glif + leftupheavyrightdnlightbxd + leftupheavyrightdnlightbxd.glif less less.glif + less_asciitilde.liga + less_asciitilde.liga.glif + less_asciitilde_asciitilde.liga + less_asciitilde_asciitilde.liga.glif + less_asciitilde_greater.liga + less_asciitilde_greater.liga.glif + less_asterisk.liga + less_asterisk.liga.glif + less_asterisk_greater.liga + less_asterisk_greater.liga.glif + less_bar.liga + less_bar.liga.glif + less_bar_bar.liga + less_bar_bar.liga.glif + less_bar_bar_bar.liga + less_bar_bar_bar.liga.glif + less_bar_greater.liga + less_bar_greater.liga.glif + less_colon.liga + less_colon.liga.glif + less_dollar.liga + less_dollar.liga.glif + less_dollar.ligabar + less_dollar.ligabar.glif + less_dollar_greater.liga + less_dollar_greater.liga.glif + less_dollar_greater.ligabar + less_dollar_greater.ligabar.glif + less_equal + less_equal.glif + less_equal.liga + less_equal.liga.glif + less_equal.start + less_equal.start.glif + less_equal_greater.liga + less_equal_greater.liga.glif + less_equal_less.liga + less_equal_less.liga.glif + less_exclam_hyphen_hyphen.liga + less_exclam_hyphen_hyphen.liga.glif + less_greater.liga + less_greater.liga.glif + less_hyphen.liga + less_hyphen.liga.glif + less_hyphen.start + less_hyphen.start.glif + less_hyphen_greater.liga + less_hyphen_greater.liga.glif + less_hyphen_less.liga + less_hyphen_less.liga.glif + less_less.liga + less_less.liga.glif + less_less_equal.liga + less_less_equal.liga.glif + less_less_equal.start + less_less_equal.start.glif + less_less_hyphen.liga + less_less_hyphen.liga.glif + less_less_hyphen.start + less_less_hyphen.start.glif + less_less_less.liga + less_less_less.liga.glif + less_plus.liga + less_plus.liga.glif + less_plus_greater.liga + less_plus_greater.liga.glif + less_slash.liga + less_slash.liga.glif + less_slash_greater.liga + less_slash_greater.liga.glif lessequal lessequal.glif + lightarcdnleftbxd + lightarcdnleftbxd.glif + lightarcdnrightbxd + lightarcdnrightbxd.glif + lightarcupleftbxd + lightarcupleftbxd.glif + lightarcuprightbxd + lightarcuprightbxd.glif + lightdbldashhorzbxd + lightdbldashhorzbxd.glif + lightdbldashvertbxd + lightdbldashvertbxd.glif + lightdiagcrossbxd + lightdiagcrossbxd.glif + lightdiagupleftdnrightbxd + lightdiagupleftdnrightbxd.glif + lightdiaguprightdnleftbxd + lightdiaguprightdnleftbxd.glif + lightdnbxd + lightdnbxd.glif + lightdnhorzbxd + lightdnhorzbxd.glif + lightdnleftbxd + lightdnleftbxd.glif + lightdnrightbxd + lightdnrightbxd.glif + lighthorzbxd + lighthorzbxd.glif + lightleftbxd + lightleftbxd.glif + lightleftheavyrightbxd + lightleftheavyrightbxd.glif + lightquaddashhorzbxd + lightquaddashhorzbxd.glif + lightquaddashvertbxd + lightquaddashvertbxd.glif + lightrightbxd + lightrightbxd.glif + lightshade + lightshade.glif + lighttrpldashhorzbxd + lighttrpldashhorzbxd.glif + lighttrpldashvertbxd + lighttrpldashvertbxd.glif + lightupbxd + lightupbxd.glif + lightupheavydnbxd + lightupheavydnbxd.glif + lightuphorzbxd + lightuphorzbxd.glif + lightupleftbxd + lightupleftbxd.glif + lightuprightbxd + lightuprightbxd.glif + lightvertbxd + lightvertbxd.glif + lightverthorzbxd + lightverthorzbxd.glif + lightvertleftbxd + lightvertleftbxd.glif + lightvertrightbxd + lightvertrightbxd.glif + ligspacer + ligspacer.glif llinebelow llinebelow.glif lmacrondotbelow @@ -932,6 +1456,8 @@ mdotaccent.glif mdotbelow mdotbelow.glif + mediumshade + mediumshade.glif middotcat middotcat.glif middotcat.cap @@ -980,6 +1506,30 @@ ntilde.glif numbersign numbersign.glif + numbersign.end + numbersign.end.glif + numbersign.middle + numbersign.middle.glif + numbersign.start + numbersign.start.glif + numbersign_braceleft.liga + numbersign_braceleft.liga.glif + numbersign_bracketleft.liga + numbersign_bracketleft.liga.glif + numbersign_colon.liga + numbersign_colon.liga.glif + numbersign_equal.liga + numbersign_equal.liga.glif + numbersign_exclam.liga + numbersign_exclam.liga.glif + numbersign_parenleft.liga + numbersign_parenleft.liga.glif + numbersign_question.liga + numbersign_question.liga.glif + numbersign_underscore.liga + numbersign_underscore.liga.glif + numbersign_underscore_parenleft + numbersign_underscore_parenleft.glif o o.glif oacute @@ -1076,8 +1626,24 @@ parenright.glif percent percent.glif + percent_percent.liga + percent_percent.liga.glif period period.glif + period_equal.liga + period_equal.liga.glif + period_hyphen.liga + period_hyphen.liga.glif + period_period.liga + period_period.liga.glif + period_period_equal.liga + period_period_equal.liga.glif + period_period_less.liga + period_period_less.liga.glif + period_period_period.liga + period_period_period.liga.glif + period_question.liga + period_question.liga.glif periodcentered periodcentered.glif peso @@ -1086,6 +1652,12 @@ peso.bar.glif plus plus.glif + plus_greater.liga + plus_greater.liga.glif + plus_plus.liga + plus_plus.liga.glif + plus_plus_plus.liga + plus_plus_plus.liga.glif plusminus plusminus.glif primemod @@ -1096,6 +1668,14 @@ q.glif question question.glif + question_colon.liga + question_colon.liga.glif + question_equal.liga + question_equal.liga.glif + question_period.liga + question_period.liga.glif + question_question.liga + question_question.liga.glif questiondown questiondown.glif quotedbl @@ -1128,6 +1708,26 @@ rdotbelow.glif registered registered.glif + rightdnheavyleftuplightbxd + rightdnheavyleftuplightbxd.glif + righteighthblock + righteighthblock.glif + righthalfblock + righthalfblock.glif + rightheavyleftdnlightbxd + rightheavyleftdnlightbxd.glif + rightheavyleftuplightbxd + rightheavyleftuplightbxd.glif + rightheavyleftvertlightbxd + rightheavyleftvertlightbxd.glif + rightlightleftdnheavybxd + rightlightleftdnheavybxd.glif + rightlightleftupheavybxd + rightlightleftupheavybxd.glif + rightlightleftvertheavybxd + rightlightleftvertheavybxd.glif + rightupheavyleftdnlightbxd + rightupheavyleftdnlightbxd.glif ring ring.glif ringcmb @@ -1162,6 +1762,8 @@ section.glif semicolon semicolon.glif + semicolon_semicolon.liga + semicolon_semicolon.liga.glif servicemark servicemark.glif seven @@ -1188,6 +1790,24 @@ six.sup.glif slash slash.glif + slash_asterisk.liga + slash_asterisk.liga.glif + slash_backslash.liga + slash_backslash.liga.glif + slash_equal.liga + slash_equal.liga.glif + slash_equal.start + slash_equal.start.glif + slash_greater.liga + slash_greater.liga.glif + slash_slash.liga + slash_slash.liga.glif + slash_slash_equal.liga + slash_slash_equal.liga.glif + slash_slash_equal.start + slash_slash_equal.start.glif + slash_slash_slash.liga + slash_slash_slash.liga.glif space space.glif sterling @@ -1294,6 +1914,14 @@ umacron.glif underscore underscore.glif + underscore.end + underscore.end.glif + underscore.middle + underscore.middle.glif + underscore.start + underscore.start.glif + underscore_bar_underscore.m + underscore_bar_underscore.m.glif uni00A0 uni00A_0.glif uni0326 @@ -1308,10 +1936,88 @@ uni20B_A_.glif uni20BD uni20B_D_.glif + uni2610 + uni2610.glif + uni2611 + uni2611.glif + uni2612 + uni2612.glif + uni2713 + uni2713.glif uniA788 uniA_788.glif + uniE0A0 + uniE_0A_0.glif + uniE0A1 + uniE_0A_1.glif + uniE0A2 + uniE_0A_2.glif + uniE0B0 + uniE_0B_0.glif + uniE0B1 + uniE_0B_1.glif + uniE0B2 + uniE_0B_2.glif + uniE0B3 + uniE_0B_3.glif uogonek uogonek.glif + updblhorzsngbxd + updblhorzsngbxd.glif + updblleftsngbxd + updblleftsngbxd.glif + updblrightsngbxd + updblrightsngbxd.glif + upeighthblock + upeighthblock.glif + uphalfblock + uphalfblock.glif + upheavydnhorzlightbxd + upheavydnhorzlightbxd.glif + upheavyhorzlightbxd + upheavyhorzlightbxd.glif + upheavyleftdnlightbxd + upheavyleftdnlightbxd.glif + upheavyleftlightbxd + upheavyleftlightbxd.glif + upheavyrightdnlightbxd + upheavyrightdnlightbxd.glif + upheavyrightlightbxd + upheavyrightlightbxd.glif + upleftdnleftdnrightquadrant + upleftdnleftdnrightquadrant.glif + upleftdnrightquadrant + upleftdnrightquadrant.glif + upleftquadrant + upleftquadrant.glif + upleftuprightdnleftquadrant + upleftuprightdnleftquadrant.glif + upleftuprightdnrightquadrant + upleftuprightdnrightquadrant.glif + uplightdnhorzheavybxd + uplightdnhorzheavybxd.glif + uplighthorzheavybxd + uplighthorzheavybxd.glif + uplightleftdnheavybxd + uplightleftdnheavybxd.glif + uplightleftheavybxd + uplightleftheavybxd.glif + uplightrightdnheavybxd + uplightrightdnheavybxd.glif + uplightrightheavybxd + uplightrightheavybxd.glif + uprightdnleftdnrightquadrant + uprightdnleftdnrightquadrant.glif + uprightdnleftquadrant + uprightdnleftquadrant.glif + uprightquadrant + uprightquadrant.glif + upsnghorzdblbxd + upsnghorzdblbxd.glif + upsngleftdblbxd + upsngleftdblbxd.glif + upsngrightdblbxd + upsngrightdblbxd.glif uring uring.glif utilde @@ -1320,12 +2026,38 @@ v.glif vdotbelow vdotbelow.glif + vertdblhorzsngbxd + vertdblhorzsngbxd.glif + vertdblleftsngbxd + vertdblleftsngbxd.glif + vertdblrightsngbxd + vertdblrightsngbxd.glif + vertheavyhorzlightbxd + vertheavyhorzlightbxd.glif + vertheavyleftlightbxd + vertheavyleftlightbxd.glif + vertheavyrightlightbxd + vertheavyrightlightbxd.glif verticallinelowmod verticallinelowmod.glif verticallinemod verticallinemod.glif + vertlighthorzheavybxd + vertlighthorzheavybxd.glif + vertlightleftheavybxd + vertlightleftheavybxd.glif + vertlightrightheavybxd + vertlightrightheavybxd.glif + vertsnghorzdblbxd + vertsnghorzdblbxd.glif + vertsngleftdblbxd + vertsngleftdblbxd.glif + vertsngrightdblbxd + vertsngrightdblbxd.glif w w.glif + w_w_w.liga + w_w_w.liga.glif wacute wacute.glif wcircumflex diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/darkshade.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/darkshade.glif new file mode 100644 index 00000000..a56d0f0a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/darkshade.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnhorzbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnhorzbxd.glif new file mode 100644 index 00000000..f392a523 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnhorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnleftbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnleftbxd.glif new file mode 100644 index 00000000..cc38a9f8 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnrightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnrightbxd.glif new file mode 100644 index 00000000..ed0943dc --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbldnrightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblhorzbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblhorzbxd.glif new file mode 100644 index 00000000..7c8a7467 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbluphorzbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbluphorzbxd.glif new file mode 100644 index 00000000..9ddbe8a4 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbluphorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblupleftbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblupleftbxd.glif new file mode 100644 index 00000000..05e6856a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblupleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbluprightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbluprightbxd.glif new file mode 100644 index 00000000..851e7180 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dbluprightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertbxd.glif new file mode 100644 index 00000000..234700a0 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblverthorzbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblverthorzbxd.glif new file mode 100644 index 00000000..291d92b3 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblverthorzbxd.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertleftbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertleftbxd.glif new file mode 100644 index 00000000..6e1c7540 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertleftbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertrightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertrightbxd.glif new file mode 100644 index 00000000..a285c627 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dblvertrightbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dndblhorzsngbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dndblhorzsngbxd.glif new file mode 100644 index 00000000..dada8723 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dndblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dndblleftsngbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dndblleftsngbxd.glif new file mode 100644 index 00000000..d0f7e013 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dndblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dndblrightsngbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dndblrightsngbxd.glif new file mode 100644 index 00000000..eb75f406 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dndblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dneighthblock.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dneighthblock.glif new file mode 100644 index 00000000..ff791c74 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dneighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnfiveeighthsblock.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnfiveeighthsblock.glif new file mode 100644 index 00000000..99bd1498 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnhalfblock.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnhalfblock.glif new file mode 100644 index 00000000..001cf3fb --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnhalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif new file mode 100644 index 00000000..5f76f358 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyleftlightbxd.glif new file mode 100644 index 00000000..a3d9cb06 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif new file mode 100644 index 00000000..6c7093bd --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyrightlightbxd.glif new file mode 100644 index 00000000..27febfa0 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif new file mode 100644 index 00000000..4eb2d1c5 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif new file mode 100644 index 00000000..9daf514c --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnleftquadrant.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnleftquadrant.glif new file mode 100644 index 00000000..42729338 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlighthorzheavybxd.glif new file mode 100644 index 00000000..bc286b79 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightleftheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightleftheavybxd.glif new file mode 100644 index 00000000..9bcc664a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightleftupheavybxd.glif new file mode 100644 index 00000000..fd8c2750 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightrightheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightrightheavybxd.glif new file mode 100644 index 00000000..c00032e4 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightrightupheavybxd.glif new file mode 100644 index 00000000..f526ec48 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif new file mode 100644 index 00000000..235ae3ed --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnquarterblock.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnquarterblock.glif new file mode 100644 index 00000000..c2180b50 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnrightquadrant.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnrightquadrant.glif new file mode 100644 index 00000000..9858382e --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnrightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnseveneighthsblock.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnseveneighthsblock.glif new file mode 100644 index 00000000..ecdac3da --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnsnghorzdblbxd.glif new file mode 100644 index 00000000..44c02275 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnsngleftdblbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnsngleftdblbxd.glif new file mode 100644 index 00000000..302a7c79 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnsngrightdblbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnsngrightdblbxd.glif new file mode 100644 index 00000000..52aa043f --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnthreeeighthsblock.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnthreeeighthsblock.glif new file mode 100644 index 00000000..7febe2aa --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnthreequartersblock.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnthreequartersblock.glif new file mode 100644 index 00000000..a79dae14 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dnthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dollar_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dollar_greater.liga.glif new file mode 100644 index 00000000..26fc96bd --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dollar_greater.liga.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dollar_greater.ligabar.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dollar_greater.ligabar.glif new file mode 100644 index 00000000..ab31debe --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/dollar_greater.ligabar.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal.end.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal.end.glif new file mode 100644 index 00000000..bf4c6cb5 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal.middle.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal.middle.glif new file mode 100644 index 00000000..4cb18375 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal.start.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal.start.glif new file mode 100644 index 00000000..4c861ff1 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_asciitilde.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_asciitilde.liga.glif new file mode 100644 index 00000000..b018a652 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_asciitilde.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar.end.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar.end.glif new file mode 100644 index 00000000..698b1d10 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar.end.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar.liga.glif new file mode 100644 index 00000000..ada22388 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar.end.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar.end.glif new file mode 100644 index 00000000..a0b10c5e --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar.end.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar.liga.glif new file mode 100644 index 00000000..2b6e3954 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif new file mode 100644 index 00000000..bbcd3754 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_equal.middle.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_equal.middle.glif new file mode 100644 index 00000000..02d63133 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_bar_equal.middle.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_colon_equal.middle.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_colon_equal.middle.glif new file mode 100644 index 00000000..5c2e7d8c --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_colon_equal.middle.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_equal.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_equal.liga.glif new file mode 100644 index 00000000..aba8974a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_equal.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_equal_equal.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_equal_equal.liga.glif new file mode 100644 index 00000000..5c4c7901 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_equal_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_exclam_equal.middle.glif new file mode 100644 index 00000000..ad2b2835 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_exclam_equal.middle.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater.end.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater.end.glif new file mode 100644 index 00000000..b36f0a07 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater.end.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater.liga.glif new file mode 100644 index 00000000..1132114b --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_equal.middle.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_equal.middle.glif new file mode 100644 index 00000000..ae251d20 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_equal.middle.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater.end.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater.end.glif new file mode 100644 index 00000000..94a0bd22 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater.end.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater.liga.glif new file mode 100644 index 00000000..3a25831a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif new file mode 100644 index 00000000..2da30e94 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less.end.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less.end.glif new file mode 100644 index 00000000..ec61f946 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less.end.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less.liga.glif new file mode 100644 index 00000000..3624790b --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_equal.middle.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_equal.middle.glif new file mode 100644 index 00000000..50c8de24 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_equal.middle.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less.end.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less.end.glif new file mode 100644 index 00000000..72b017f3 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less.end.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less.liga.glif new file mode 100644 index 00000000..fd4fe56a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less_equal.middle.glif new file mode 100644 index 00000000..7469ac1d --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_less_less_equal.middle.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash.end.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash.end.glif new file mode 100644 index 00000000..7717510a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash.end.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash.liga.glif new file mode 100644 index 00000000..af5abb7e --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_equal.middle.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_equal.middle.glif new file mode 100644 index 00000000..b8c0f828 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_equal.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash.end.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash.end.glif new file mode 100644 index 00000000..74b0a316 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash.end.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash.liga.glif new file mode 100644 index 00000000..7f3ddaa1 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif new file mode 100644 index 00000000..6f05bbd3 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_asciitilde.liga.glif new file mode 100644 index 00000000..c2029bca --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_asciitilde.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_equal.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_equal.liga.glif new file mode 100644 index 00000000..7cb83d6a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_equal_equal.liga.glif new file mode 100644 index 00000000..01f525cf --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_equal_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_exclam.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_exclam.liga.glif new file mode 100644 index 00000000..30253af4 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_exclam.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_exclam_period.liga.glif new file mode 100644 index 00000000..a32092ab --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/exclam_exclam_period.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/fullblock.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/fullblock.glif new file mode 100644 index 00000000..2c547d1b --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/fullblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/germandbls.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/germandbls.glif index 2d5ac80c..3b063f27 100644 --- a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/germandbls.glif +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/germandbls.glif @@ -2,7 +2,6 @@ - diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_colon.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_colon.liga.glif new file mode 100644 index 00000000..d88aacaf --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_colon.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.glif new file mode 100644 index 00000000..5c63804f --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.liga.glif new file mode 100644 index 00000000..324ff8b2 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.start.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.start.glif new file mode 100644 index 00000000..d066a9ef --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal.start.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal_greater.liga.glif new file mode 100644 index 00000000..a7881e35 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_equal_greater.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater.liga.glif new file mode 100644 index 00000000..0af1ab7a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_equal.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_equal.liga.glif new file mode 100644 index 00000000..aa445e1b --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_equal.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_equal.start.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_equal.start.glif new file mode 100644 index 00000000..e3e02350 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_equal.start.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_greater.liga.glif new file mode 100644 index 00000000..04eddc15 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_greater.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif new file mode 100644 index 00000000..2021edcf --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_hyphen.start.glif new file mode 100644 index 00000000..1aec5c0e --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_greater_hyphen.start.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen.liga.glif new file mode 100644 index 00000000..7a2240a5 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen.start.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen.start.glif new file mode 100644 index 00000000..1fe5ed19 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif new file mode 100644 index 00000000..f82abad8 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydbldashhorzbxd.glif new file mode 100644 index 00000000..b28bd1b7 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydbldashvertbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydbldashvertbxd.glif new file mode 100644 index 00000000..8b7ac4c8 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnbxd.glif new file mode 100644 index 00000000..dd069ef3 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnhorzbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnhorzbxd.glif new file mode 100644 index 00000000..418b24f4 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnleftbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnleftbxd.glif new file mode 100644 index 00000000..25677143 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnrightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnrightbxd.glif new file mode 100644 index 00000000..a2a6c724 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavydnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyhorzbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyhorzbxd.glif new file mode 100644 index 00000000..eb7ed0e5 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyhorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyleftbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyleftbxd.glif new file mode 100644 index 00000000..739d1d83 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyleftlightrightbxd.glif new file mode 100644 index 00000000..48b1cb1d --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyleftlightrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif new file mode 100644 index 00000000..6c22b67f --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyquaddashvertbxd.glif new file mode 100644 index 00000000..331ba56b --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyrightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyrightbxd.glif new file mode 100644 index 00000000..b7130c91 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif new file mode 100644 index 00000000..747cbde7 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavytrpldashvertbxd.glif new file mode 100644 index 00000000..c6fca1c8 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavytrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyupbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyupbxd.glif new file mode 100644 index 00000000..9b36718c --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuphorzbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuphorzbxd.glif new file mode 100644 index 00000000..6e3464aa --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyupleftbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyupleftbxd.glif new file mode 100644 index 00000000..4225ae29 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuplightdnbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuplightdnbxd.glif new file mode 100644 index 00000000..3eef537d --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuplightdnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuprightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuprightbxd.glif new file mode 100644 index 00000000..99f59eb1 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertbxd.glif new file mode 100644 index 00000000..dc66b40b --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyverthorzbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyverthorzbxd.glif new file mode 100644 index 00000000..6f8939b4 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertleftbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertleftbxd.glif new file mode 100644 index 00000000..f3a2fbc2 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertrightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertrightbxd.glif new file mode 100644 index 00000000..cb87aa5d --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/heavyvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.end.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.end.glif new file mode 100644 index 00000000..b048dbfc --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.middle.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.middle.glif new file mode 100644 index 00000000..51fdff35 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.start.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.start.glif new file mode 100644 index 00000000..2fb33c1f --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif new file mode 100644 index 00000000..7dedd02b --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar.end.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar.end.glif new file mode 100644 index 00000000..59477daa --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar.liga.glif new file mode 100644 index 00000000..d7c5ba60 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar.end.glif new file mode 100644 index 00000000..e36dc7a2 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar.end.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif new file mode 100644 index 00000000..a26d1b09 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif new file mode 100644 index 00000000..ad444c89 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif new file mode 100644 index 00000000..732abf5f --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater.end.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater.end.glif new file mode 100644 index 00000000..f06cb495 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater.liga.glif new file mode 100644 index 00000000..a5989c7b --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater.end.glif new file mode 100644 index 00000000..6a1f2452 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater.end.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif new file mode 100644 index 00000000..a3bce925 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif new file mode 100644 index 00000000..f905819a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif new file mode 100644 index 00000000..7a7a1db9 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_hyphen.liga.glif new file mode 100644 index 00000000..6f8fac00 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_hyphen.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..7c9168ee --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less.end.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less.end.glif new file mode 100644 index 00000000..4a9011e8 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less.liga.glif new file mode 100644 index 00000000..02df119b --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif new file mode 100644 index 00000000..5f14e07b --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less.end.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less.end.glif new file mode 100644 index 00000000..f2e1e024 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less.end.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less.liga.glif new file mode 100644 index 00000000..6791b4d7 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif new file mode 100644 index 00000000..6d98acf1 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif new file mode 100644 index 00000000..a8f8305a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lefteighthblock.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lefteighthblock.glif new file mode 100644 index 00000000..8d44dad4 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lefteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftfiveeighthsblock.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftfiveeighthsblock.glif new file mode 100644 index 00000000..0eb9ccfc --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lefthalfblock.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lefthalfblock.glif new file mode 100644 index 00000000..325c05f6 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lefthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif new file mode 100644 index 00000000..86dcef33 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif new file mode 100644 index 00000000..e0b44888 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif new file mode 100644 index 00000000..430b42ee --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif new file mode 100644 index 00000000..d9ea942f --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightupheavybxd.glif new file mode 100644 index 00000000..166314ac --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif new file mode 100644 index 00000000..d46de732 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftquarterblock.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftquarterblock.glif new file mode 100644 index 00000000..036dad83 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftseveneighthsblock.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftseveneighthsblock.glif new file mode 100644 index 00000000..74b69747 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftthreeeighthsblock.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftthreeeighthsblock.glif new file mode 100644 index 00000000..e5c4283a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftthreequartersblock.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftthreequartersblock.glif new file mode 100644 index 00000000..5ae5b2e3 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif new file mode 100644 index 00000000..73a76f66 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde.liga.glif new file mode 100644 index 00000000..a7584dcc --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde.liga.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..43e8b889 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif new file mode 100644 index 00000000..da931df9 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asterisk.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asterisk.liga.glif new file mode 100644 index 00000000..0330bb2f --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asterisk.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asterisk_greater.liga.glif new file mode 100644 index 00000000..25de11b2 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_asterisk_greater.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar.liga.glif new file mode 100644 index 00000000..72f579ee --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_bar.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_bar.liga.glif new file mode 100644 index 00000000..d12ca2cc --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_bar.liga.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif new file mode 100644 index 00000000..36f214ff --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_greater.liga.glif new file mode 100644 index 00000000..9093dcdb --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_bar_greater.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_colon.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_colon.liga.glif new file mode 100644 index 00000000..274e3c3c --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_colon.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar.liga.glif new file mode 100644 index 00000000..f86565cf --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar.liga.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar.ligabar.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar.ligabar.glif new file mode 100644 index 00000000..5c219a39 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar.ligabar.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar_greater.liga.glif new file mode 100644 index 00000000..6480f1d7 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar_greater.liga.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif new file mode 100644 index 00000000..4dfc3eb2 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.glif new file mode 100644 index 00000000..93048a2e --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.liga.glif new file mode 100644 index 00000000..5ee747ed --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.start.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.start.glif new file mode 100644 index 00000000..1c14e154 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal.start.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal_greater.liga.glif new file mode 100644 index 00000000..3e661490 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal_greater.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal_less.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal_less.liga.glif new file mode 100644 index 00000000..2c69f2be --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_equal_less.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..15eb4224 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_greater.liga.glif new file mode 100644 index 00000000..dd731fc3 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_greater.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen.liga.glif new file mode 100644 index 00000000..e670e1ea --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen.start.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen.start.glif new file mode 100644 index 00000000..1ba8b556 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen_greater.liga.glif new file mode 100644 index 00000000..0a616ab6 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen_greater.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen_less.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen_less.liga.glif new file mode 100644 index 00000000..af5a2ca9 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_hyphen_less.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less.liga.glif new file mode 100644 index 00000000..9e38d036 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_equal.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_equal.liga.glif new file mode 100644 index 00000000..64a0959a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_equal.start.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_equal.start.glif new file mode 100644 index 00000000..f069857b --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_equal.start.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_hyphen.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_hyphen.liga.glif new file mode 100644 index 00000000..1a4bea36 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_hyphen.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_hyphen.start.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_hyphen.start.glif new file mode 100644 index 00000000..15f0c785 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_hyphen.start.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_less.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_less.liga.glif new file mode 100644 index 00000000..6ca1e3a4 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_less_less.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_plus.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_plus.liga.glif new file mode 100644 index 00000000..fbeb8c64 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_plus.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_plus_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_plus_greater.liga.glif new file mode 100644 index 00000000..26492dfe --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_plus_greater.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_slash.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_slash.liga.glif new file mode 100644 index 00000000..92bfeded --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_slash.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_slash_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_slash_greater.liga.glif new file mode 100644 index 00000000..40ed9a2b --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/less_slash_greater.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcdnleftbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcdnleftbxd.glif new file mode 100644 index 00000000..7b2ae69c --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcdnleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcdnrightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcdnrightbxd.glif new file mode 100644 index 00000000..e77db64a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcdnrightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcupleftbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcupleftbxd.glif new file mode 100644 index 00000000..8c04e6ea --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcupleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcuprightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcuprightbxd.glif new file mode 100644 index 00000000..aa59014b --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightarcuprightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdbldashhorzbxd.glif new file mode 100644 index 00000000..d4979b79 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdbldashvertbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdbldashvertbxd.glif new file mode 100644 index 00000000..fbafb510 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiagcrossbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiagcrossbxd.glif new file mode 100644 index 00000000..b8b28b3d --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiagcrossbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif new file mode 100644 index 00000000..f5b5b097 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif new file mode 100644 index 00000000..e6f59836 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnbxd.glif new file mode 100644 index 00000000..bdae562a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnhorzbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnhorzbxd.glif new file mode 100644 index 00000000..d7712d74 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnleftbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnleftbxd.glif new file mode 100644 index 00000000..5374d7a2 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnrightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnrightbxd.glif new file mode 100644 index 00000000..fa3340d9 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lighthorzbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lighthorzbxd.glif new file mode 100644 index 00000000..25b29983 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lighthorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightleftbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightleftbxd.glif new file mode 100644 index 00000000..a8624b19 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightleftheavyrightbxd.glif new file mode 100644 index 00000000..764336e2 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightleftheavyrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightquaddashhorzbxd.glif new file mode 100644 index 00000000..35e38e1a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightquaddashvertbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightquaddashvertbxd.glif new file mode 100644 index 00000000..072ed15c --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightrightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightrightbxd.glif new file mode 100644 index 00000000..b667c190 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightshade.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightshade.glif new file mode 100644 index 00000000..0e5291b7 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightshade.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif new file mode 100644 index 00000000..19cbe90a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lighttrpldashvertbxd.glif new file mode 100644 index 00000000..42b0a891 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lighttrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightupbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightupbxd.glif new file mode 100644 index 00000000..25fa23f3 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightupheavydnbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightupheavydnbxd.glif new file mode 100644 index 00000000..8d64ef66 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightupheavydnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightuphorzbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightuphorzbxd.glif new file mode 100644 index 00000000..a55536d4 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightupleftbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightupleftbxd.glif new file mode 100644 index 00000000..e36a0903 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightuprightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightuprightbxd.glif new file mode 100644 index 00000000..46263e65 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertbxd.glif new file mode 100644 index 00000000..c8075b0c --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightverthorzbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightverthorzbxd.glif new file mode 100644 index 00000000..d2bc79d5 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertleftbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertleftbxd.glif new file mode 100644 index 00000000..1912526f --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertrightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertrightbxd.glif new file mode 100644 index 00000000..c3d4b72d --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/lightvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ligspacer.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ligspacer.glif new file mode 100644 index 00000000..aaf0214e --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/ligspacer.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/mediumshade.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/mediumshade.glif new file mode 100644 index 00000000..37be9904 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/mediumshade.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/middotcat.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/middotcat.glif index 3285ff63..7549ee31 100644 --- a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/middotcat.glif +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/middotcat.glif @@ -1,7 +1,6 @@ - diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.end.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.end.glif new file mode 100644 index 00000000..9d19138c --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.end.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.glif index 4885ca39..21e823f4 100644 --- a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.glif +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.glif @@ -2,7 +2,6 @@ - diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.middle.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.middle.glif new file mode 100644 index 00000000..6b2e1760 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.middle.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.start.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.start.glif new file mode 100644 index 00000000..ccef8d26 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign.start.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_braceleft.liga.glif new file mode 100644 index 00000000..2602fda4 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_braceleft.liga.glif @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif new file mode 100644 index 00000000..8629915b --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_colon.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_colon.liga.glif new file mode 100644 index 00000000..96419ca6 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_colon.liga.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_equal.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_equal.liga.glif new file mode 100644 index 00000000..8d6ff3a0 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_equal.liga.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_exclam.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_exclam.liga.glif new file mode 100644 index 00000000..567e02e2 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_exclam.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_parenleft.liga.glif new file mode 100644 index 00000000..e51d96f6 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_parenleft.liga.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_question.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_question.liga.glif new file mode 100644 index 00000000..0f682dfe --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_question.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_underscore.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_underscore.liga.glif new file mode 100644 index 00000000..5b7cdb21 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_underscore.liga.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif new file mode 100644 index 00000000..3d926fee --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/percent_percent.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/percent_percent.liga.glif new file mode 100644 index 00000000..ed9ba319 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/percent_percent.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_equal.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_equal.liga.glif new file mode 100644 index 00000000..40319403 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_hyphen.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_hyphen.liga.glif new file mode 100644 index 00000000..e47b1acc --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_period.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_period.liga.glif new file mode 100644 index 00000000..df885b62 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_period.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_equal.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_equal.liga.glif new file mode 100644 index 00000000..0f2b1cc2 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_less.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_less.liga.glif new file mode 100644 index 00000000..739ad9ed --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_less.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_period.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_period.liga.glif new file mode 100644 index 00000000..319b93a5 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_period_period.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_question.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_question.liga.glif new file mode 100644 index 00000000..d47b3b0b --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/period_question.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/plus_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/plus_greater.liga.glif new file mode 100644 index 00000000..2edbfd4f --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/plus_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/plus_plus.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/plus_plus.liga.glif new file mode 100644 index 00000000..34e5f721 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/plus_plus.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/plus_plus_plus.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/plus_plus_plus.liga.glif new file mode 100644 index 00000000..f675d9f8 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/plus_plus_plus.liga.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question_colon.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question_colon.liga.glif new file mode 100644 index 00000000..f9a0d47a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question_colon.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question_equal.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question_equal.liga.glif new file mode 100644 index 00000000..993f1fcb --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question_equal.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question_period.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question_period.liga.glif new file mode 100644 index 00000000..52166e91 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question_period.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question_question.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question_question.liga.glif new file mode 100644 index 00000000..eadc97f4 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/question_question.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif new file mode 100644 index 00000000..a37f48a4 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/righteighthblock.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/righteighthblock.glif new file mode 100644 index 00000000..9d954a40 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/righteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/righthalfblock.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/righthalfblock.glif new file mode 100644 index 00000000..7d4f8cef --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/righthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif new file mode 100644 index 00000000..096861bd --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif new file mode 100644 index 00000000..4dd3b32e --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif new file mode 100644 index 00000000..024e2eab --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif new file mode 100644 index 00000000..b0c45355 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftupheavybxd.glif new file mode 100644 index 00000000..97e94f0e --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif new file mode 100644 index 00000000..7589ec83 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif new file mode 100644 index 00000000..22a54e57 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/s.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/s.glif index 2677d940..f51d671c 100644 --- a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/s.glif +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/s.glif @@ -2,7 +2,6 @@ - diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/semicolon_semicolon.liga.glif new file mode 100644 index 00000000..0c88b0cd --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/semicolon_semicolon.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_asterisk.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_asterisk.liga.glif new file mode 100644 index 00000000..0fa63565 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_asterisk.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_backslash.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_backslash.liga.glif new file mode 100644 index 00000000..b915420a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_backslash.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_equal.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_equal.liga.glif new file mode 100644 index 00000000..b0329236 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_equal.start.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_equal.start.glif new file mode 100644 index 00000000..485973c6 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_equal.start.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_greater.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_greater.liga.glif new file mode 100644 index 00000000..a9b0055b --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_greater.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash.liga.glif new file mode 100644 index 00000000..f3f2b730 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_equal.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_equal.liga.glif new file mode 100644 index 00000000..68b15904 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_equal.start.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_equal.start.glif new file mode 100644 index 00000000..fcf53e07 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_equal.start.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_slash.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_slash.liga.glif new file mode 100644 index 00000000..2da5cfa3 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/slash_slash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.end.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.end.glif new file mode 100644 index 00000000..0c4354b3 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.middle.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.middle.glif new file mode 100644 index 00000000..3613889f --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.start.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.start.glif new file mode 100644 index 00000000..b08520a3 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore_bar_underscore.m.glif new file mode 100644 index 00000000..2460954e --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/underscore_bar_underscore.m.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2610.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2610.glif new file mode 100644 index 00000000..0d53f5cf --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2610.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2611.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2611.glif new file mode 100644 index 00000000..f0be0911 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2611.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2612.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2612.glif new file mode 100644 index 00000000..c84d0a49 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2612.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2713.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2713.glif new file mode 100644 index 00000000..1fa7a21c --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uni2713.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_0.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_0.glif new file mode 100644 index 00000000..4af0d063 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_0.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_1.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_1.glif new file mode 100644 index 00000000..65bafead --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_1.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_2.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_2.glif new file mode 100644 index 00000000..33d2566d --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0A_2.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_0.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_0.glif new file mode 100644 index 00000000..c611eafd --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_0.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_1.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_1.glif new file mode 100644 index 00000000..ebf497c9 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_1.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_2.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_2.glif new file mode 100644 index 00000000..babfd8a3 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_2.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_3.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_3.glif new file mode 100644 index 00000000..69365280 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uniE_0B_3.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/updblhorzsngbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/updblhorzsngbxd.glif new file mode 100644 index 00000000..95aed0e2 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/updblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/updblleftsngbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/updblleftsngbxd.glif new file mode 100644 index 00000000..70d11705 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/updblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/updblrightsngbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/updblrightsngbxd.glif new file mode 100644 index 00000000..db9ec4f9 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/updblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upeighthblock.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upeighthblock.glif new file mode 100644 index 00000000..87701940 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upeighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uphalfblock.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uphalfblock.glif new file mode 100644 index 00000000..018ed615 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uphalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif new file mode 100644 index 00000000..93de0c5b --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyhorzlightbxd.glif new file mode 100644 index 00000000..6da525a6 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif new file mode 100644 index 00000000..95b1d58d --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyleftlightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyleftlightbxd.glif new file mode 100644 index 00000000..27c8767e --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif new file mode 100644 index 00000000..98099b7e --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyrightlightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyrightlightbxd.glif new file mode 100644 index 00000000..e96a85a4 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif new file mode 100644 index 00000000..91309b79 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftdnrightquadrant.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftdnrightquadrant.glif new file mode 100644 index 00000000..9bb17821 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftdnrightquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftquadrant.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftquadrant.glif new file mode 100644 index 00000000..ef21c49d --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif new file mode 100644 index 00000000..0d5294c6 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif new file mode 100644 index 00000000..56cf6e14 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif new file mode 100644 index 00000000..d6c1c942 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplighthorzheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplighthorzheavybxd.glif new file mode 100644 index 00000000..9c329a81 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightleftdnheavybxd.glif new file mode 100644 index 00000000..e5537fde --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightleftheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightleftheavybxd.glif new file mode 100644 index 00000000..41ff15db --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightrightdnheavybxd.glif new file mode 100644 index 00000000..f0ae3643 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightrightheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightrightheavybxd.glif new file mode 100644 index 00000000..fff139a2 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uplightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif new file mode 100644 index 00000000..df5a022e --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uprightdnleftquadrant.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uprightdnleftquadrant.glif new file mode 100644 index 00000000..93cbe757 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uprightdnleftquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uprightquadrant.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uprightquadrant.glif new file mode 100644 index 00000000..de8b454f --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/uprightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upsnghorzdblbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upsnghorzdblbxd.glif new file mode 100644 index 00000000..fb977608 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upsngleftdblbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upsngleftdblbxd.glif new file mode 100644 index 00000000..644fe45c --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upsngrightdblbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upsngrightdblbxd.glif new file mode 100644 index 00000000..8a0fb12c --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/upsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblhorzsngbxd.glif new file mode 100644 index 00000000..34393559 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblhorzsngbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblleftsngbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblleftsngbxd.glif new file mode 100644 index 00000000..19880cd3 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblleftsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblrightsngbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblrightsngbxd.glif new file mode 100644 index 00000000..52c05045 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertdblrightsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif new file mode 100644 index 00000000..f506645c --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyleftlightbxd.glif new file mode 100644 index 00000000..82388e1c --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyleftlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyrightlightbxd.glif new file mode 100644 index 00000000..59c0068d --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertheavyrightlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertlighthorzheavybxd.glif new file mode 100644 index 00000000..86c41999 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertlighthorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertlightleftheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertlightleftheavybxd.glif new file mode 100644 index 00000000..244971f0 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertlightleftheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertlightrightheavybxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertlightrightheavybxd.glif new file mode 100644 index 00000000..bf25c352 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertlightrightheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertsnghorzdblbxd.glif new file mode 100644 index 00000000..376348b0 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertsnghorzdblbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertsngleftdblbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertsngleftdblbxd.glif new file mode 100644 index 00000000..5d079ace --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertsngleftdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertsngrightdblbxd.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertsngrightdblbxd.glif new file mode 100644 index 00000000..2fd1a11a --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/vertsngrightdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/w_w_w.liga.glif b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/w_w_w.liga.glif new file mode 100644 index 00000000..046e3d02 --- /dev/null +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/glyphs/w_w_w.liga.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Bold-mstr.ufo/lib.plist b/sources/masters/IntelOneMono-Bold-mstr.ufo/lib.plist index 4de37c00..77f5d031 100644 --- a/sources/masters/IntelOneMono-Bold-mstr.ufo/lib.plist +++ b/sources/masters/IntelOneMono-Bold-mstr.ufo/lib.plist @@ -2,710 +2,6 @@ - com.defcon.sortDescriptor - - - ascending - - .notdef - A - B - C - D - E - F - G - H - I - J - K - L - M - N - O - P - Q - Q.bar - R - S - T - U - V - W - X - Y - Z - a - b - c - d - e - f - g - h - i - j - k - l - m - n - o - p - q - r - s - t - u - v - w - x - y - z - period - comma - colon - semicolon - question - exclam - questiondown - exclamdown - ellipsis - twodotleader - quotedblleft - quotedblright - quotedblbase - quoteleft - quoteright - quotesinglbase - guillemetleft - guillemetright - guilsinglleft - guilsinglright - parenleft - parenright - bracketleft - bracketright - braceleft - braceright - slash - backslash - bar - hyphen - endash - emdash - hyphen.calt - periodcentered - bullet - underscore - ampersand - at - published - copyright - registered - servicemark - trademark - asterisk - dagger - daggerdbl - section - paragraph - zero - one - two - three - four - five - six - seven - eight - nine - colon.fig - plus - divide - minus - equal - notequal - asciitilde - approxequal - multiply - less - greater - lessequal - greaterequal - plusminus - asciicircum - mu - numbersign - percent - quotedbl - quotesingle - ordfeminine - ordmasculine - degree - dollar - dollar.bar - sterling - yen - Euro - naira - naira.bar - peso - peso.bar - uni20BA - uni20BD - uni20B9 - bahtthai - bahtthai.bar - won - won.bar - cent - cent.bar - dong - onehalf - onethird - twothirds - onequarter - threequarters - onefifth - twofifths - threefifths - fourfifths - onesixth - fivesixths - oneeighth - threeeighths - fiveeighths - seveneighths - zero.sup - one.sup - two.sup - three.sup - four.sup - five.sup - six.sup - seven.sup - eight.sup - nine.sup - zero.inf - one.inf - two.inf - three.inf - four.inf - five.inf - six.inf - seven.inf - eight.inf - nine.inf - primemod - dblprimemod - commaturnedmod - apostrophemod - ringhalfleft - ringhalfright - verticallinemod - verticallinelowmod - acute - hungarumlaut - grave - circumflex - caron - breve - tilde - macron - dieresis - dotaccent - ring - uniA788 - macronlowmod - cedilla - ogonek - Aacute - Agrave - Acircumflex - Acircumflexdotbelow - Acircumflexacute - Acircumflexgrave - Acircumflexhookabove - Acircumflextilde - Acaron - Abreve - Abrevedotbelow - Abreveacute - Abrevegrave - Abrevehookabove - Abrevetilde - Atilde - Amacron - Adieresis - Adotaccent - Aring - Ahookabove - Adotbelow - Aogonek - AE - Blinebelow - Cacute - Ccircumflex - Ccaron - Cdotaccent - Ccedilla - Dcaron - Dcircumflexbelow - Dlinebelow - Ddotbelow - Dcroat - Eacute - Egrave - Ecircumflex - Ecircumflexdotbelow - Ecircumflexacute - Ecircumflexgrave - Ecircumflexhookabove - Ecircumflextilde - Ecaron - Ebreve - Etilde - Emacron - Edieresis - Edotaccent - Ehookabove - Edotbelow - Eogonek - Gcircumflex - Gcaron - Gbreve - Gmacron - Gdotaccent - Gcommaaccent - Hcircumflex - Hbrevebelow - Hdotbelow - Hcedilla - Hbar - Iacute - Igrave - Icircumflex - Icaron - Ibreve - Itilde - Imacron - Idieresis - Idotaccent - Ihookabove - Idotbelow - Iogonek - Jcircumflex - Klinebelow - Kcommaaccent - Kdotbelow - Lacute - Lcaron - Lcommaaccent - Lcircumflexbelow - Llinebelow - Lmacrondotbelow - Ldotbelow - L.dot - Lslash - Macute - Mdotaccent - Mdotbelow - Nacute - Ngrave - Ncaron - Ntilde - Ndotaccent - Ncircumflexbelow - Ncommaaccent - Ndotbelow - Nlinebelow - Eng - Oacute - Ohungarumlaut - Ograve - Ocircumflex - Ocircumflexdotbelow - Ocircumflexacute - Ocircumflexgrave - Ocircumflexhookabove - Ocircumflextilde - Ocaron - Obreve - Otilde - Omacron - Odieresis - Odotaccent - Ohookabove - Odotbelow - Oogonek - Oslash - Oslash.bar - OE - Ohorn - Ohornacute - Ohorngrave - Ohorntilde - Ohornhookabove - Ohorndotbelow - Racute - Rcaron - Rdotaccent - Rmacrondotbelow - Rcommaaccent - Rdotbelow - Rlinebelow - Sacute - Scircumflex - Scaron - Scommaaccent - Sdotbelow - Scedilla - uni1E9E - Tcaron - Tcircumflexbelow - Tcommaaccent - Tdotbelow - Tlinebelow - Tcedilla - Tbar - Uacute - Uhungarumlaut - Ugrave - Ucircumflex - Ucaron - Ubreve - Utilde - Umacron - Udieresis - Udieresisacute - Udieresisgrave - Udieresiscaron - Udieresismacron - Uring - Uhookabove - Udotbelow - Uogonek - Uhorn - Uhornacute - Uhorngrave - Uhorntilde - Uhornhookabove - Uhorndotbelow - Vdotbelow - Wacute - Wgrave - Wcircumflex - Wdieresis - Xdieresis - Yacute - Ygrave - Ycircumflex - Ytilde - Ymacron - Ydieresis - Ydotaccent - Yhookabove - Ydotbelow - Zacute - Zcircumflex - Zcaron - Zdotaccent - Zdotbelow - Zlinebelow - Eth - Thorn - Schwa - aacute - agrave - acircumflex - acircumflexdotbelow - acircumflexacute - acircumflexgrave - acircumflexhookabove - acircumflextilde - acaron - abreve - abrevedotbelow - abreveacute - abrevegrave - abrevehookabove - abrevetilde - atilde - amacron - adieresis - adotaccent - aring - ahookabove - adotbelow - aogonek - ae - blinebelow - cacute - ccircumflex - ccaron - cdotaccent - ccedilla - dcaron - dcircumflexbelow - dlinebelow - ddotbelow - dcroat - eacute - egrave - ecircumflex - ecircumflexdotbelow - ecircumflexacute - ecircumflexgrave - ecircumflexhookabove - ecircumflextilde - ecaron - ebreve - etilde - emacron - edieresis - edotaccent - ehookabove - edotbelow - eogonek - gcircumflex - gcaron - gbreve - gmacron - gdotaccent - gcommaaccent - hcircumflex - hbrevebelow - hlinebelow - hdotbelow - hcedilla - hbar - dotlessi - iacute - igrave - icircumflex - icaron - ibreve - itilde - imacron - idieresis - idotaccent - ihookabove - idotbelow - iogonek - dotlessj - jcircumflex - jcaron - klinebelow - kcommaaccent - kdotbelow - lacute - lcaron - lcommaaccent - lcircumflexbelow - llinebelow - lmacrondotbelow - ldotbelow - l.dot - lslash - macute - mdotaccent - mdotbelow - nacute - ngrave - ncaron - ntilde - ndotaccent - ncircumflexbelow - ncommaaccent - ndotbelow - nlinebelow - eng - oacute - ohungarumlaut - ograve - ocircumflex - ocircumflexdotbelow - ocircumflexacute - ocircumflexgrave - ocircumflexhookabove - ocircumflextilde - ocaron - obreve - otilde - omacron - odieresis - odotaccent - ohookabove - odotbelow - oogonek - oslash - oslash.bar - oe - ohorn - ohornacute - ohorngrave - ohorntilde - ohornhookabove - ohorndotbelow - racute - rcaron - rdotaccent - rmacrondotbelow - rcommaaccent - rdotbelow - rlinebelow - sacute - scircumflex - scaron - scommaaccent - sdotbelow - scedilla - germandbls - tcaron - tcircumflexbelow - tcommaaccent - tdotbelow - tlinebelow - tcedilla - tbar - uacute - uhungarumlaut - ugrave - ucircumflex - ucaron - ubreve - utilde - umacron - udieresis - udieresisacute - udieresisgrave - udieresiscaron - udieresismacron - uring - uhookabove - udotbelow - uogonek - uhorn - uhornacute - uhorngrave - uhorntilde - uhornhookabove - uhorndotbelow - vdotbelow - wacute - wgrave - wcircumflex - wdieresis - xdieresis - yacute - ygrave - ycircumflex - ytilde - ymacron - ydieresis - ydotaccent - yhookabove - ydotbelow - zacute - zcircumflex - zcaron - zdotaccent - zdotbelow - zlinebelow - eth - thorn - schwa - space - uni00A0 - zero.num - one.num - two.num - three.num - four.num - five.num - six.num - seven.num - eight.num - nine.num - fraction - fracbar - zero.den - one.den - two.den - three.den - four.den - five.den - six.den - seven.den - eight.den - nine.den - uni2011 - horizontalbar - middotcat - middotcat.cap - acutecmb - hungarumlautcmb - gravecmb - commaaboverightcmb - circumflexcmb - caroncmb - brevecmb - tildecmb - macroncmb - dieresiscmb - dotaccentcmb - ringcmb - commaturnedabovecmb - hookcmb - circumflexbelowcmb - brevebelowcmb - macronbelowcmb - dieresisbelowcmb - dotbelowcmb - uni0326 - cedillacmb - ogonekcmb - dieresisacute - dieresisgrave - dieresiscaron - dieresismacron - breveacute - brevegrave - brevehook - brevetilde - circumflexacute - circumflexgrave - circumflexhook - circumflextilde - acutecmb.cap - hungarumlautcmb.cap - gravecmb.cap - circumflexcmb.cap - caroncmb.cap - brevecmb.cap - tildecmb.cap - macroncmb.cap - dieresiscmb.cap - dotaccentcmb.cap - ringcmb.cap - hookcmb.cap - dieresisacute.cap - dieresisgrave.cap - dieresiscaron.cap - dieresismacron.cap - breveacute.cap - brevegrave.cap - brevehook.cap - brevetilde.cap - circumflexacute.cap - circumflexgrave.cap - circumflexhook.cap - circumflextilde.cap - - type - glyphList - - com.typemytype.robofont.compileSettings.autohint com.typemytype.robofont.compileSettings.checkOutlines @@ -716,6 +12,8 @@ 1 com.typemytype.robofont.compileSettings.generateFormat 0 + com.typemytype.robofont.compileSettings.layerName + foreground com.typemytype.robofont.compileSettings.releaseMode 1 com.typemytype.robofont.italicSlantOffset @@ -1419,6 +717,372 @@ circumflexgrave.cap circumflexhook.cap circumflextilde.cap + lighthorzbxd + heavyhorzbxd + lightvertbxd + heavyvertbxd + lighttrpldashhorzbxd + heavytrpldashhorzbxd + lighttrpldashvertbxd + heavytrpldashvertbxd + lightquaddashhorzbxd + heavyquaddashhorzbxd + lightquaddashvertbxd + heavyquaddashvertbxd + lightdnrightbxd + dnlightrightheavybxd + dnheavyrightlightbxd + heavydnrightbxd + lightdnleftbxd + dnlightleftheavybxd + dnheavyleftlightbxd + heavydnleftbxd + lightuprightbxd + uplightrightheavybxd + upheavyrightlightbxd + heavyuprightbxd + lightupleftbxd + uplightleftheavybxd + upheavyleftlightbxd + heavyupleftbxd + lightvertrightbxd + vertlightrightheavybxd + upheavyrightdnlightbxd + dnheavyrightuplightbxd + vertheavyrightlightbxd + dnlightrightupheavybxd + uplightrightdnheavybxd + heavyvertrightbxd + lightvertleftbxd + vertlightleftheavybxd + upheavyleftdnlightbxd + dnheavyleftuplightbxd + vertheavyleftlightbxd + dnlightleftupheavybxd + uplightleftdnheavybxd + heavyvertleftbxd + lightdnhorzbxd + leftheavyrightdnlightbxd + rightheavyleftdnlightbxd + dnlighthorzheavybxd + dnheavyhorzlightbxd + rightlightleftdnheavybxd + leftlightrightdnheavybxd + heavydnhorzbxd + lightuphorzbxd + leftheavyrightuplightbxd + rightheavyleftuplightbxd + uplighthorzheavybxd + upheavyhorzlightbxd + rightlightleftupheavybxd + leftlightrightupheavybxd + heavyuphorzbxd + lightverthorzbxd + leftheavyrightvertlightbxd + rightheavyleftvertlightbxd + vertlighthorzheavybxd + upheavydnhorzlightbxd + dnheavyuphorzlightbxd + vertheavyhorzlightbxd + leftupheavyrightdnlightbxd + rightupheavyleftdnlightbxd + leftdnheavyrightuplightbxd + rightdnheavyleftuplightbxd + dnlightuphorzheavybxd + uplightdnhorzheavybxd + rightlightleftvertheavybxd + leftlightrightvertheavybxd + heavyverthorzbxd + lightdbldashhorzbxd + heavydbldashhorzbxd + lightdbldashvertbxd + heavydbldashvertbxd + dblhorzbxd + dblvertbxd + dnsngrightdblbxd + dndblrightsngbxd + dbldnrightbxd + dnsngleftdblbxd + dndblleftsngbxd + dbldnleftbxd + upsngrightdblbxd + updblrightsngbxd + dbluprightbxd + upsngleftdblbxd + updblleftsngbxd + dblupleftbxd + vertsngrightdblbxd + vertdblrightsngbxd + dblvertrightbxd + vertsngleftdblbxd + vertdblleftsngbxd + dblvertleftbxd + dnsnghorzdblbxd + dndblhorzsngbxd + dbldnhorzbxd + upsnghorzdblbxd + updblhorzsngbxd + dbluphorzbxd + vertsnghorzdblbxd + vertdblhorzsngbxd + dblverthorzbxd + lightarcdnrightbxd + lightarcdnleftbxd + lightarcupleftbxd + lightarcuprightbxd + lightdiaguprightdnleftbxd + lightdiagupleftdnrightbxd + lightdiagcrossbxd + lightleftbxd + lightupbxd + lightrightbxd + lightdnbxd + heavyleftbxd + heavyupbxd + heavyrightbxd + heavydnbxd + lightleftheavyrightbxd + lightupheavydnbxd + heavyleftlightrightbxd + heavyuplightdnbxd + uphalfblock + dneighthblock + dnquarterblock + dnthreeeighthsblock + dnhalfblock + dnfiveeighthsblock + dnthreequartersblock + dnseveneighthsblock + fullblock + leftseveneighthsblock + leftthreequartersblock + leftfiveeighthsblock + lefthalfblock + leftthreeeighthsblock + leftquarterblock + lefteighthblock + righthalfblock + lightshade + mediumshade + darkshade + upeighthblock + righteighthblock + dnleftquadrant + dnrightquadrant + upleftquadrant + upleftdnleftdnrightquadrant + upleftdnrightquadrant + upleftuprightdnleftquadrant + upleftuprightdnrightquadrant + uprightquadrant + uprightdnleftquadrant + uprightdnleftdnrightquadrant + ligspacer + period_equal.liga + period_period_equal.liga + period_hyphen.liga + colon_equal.liga + equal_colon_equal.middle + equal_exclam_equal.middle + equal_equal.liga + exclam_equal.liga + equal_equal_equal.liga + exclam_equal_equal.liga + less_hyphen_less.liga + less_less_hyphen.liga + less_hyphen.liga + less_hyphen_greater.liga + hyphen_greater.liga + hyphen_greater_greater.liga + greater_hyphen_greater.liga + less_equal_less.liga + less_less_equal.liga + less_equal_greater.liga + equal_greater.liga + less_equal.liga + equal_greater_greater.liga + greater_equal_greater.liga + greater_equal.liga + greater_greater_equal.liga + greater_greater_hyphen.liga + greater_hyphen.liga + less_asciitilde_greater.liga + hyphen_less.liga + hyphen_less_less.liga + equal_less.liga + equal_less_less.liga + less_asciitilde_asciitilde.liga + less_asciitilde.liga + asciitilde_asciitilde.liga + asciitilde_greater.liga + asciitilde_asciitilde_greater + slash_equal.liga + hyphen_bar.liga + bar_hyphen.liga + bar_equal.liga + hyphen_bar_bar.liga + bar_bar_hyphen.liga + equal_bar_bar.liga + bar_bar_equal.liga + equal_bar.liga + equal.start + equal.middle + equal.end + hyphen.start + hyphen.middle + hyphen.end + underscore.start + underscore.middle + underscore.end + numbersign.start + numbersign.middle + numbersign.end + less_less_less.liga + less_less.liga + less_equal + less_greater.liga + greater_equal + greater_greater.liga + greater_greater_greater.liga + braceleft_bar.liga + bracketleft_bar.liga + less_colon.liga + colon_less.liga + uni2713 + greater_colon.liga + colon_greater.liga + bar_braceright.liga + bar_bracketright.liga + less_bar_bar_bar.liga + less_bar_bar.liga + less_bar.liga + less_bar_greater.liga + bar_greater.liga + bar_bar_greater.liga + bar_bar_bar_greater.liga + less_dollar.liga + less_dollar_greater.liga + dollar_greater.liga + less_plus.liga + less_plus_greater.liga + plus_greater.liga + less_asterisk.liga + less_asterisk_greater.liga + asterisk_greater.liga + slash_asterisk.liga + asterisk_slash.liga + slash_slash_slash.liga + slash_slash.liga + less_slash.liga + less_exclam_hyphen_hyphen.liga + less_slash_greater.liga + slash_greater.liga + semicolon_semicolon.liga + colon_colon.liga + colon_colon_colon.liga + period_period.liga + period_period_period.liga + period_period_less.liga + exclam_exclam.liga + question_question.liga + percent_percent.liga + ampersand_ampersand.liga + bar_bar.liga + question_period.liga + question_colon.liga + plus_plus.liga + plus_plus_plus.liga + hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga + asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga + equal_asciitilde.liga + exclam_asciitilde.liga + asciitilde_hyphen.liga + w_w_w.liga + hyphen_asciitilde.liga + asciitilde_at.liga + asciicircum_equal.liga + question_equal.liga + numbersign_exclam.liga + numbersign_equal.liga + numbersign_colon.liga + numbersign_braceleft.liga + numbersign_bracketleft.liga + bracketright_numbersign.liga + numbersign_parenleft.liga + numbersign_question.liga + numbersign_underscore.liga + numbersign_underscore_parenleft + backslash_slash.liga + bar_bar_bar.liga + colon_colon_equal.liga + exclam_exclam_period.liga + period_question.liga + slash_backslash.liga + uniE0A0 + uniE0A1 + uniE0A2 + uniE0B0 + uniE0B1 + uniE0B2 + uniE0B3 + uni2610 + uni2611 + uni2612 + less_dollar.ligabar + less_dollar_greater.ligabar + dollar_greater.ligabar + underscore_bar_underscore.m + hyphen_bar_hyphen.middle + equal_bar_equal.middle + hyphen_greater_hyphen.middle + hyphen_greater_greater_hyphen.m + equal_slash_slash_equal.middle + equal_slash_equal.middle + hyphen_bar_bar_hyphen.middle + equal_bar_bar_equal.middle + hyphen_less_hyphen.middle + hyphen_less_less_hyphen.middle + equal_greater_equal.middle + equal_less_equal.middle + equal_greater_greater_equal.m + equal_less_less_equal.middle + less_hyphen.start + greater_hyphen.start + bar_hyphen.start + less_equal.start + greater_equal.start + bar_equal.start + slash_equal.start + less_less_hyphen.start + greater_greater_hyphen.start + bar_bar_hyphen.start + less_less_equal.start + greater_greater_equal.start + bar_bar_equal.start + hyphen_less.end + hyphen_greater.end + hyphen_bar.end + equal_less.end + equal_greater.end + equal_bar.end + hyphen_less_less.end + hyphen_greater_greater.end + hyphen_bar_bar.end + equal_less_less.end + equal_greater_greater.end + equal_bar_bar.end + slash_slash_equal.liga + slash_slash_equal.start + equal_slash.liga + equal_slash.end + equal_slash_slash.liga + equal_slash_slash.end + arrowheadleft + arrowheadright + arrowheadleftopen + arrowheadrightopen public.postscriptNames diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/features.fea b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/features.fea index 442214bb..5a07e127 100644 --- a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/features.fea +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/features.fea @@ -1,271 +1,3 @@ -# ---------------------------- -# INTEL ONE MONO OPENTYPE CODE -# ---------------------------- -# ---------------- -# Language Systems -# ---------------- - -languagesystem DFLT dflt; -languagesystem latn dflt; -languagesystem latn TRK; -languagesystem latn AZE; -languagesystem latn CRT; -languagesystem latn CAT; - - -# ------- -# Classes -# ------- - -# Base Letters -@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; -@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; - -# Figures -@fig = [zero one two three four five six seven eight nine]; -@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; -@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; -@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; -@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; - -# Marks Above -@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; -@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; - -# Marks Below -@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; - - -# --------------- -# Localized Forms -# --------------- - -feature locl { - script latn; - language TRK; - lookup iTurkish { - sub i by idotaccent; - } iTurkish; - language AZE; - lookup iTurkish; - language CRT; - lookup iTurkish; - language CAT; - sub l periodcentered' l by middotcat; - sub L periodcentered' L by middotcat.cap; - # try fusing them - sub L middotcat.cap by L.dot; - sub L middotcat by L.dot; - sub l middotcat by l.dot; -} locl; - - -# --------------------------------- -# Glyph Composition / Decomposition -# --------------------------------- - -feature ccmp { - - # Decompose unicode lowercase characters whose uppercase counterparts have no unicode. - lookup Decomp { - sub hlinebelow by h macronlowmod; - sub jcaron by j caron; - } Decomp; - - # Replace double above accents by combined drawings. - lookup DblMarks { - sub dieresiscmb acutecmb by dieresisacute; - sub dieresiscmb gravecmb by dieresisgrave; - sub dieresiscmb caroncmb by dieresiscaron; - sub dieresiscmb macroncmb by dieresismacron; - sub brevecmb acutecmb by breveacute; - sub brevecmb gravecmb by brevegrave; - sub brevecmb hookcmb by brevehook; - sub brevecmb tildecmb by brevetilde; - sub circumflexcmb acutecmb by circumflexacute; - sub circumflexcmb gravecmb by circumflexgrave; - sub circumflexcmb hookcmb by circumflexhook; - sub circumflexcmb tildecmb by circumflextilde; - # capital forms - sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; - sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; - sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; - sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; - sub brevecmb.cap acutecmb.cap by breveacute.cap; - sub brevecmb.cap gravecmb.cap by brevegrave.cap; - sub brevecmb.cap hookcmb.cap by brevehook.cap; - sub brevecmb.cap tildecmb.cap by brevetilde.cap; - sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; - sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; - sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; - sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; - } DblMarks; - - # Replace combining marks that follow a uppercase letter by their uppercase form - lookup CapitalMarks { - sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; - sub [@ltrUC] [@lcMarks]' by [@ucMarks]; - } CapitalMarks; - - # Replace letters with dotless counterparts when followed by a combining mark - lookup Dotless { - sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; - sub [i j]' [@lcMarks] by [dotlessi dotlessj]; - } Dotless; - - # Replace e ogonek with pre-drawn eogonek - lookup eogonek { - sub e ogonekcmb by eogonek; - } eogonek; - -} ccmp; - - -# ---------- -# Numerators -# ---------- - -feature numr { - sub @fig by @figNum; -} numr; - -# ------------ -# Denominators -# ------------ - -feature dnom { - sub @fig by @figDen; -} dnom; - -# ----------- -# Superscript -# ----------- - -feature sups { - sub @fig by @figSup; -} sups; - -# --------------------- -# Subscript & Inferiors -# --------------------- - -feature subs { - sub @fig by @figInf; -} subs; - -feature sinf { - sub @fig by @figInf; -} sinf; - - -# --------------------- -# Contextual Alternates -# --------------------- - -feature calt { - # shifts colon to align with math symbols when used together - - sub colon' [plus equal greater less hyphen] by colon.fig; - sub [plus equal less greater hyphen] colon' by colon.fig; - - sub colon' [colon colon.fig] by colon.fig; - sub colon.fig colon' by colon.fig; - -} calt; - - -# -------------- -# Stylistic Sets -# -------------- - -feature ss11 { - featureNames { - name "Raised Colon (Figures Only)"; # Windows English - name 1 0 0 "Raised Colon (Figures Only)"; # Mac English - }; - lookup FigureColonContextual { - sub @fig colon' @fig by colon.fig; - } FigureColonContextual; -} ss11; - -feature ss12 { - featureNames { - name "Raised Colon (Global)"; # Windows English - name 1 0 0 "Raised Colon (Global)"; # Mac English - }; - lookup FigureColon { - sub colon by colon.fig; - } FigureColon; -} ss12; - - -# -------------------- -# Stylistic Alternates -# -------------------- - -feature salt { - lookup FigureColon; # SS12 -} salt; - - -# -------------- -# All Alternates -# -------------- - -feature aalt { - sub germandbls from [germandbls uni1E9E]; - sub uni1E9E from [uni1E9E germandbls]; - sub colon from [colon colon.fig]; - sub colon.fig from [colon.fig colon]; - sub eight from [eight eight.den eight.sup eight.num eight.inf]; - sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; - sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; - sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; - sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; - sub five from [five five.inf five.num five.den five.sup]; - sub five.sup from [five.sup five five.inf five.num five.den]; - sub five.den from [five.den five.sup five five.inf five.num]; - sub five.num from [five.num five.den five.sup five five.inf]; - sub five.inf from [five.inf five.num five.den five.sup five]; - sub four from [four four.sup four.num four.den four.inf]; - sub four.inf from [four.inf four four.sup four.num four.den]; - sub four.den from [four.den four.inf four four.sup four.num]; - sub four.num from [four.num four.den four.inf four four.sup]; - sub four.sup from [four.sup four.num four.den four.inf four]; - sub nine from [nine nine.den nine.inf nine.num nine.sup]; - sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; - sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; - sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; - sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; - sub one from [one one.den one.num one.inf one.sup]; - sub one.sup from [one.sup one one.den one.num one.inf]; - sub one.inf from [one.inf one.sup one one.den one.num]; - sub one.num from [one.num one.inf one.sup one one.den]; - sub one.den from [one.den one.num one.inf one.sup one]; - sub seven from [seven seven.inf seven.num seven.sup seven.den]; - sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; - sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; - sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; - sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; - sub six from [six six.num six.sup six.den six.inf]; - sub six.inf from [six.inf six six.num six.sup six.den]; - sub six.den from [six.den six.inf six six.num six.sup]; - sub six.sup from [six.sup six.den six.inf six six.num]; - sub six.num from [six.num six.sup six.den six.inf six]; - sub three from [three three.inf three.den three.num three.sup]; - sub three.sup from [three.sup three three.inf three.den three.num]; - sub three.num from [three.num three.sup three three.inf three.den]; - sub three.den from [three.den three.num three.sup three three.inf]; - sub three.inf from [three.inf three.den three.num three.sup three]; - sub two from [two two.inf two.sup two.num two.den]; - sub two.den from [two.den two two.inf two.sup two.num]; - sub two.num from [two.num two.den two two.inf two.sup]; - sub two.sup from [two.sup two.num two.den two two.inf]; - sub two.inf from [two.inf two.sup two.num two.den two]; - sub zero from [zero zero.sup zero.num zero.den zero.inf]; - sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; - sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; - sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; - sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; -} aalt; +include(../features/shared.fea); +include(../features/aalt.fea); diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/fontinfo.plist b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/fontinfo.plist index 5c8171d8..6f469f43 100644 --- a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/fontinfo.plist +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/fontinfo.plist @@ -7,7 +7,7 @@ capHeight 655 copyright - Copyright 2023 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) descender -260 familyName @@ -53,7 +53,7 @@ platformID 1 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -65,7 +65,7 @@ platformID 3 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -382,7 +382,7 @@ versionMajor 1 versionMinor - 3 + 4 xHeight 477 diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_.dot.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_.dot.glif index a51781fe..65c8783e 100644 --- a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_.dot.glif +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/L_.dot.glif @@ -5,7 +5,6 @@ - diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acutecmb.cap.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acutecmb.cap.glif index f20ec730..a98fe447 100644 --- a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acutecmb.cap.glif +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/acutecmb.cap.glif @@ -1,6 +1,5 @@ - diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ampersand_ampersand.liga.glif new file mode 100644 index 00000000..40ec3fd8 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ampersand_ampersand.liga.glif @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadleft.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadleft.glif new file mode 100644 index 00000000..20bd9d69 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadleft.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadleftopen.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadleftopen.glif new file mode 100644 index 00000000..fe0ea7a7 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadleftopen.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadright.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadright.glif new file mode 100644 index 00000000..adca5071 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadright.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadrightopen.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadrightopen.glif new file mode 100644 index 00000000..e9b86d1b --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/arrowheadrightopen.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciicircum_equal.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciicircum_equal.liga.glif new file mode 100644 index 00000000..7a608ae0 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciicircum_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..eb3359dc --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif new file mode 100644 index 00000000..985ab7e7 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_at.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_at.liga.glif new file mode 100644 index 00000000..b96a6019 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_at.liga.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_greater.liga.glif new file mode 100644 index 00000000..373650ef --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_greater.liga.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif new file mode 100644 index 00000000..0cef963d --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_asterisk.liga.glif new file mode 100644 index 00000000..f5b70319 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_asterisk.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif new file mode 100644 index 00000000..8f5f8b44 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_greater.liga.glif new file mode 100644 index 00000000..6eda3a80 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_slash.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_slash.liga.glif new file mode 100644 index 00000000..f55eb628 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/asterisk_slash.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/backslash_slash.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/backslash_slash.liga.glif new file mode 100644 index 00000000..c566b792 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/backslash_slash.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar.liga.glif new file mode 100644 index 00000000..0bb2a5a7 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_bar.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_bar.liga.glif new file mode 100644 index 00000000..f494b682 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_bar.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif new file mode 100644 index 00000000..d1bf8518 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_equal.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_equal.liga.glif new file mode 100644 index 00000000..d9338699 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_equal.start.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_equal.start.glif new file mode 100644 index 00000000..f3516f84 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_equal.start.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_greater.liga.glif new file mode 100644 index 00000000..f01c0eb6 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_greater.liga.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif new file mode 100644 index 00000000..6762b446 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_hyphen.start.glif new file mode 100644 index 00000000..61e698e7 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bar_hyphen.start.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_braceright.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_braceright.liga.glif new file mode 100644 index 00000000..fbccef2b --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_braceright.liga.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bracketright.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bracketright.liga.glif new file mode 100644 index 00000000..c4b8ed75 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_bracketright.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_equal.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_equal.liga.glif new file mode 100644 index 00000000..4ed9c446 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_equal.start.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_equal.start.glif new file mode 100644 index 00000000..4332eb4a --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_equal.start.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_greater.liga.glif new file mode 100644 index 00000000..dfd4a9e4 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_greater.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_hyphen.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_hyphen.liga.glif new file mode 100644 index 00000000..72322c7d --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_hyphen.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_hyphen.start.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_hyphen.start.glif new file mode 100644 index 00000000..fac8a767 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bar_hyphen.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/braceleft_bar.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/braceleft_bar.liga.glif new file mode 100644 index 00000000..bddfb7e5 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/braceleft_bar.liga.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketleft_bar.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketleft_bar.liga.glif new file mode 100644 index 00000000..2dbb58b8 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketleft_bar.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketright_numbersign.liga.glif new file mode 100644 index 00000000..4789c395 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/bracketright_numbersign.liga.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon.liga.glif new file mode 100644 index 00000000..b29b9a6f --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon_colon.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon_colon.liga.glif new file mode 100644 index 00000000..4c2addd8 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon_colon.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon_equal.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon_equal.liga.glif new file mode 100644 index 00000000..873db3ed --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_colon_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_equal.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_equal.liga.glif new file mode 100644 index 00000000..b1fceae0 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_equal.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_greater.liga.glif new file mode 100644 index 00000000..646f8af4 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_less.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_less.liga.glif new file mode 100644 index 00000000..1bac0d05 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/colon_less.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/contents.plist b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/contents.plist index 872b0f47..140ed033 100644 --- a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/contents.plist +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/contents.plist @@ -502,6 +502,8 @@ amacron.glif ampersand ampersand.glif + ampersand_ampersand.liga + ampersand_ampersand.liga.glif aogonek aogonek.glif apostrophemod @@ -510,12 +512,40 @@ approxequal.glif aring aring.glif + arrowheadleft + arrowheadleft.glif + arrowheadleftopen + arrowheadleftopen.glif + arrowheadright + arrowheadright.glif + arrowheadrightopen + arrowheadrightopen.glif asciicircum asciicircum.glif + asciicircum_equal.liga + asciicircum_equal.liga.glif asciitilde asciitilde.glif + asciitilde_asciitilde.liga + asciitilde_asciitilde.liga.glif + asciitilde_asciitilde_greater + asciitilde_asciitilde_greater.glif + asciitilde_at.liga + asciitilde_at.liga.glif + asciitilde_greater.liga + asciitilde_greater.liga.glif + asciitilde_hyphen.liga + asciitilde_hyphen.liga.glif asterisk asterisk.glif + asterisk_asterisk.liga + asterisk_asterisk.liga.glif + asterisk_asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga.glif + asterisk_greater.liga + asterisk_greater.liga.glif + asterisk_slash.liga + asterisk_slash.liga.glif at at.glif atilde @@ -524,22 +554,60 @@ b.glif backslash backslash.glif + backslash_slash.liga + backslash_slash.liga.glif bahtthai bahtthai.glif bahtthai.bar bahtthai.bar.glif bar bar.glif + bar_bar.liga + bar_bar.liga.glif + bar_bar_bar.liga + bar_bar_bar.liga.glif + bar_bar_bar_greater.liga + bar_bar_bar_greater.liga.glif + bar_bar_equal.liga + bar_bar_equal.liga.glif + bar_bar_equal.start + bar_bar_equal.start.glif + bar_bar_greater.liga + bar_bar_greater.liga.glif + bar_bar_hyphen.liga + bar_bar_hyphen.liga.glif + bar_bar_hyphen.start + bar_bar_hyphen.start.glif + bar_braceright.liga + bar_braceright.liga.glif + bar_bracketright.liga + bar_bracketright.liga.glif + bar_equal.liga + bar_equal.liga.glif + bar_equal.start + bar_equal.start.glif + bar_greater.liga + bar_greater.liga.glif + bar_hyphen.liga + bar_hyphen.liga.glif + bar_hyphen.start + bar_hyphen.start.glif blinebelow blinebelow.glif braceleft braceleft.glif + braceleft_bar.liga + braceleft_bar.liga.glif braceright braceright.glif bracketleft bracketleft.glif + bracketleft_bar.liga + bracketleft_bar.liga.glif bracketright bracketright.glif + bracketright_numbersign.liga + bracketright_numbersign.liga.glif breve breve.glif breveacute @@ -620,6 +688,18 @@ colon.glif colon.fig colon.fig.glif + colon_colon.liga + colon_colon.liga.glif + colon_colon_colon.liga + colon_colon_colon.liga.glif + colon_colon_equal.liga + colon_colon_equal.liga.glif + colon_equal.liga + colon_equal.liga.glif + colon_greater.liga + colon_greater.liga.glif + colon_less.liga + colon_less.liga.glif comma comma.glif commaaboverightcmb @@ -636,8 +716,32 @@ dagger.glif daggerdbl daggerdbl.glif + darkshade + darkshade.glif + dbldnhorzbxd + dbldnhorzbxd.glif + dbldnleftbxd + dbldnleftbxd.glif + dbldnrightbxd + dbldnrightbxd.glif + dblhorzbxd + dblhorzbxd.glif dblprimemod dblprimemod.glif + dbluphorzbxd + dbluphorzbxd.glif + dblupleftbxd + dblupleftbxd.glif + dbluprightbxd + dbluprightbxd.glif + dblvertbxd + dblvertbxd.glif + dblverthorzbxd + dblverthorzbxd.glif + dblvertleftbxd + dblvertleftbxd.glif + dblvertrightbxd + dblvertrightbxd.glif dcaron dcaron.glif dcircumflexbelow @@ -676,10 +780,68 @@ divide.glif dlinebelow dlinebelow.glif + dndblhorzsngbxd + dndblhorzsngbxd.glif + dndblleftsngbxd + dndblleftsngbxd.glif + dndblrightsngbxd + dndblrightsngbxd.glif + dneighthblock + dneighthblock.glif + dnfiveeighthsblock + dnfiveeighthsblock.glif + dnhalfblock + dnhalfblock.glif + dnheavyhorzlightbxd + dnheavyhorzlightbxd.glif + dnheavyleftlightbxd + dnheavyleftlightbxd.glif + dnheavyleftuplightbxd + dnheavyleftuplightbxd.glif + dnheavyrightlightbxd + dnheavyrightlightbxd.glif + dnheavyrightuplightbxd + dnheavyrightuplightbxd.glif + dnheavyuphorzlightbxd + dnheavyuphorzlightbxd.glif + dnleftquadrant + dnleftquadrant.glif + dnlighthorzheavybxd + dnlighthorzheavybxd.glif + dnlightleftheavybxd + dnlightleftheavybxd.glif + dnlightleftupheavybxd + dnlightleftupheavybxd.glif + dnlightrightheavybxd + dnlightrightheavybxd.glif + dnlightrightupheavybxd + dnlightrightupheavybxd.glif + dnlightuphorzheavybxd + dnlightuphorzheavybxd.glif + dnquarterblock + dnquarterblock.glif + dnrightquadrant + dnrightquadrant.glif + dnseveneighthsblock + dnseveneighthsblock.glif + dnsnghorzdblbxd + dnsnghorzdblbxd.glif + dnsngleftdblbxd + dnsngleftdblbxd.glif + dnsngrightdblbxd + dnsngrightdblbxd.glif + dnthreeeighthsblock + dnthreeeighthsblock.glif + dnthreequartersblock + dnthreequartersblock.glif dollar dollar.glif dollar.bar dollar.bar.glif + dollar_greater.liga + dollar_greater.liga.glif + dollar_greater.ligabar + dollar_greater.ligabar.glif dong dong.glif dotaccent @@ -748,12 +910,86 @@ eogonek.glif equal equal.glif + equal.end + equal.end.glif + equal.middle + equal.middle.glif + equal.start + equal.start.glif + equal_asciitilde.liga + equal_asciitilde.liga.glif + equal_bar.end + equal_bar.end.glif + equal_bar.liga + equal_bar.liga.glif + equal_bar_bar.end + equal_bar_bar.end.glif + equal_bar_bar.liga + equal_bar_bar.liga.glif + equal_bar_bar_equal.middle + equal_bar_bar_equal.middle.glif + equal_bar_equal.middle + equal_bar_equal.middle.glif + equal_colon_equal.middle + equal_colon_equal.middle.glif + equal_equal.liga + equal_equal.liga.glif + equal_equal_equal.liga + equal_equal_equal.liga.glif + equal_exclam_equal.middle + equal_exclam_equal.middle.glif + equal_greater.end + equal_greater.end.glif + equal_greater.liga + equal_greater.liga.glif + equal_greater_equal.middle + equal_greater_equal.middle.glif + equal_greater_greater.end + equal_greater_greater.end.glif + equal_greater_greater.liga + equal_greater_greater.liga.glif + equal_greater_greater_equal.m + equal_greater_greater_equal.m.glif + equal_less.end + equal_less.end.glif + equal_less.liga + equal_less.liga.glif + equal_less_equal.middle + equal_less_equal.middle.glif + equal_less_less.end + equal_less_less.end.glif + equal_less_less.liga + equal_less_less.liga.glif + equal_less_less_equal.middle + equal_less_less_equal.middle.glif + equal_slash.end + equal_slash.end.glif + equal_slash.liga + equal_slash.liga.glif + equal_slash_equal.middle + equal_slash_equal.middle.glif + equal_slash_slash.end + equal_slash_slash.end.glif + equal_slash_slash.liga + equal_slash_slash.liga.glif + equal_slash_slash_equal.middle + equal_slash_slash_equal.middle.glif eth eth.glif etilde etilde.glif exclam exclam.glif + exclam_asciitilde.liga + exclam_asciitilde.liga.glif + exclam_equal.liga + exclam_equal.liga.glif + exclam_equal_equal.liga + exclam_equal_equal.liga.glif + exclam_exclam.liga + exclam_exclam.liga.glif + exclam_exclam_period.liga + exclam_exclam_period.liga.glif exclamdown exclamdown.glif f @@ -788,6 +1024,8 @@ fracbar.glif fraction fraction.glif + fullblock + fullblock.glif g g.glif gbreve @@ -812,6 +1050,34 @@ gravecmb.cap.glif greater greater.glif + greater_colon.liga + greater_colon.liga.glif + greater_equal + greater_equal.glif + greater_equal.liga + greater_equal.liga.glif + greater_equal.start + greater_equal.start.glif + greater_equal_greater.liga + greater_equal_greater.liga.glif + greater_greater.liga + greater_greater.liga.glif + greater_greater_equal.liga + greater_greater_equal.liga.glif + greater_greater_equal.start + greater_greater_equal.start.glif + greater_greater_greater.liga + greater_greater_greater.liga.glif + greater_greater_hyphen.liga + greater_greater_hyphen.liga.glif + greater_greater_hyphen.start + greater_greater_hyphen.start.glif + greater_hyphen.liga + greater_hyphen.liga.glif + greater_hyphen.start + greater_hyphen.start.glif + greater_hyphen_greater.liga + greater_hyphen_greater.liga.glif greaterequal greaterequal.glif guillemetleft @@ -834,6 +1100,52 @@ hcircumflex.glif hdotbelow hdotbelow.glif + heavydbldashhorzbxd + heavydbldashhorzbxd.glif + heavydbldashvertbxd + heavydbldashvertbxd.glif + heavydnbxd + heavydnbxd.glif + heavydnhorzbxd + heavydnhorzbxd.glif + heavydnleftbxd + heavydnleftbxd.glif + heavydnrightbxd + heavydnrightbxd.glif + heavyhorzbxd + heavyhorzbxd.glif + heavyleftbxd + heavyleftbxd.glif + heavyleftlightrightbxd + heavyleftlightrightbxd.glif + heavyquaddashhorzbxd + heavyquaddashhorzbxd.glif + heavyquaddashvertbxd + heavyquaddashvertbxd.glif + heavyrightbxd + heavyrightbxd.glif + heavytrpldashhorzbxd + heavytrpldashhorzbxd.glif + heavytrpldashvertbxd + heavytrpldashvertbxd.glif + heavyupbxd + heavyupbxd.glif + heavyuphorzbxd + heavyuphorzbxd.glif + heavyupleftbxd + heavyupleftbxd.glif + heavyuplightdnbxd + heavyuplightdnbxd.glif + heavyuprightbxd + heavyuprightbxd.glif + heavyvertbxd + heavyvertbxd.glif + heavyverthorzbxd + heavyverthorzbxd.glif + heavyvertleftbxd + heavyvertleftbxd.glif + heavyvertrightbxd + heavyvertrightbxd.glif hlinebelow hlinebelow.glif hookcmb @@ -850,6 +1162,54 @@ hungarumlautcmb.cap.glif hyphen hyphen.glif + hyphen.end + hyphen.end.glif + hyphen.middle + hyphen.middle.glif + hyphen.start + hyphen.start.glif + hyphen_asciitilde.liga + hyphen_asciitilde.liga.glif + hyphen_bar.end + hyphen_bar.end.glif + hyphen_bar.liga + hyphen_bar.liga.glif + hyphen_bar_bar.end + hyphen_bar_bar.end.glif + hyphen_bar_bar.liga + hyphen_bar_bar.liga.glif + hyphen_bar_bar_hyphen.middle + hyphen_bar_bar_hyphen.middle.glif + hyphen_bar_hyphen.middle + hyphen_bar_hyphen.middle.glif + hyphen_greater.end + hyphen_greater.end.glif + hyphen_greater.liga + hyphen_greater.liga.glif + hyphen_greater_greater.end + hyphen_greater_greater.end.glif + hyphen_greater_greater.liga + hyphen_greater_greater.liga.glif + hyphen_greater_greater_hyphen.m + hyphen_greater_greater_hyphen.m.glif + hyphen_greater_hyphen.middle + hyphen_greater_hyphen.middle.glif + hyphen_hyphen.liga + hyphen_hyphen.liga.glif + hyphen_hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga.glif + hyphen_less.end + hyphen_less.end.glif + hyphen_less.liga + hyphen_less.liga.glif + hyphen_less_hyphen.middle + hyphen_less_hyphen.middle.glif + hyphen_less_less.end + hyphen_less_less.end.glif + hyphen_less_less.liga + hyphen_less_less.liga.glif + hyphen_less_less_hyphen.middle + hyphen_less_less_hyphen.middle.glif i i.glif iacute @@ -904,10 +1264,174 @@ lcommaaccent.glif ldotbelow ldotbelow.glif + leftdnheavyrightuplightbxd + leftdnheavyrightuplightbxd.glif + lefteighthblock + lefteighthblock.glif + leftfiveeighthsblock + leftfiveeighthsblock.glif + lefthalfblock + lefthalfblock.glif + leftheavyrightdnlightbxd + leftheavyrightdnlightbxd.glif + leftheavyrightuplightbxd + leftheavyrightuplightbxd.glif + leftheavyrightvertlightbxd + leftheavyrightvertlightbxd.glif + leftlightrightdnheavybxd + leftlightrightdnheavybxd.glif + leftlightrightupheavybxd + leftlightrightupheavybxd.glif + leftlightrightvertheavybxd + leftlightrightvertheavybxd.glif + leftquarterblock + leftquarterblock.glif + leftseveneighthsblock + leftseveneighthsblock.glif + leftthreeeighthsblock + leftthreeeighthsblock.glif + leftthreequartersblock + leftthreequartersblock.glif + leftupheavyrightdnlightbxd + leftupheavyrightdnlightbxd.glif less less.glif + less_asciitilde.liga + less_asciitilde.liga.glif + less_asciitilde_asciitilde.liga + less_asciitilde_asciitilde.liga.glif + less_asciitilde_greater.liga + less_asciitilde_greater.liga.glif + less_asterisk.liga + less_asterisk.liga.glif + less_asterisk_greater.liga + less_asterisk_greater.liga.glif + less_bar.liga + less_bar.liga.glif + less_bar_bar.liga + less_bar_bar.liga.glif + less_bar_bar_bar.liga + less_bar_bar_bar.liga.glif + less_bar_greater.liga + less_bar_greater.liga.glif + less_colon.liga + less_colon.liga.glif + less_dollar.liga + less_dollar.liga.glif + less_dollar.ligabar + less_dollar.ligabar.glif + less_dollar_greater.liga + less_dollar_greater.liga.glif + less_dollar_greater.ligabar + less_dollar_greater.ligabar.glif + less_equal + less_equal.glif + less_equal.liga + less_equal.liga.glif + less_equal.start + less_equal.start.glif + less_equal_greater.liga + less_equal_greater.liga.glif + less_equal_less.liga + less_equal_less.liga.glif + less_exclam_hyphen_hyphen.liga + less_exclam_hyphen_hyphen.liga.glif + less_greater.liga + less_greater.liga.glif + less_hyphen.liga + less_hyphen.liga.glif + less_hyphen.start + less_hyphen.start.glif + less_hyphen_greater.liga + less_hyphen_greater.liga.glif + less_hyphen_less.liga + less_hyphen_less.liga.glif + less_less.liga + less_less.liga.glif + less_less_equal.liga + less_less_equal.liga.glif + less_less_equal.start + less_less_equal.start.glif + less_less_hyphen.liga + less_less_hyphen.liga.glif + less_less_hyphen.start + less_less_hyphen.start.glif + less_less_less.liga + less_less_less.liga.glif + less_plus.liga + less_plus.liga.glif + less_plus_greater.liga + less_plus_greater.liga.glif + less_slash.liga + less_slash.liga.glif + less_slash_greater.liga + less_slash_greater.liga.glif lessequal lessequal.glif + lightarcdnleftbxd + lightarcdnleftbxd.glif + lightarcdnrightbxd + lightarcdnrightbxd.glif + lightarcupleftbxd + lightarcupleftbxd.glif + lightarcuprightbxd + lightarcuprightbxd.glif + lightdbldashhorzbxd + lightdbldashhorzbxd.glif + lightdbldashvertbxd + lightdbldashvertbxd.glif + lightdiagcrossbxd + lightdiagcrossbxd.glif + lightdiagupleftdnrightbxd + lightdiagupleftdnrightbxd.glif + lightdiaguprightdnleftbxd + lightdiaguprightdnleftbxd.glif + lightdnbxd + lightdnbxd.glif + lightdnhorzbxd + lightdnhorzbxd.glif + lightdnleftbxd + lightdnleftbxd.glif + lightdnrightbxd + lightdnrightbxd.glif + lighthorzbxd + lighthorzbxd.glif + lightleftbxd + lightleftbxd.glif + lightleftheavyrightbxd + lightleftheavyrightbxd.glif + lightquaddashhorzbxd + lightquaddashhorzbxd.glif + lightquaddashvertbxd + lightquaddashvertbxd.glif + lightrightbxd + lightrightbxd.glif + lightshade + lightshade.glif + lighttrpldashhorzbxd + lighttrpldashhorzbxd.glif + lighttrpldashvertbxd + lighttrpldashvertbxd.glif + lightupbxd + lightupbxd.glif + lightupheavydnbxd + lightupheavydnbxd.glif + lightuphorzbxd + lightuphorzbxd.glif + lightupleftbxd + lightupleftbxd.glif + lightuprightbxd + lightuprightbxd.glif + lightvertbxd + lightvertbxd.glif + lightverthorzbxd + lightverthorzbxd.glif + lightvertleftbxd + lightvertleftbxd.glif + lightvertrightbxd + lightvertrightbxd.glif + ligspacer + ligspacer.glif llinebelow llinebelow.glif lmacrondotbelow @@ -932,6 +1456,8 @@ mdotaccent.glif mdotbelow mdotbelow.glif + mediumshade + mediumshade.glif middotcat middotcat.glif middotcat.cap @@ -980,6 +1506,30 @@ ntilde.glif numbersign numbersign.glif + numbersign.end + numbersign.end.glif + numbersign.middle + numbersign.middle.glif + numbersign.start + numbersign.start.glif + numbersign_braceleft.liga + numbersign_braceleft.liga.glif + numbersign_bracketleft.liga + numbersign_bracketleft.liga.glif + numbersign_colon.liga + numbersign_colon.liga.glif + numbersign_equal.liga + numbersign_equal.liga.glif + numbersign_exclam.liga + numbersign_exclam.liga.glif + numbersign_parenleft.liga + numbersign_parenleft.liga.glif + numbersign_question.liga + numbersign_question.liga.glif + numbersign_underscore.liga + numbersign_underscore.liga.glif + numbersign_underscore_parenleft + numbersign_underscore_parenleft.glif o o.glif oacute @@ -1076,8 +1626,24 @@ parenright.glif percent percent.glif + percent_percent.liga + percent_percent.liga.glif period period.glif + period_equal.liga + period_equal.liga.glif + period_hyphen.liga + period_hyphen.liga.glif + period_period.liga + period_period.liga.glif + period_period_equal.liga + period_period_equal.liga.glif + period_period_less.liga + period_period_less.liga.glif + period_period_period.liga + period_period_period.liga.glif + period_question.liga + period_question.liga.glif periodcentered periodcentered.glif peso @@ -1086,6 +1652,12 @@ peso.bar.glif plus plus.glif + plus_greater.liga + plus_greater.liga.glif + plus_plus.liga + plus_plus.liga.glif + plus_plus_plus.liga + plus_plus_plus.liga.glif plusminus plusminus.glif primemod @@ -1096,6 +1668,14 @@ q.glif question question.glif + question_colon.liga + question_colon.liga.glif + question_equal.liga + question_equal.liga.glif + question_period.liga + question_period.liga.glif + question_question.liga + question_question.liga.glif questiondown questiondown.glif quotedbl @@ -1128,6 +1708,26 @@ rdotbelow.glif registered registered.glif + rightdnheavyleftuplightbxd + rightdnheavyleftuplightbxd.glif + righteighthblock + righteighthblock.glif + righthalfblock + righthalfblock.glif + rightheavyleftdnlightbxd + rightheavyleftdnlightbxd.glif + rightheavyleftuplightbxd + rightheavyleftuplightbxd.glif + rightheavyleftvertlightbxd + rightheavyleftvertlightbxd.glif + rightlightleftdnheavybxd + rightlightleftdnheavybxd.glif + rightlightleftupheavybxd + rightlightleftupheavybxd.glif + rightlightleftvertheavybxd + rightlightleftvertheavybxd.glif + rightupheavyleftdnlightbxd + rightupheavyleftdnlightbxd.glif ring ring.glif ringcmb @@ -1162,6 +1762,8 @@ section.glif semicolon semicolon.glif + semicolon_semicolon.liga + semicolon_semicolon.liga.glif servicemark servicemark.glif seven @@ -1188,6 +1790,24 @@ six.sup.glif slash slash.glif + slash_asterisk.liga + slash_asterisk.liga.glif + slash_backslash.liga + slash_backslash.liga.glif + slash_equal.liga + slash_equal.liga.glif + slash_equal.start + slash_equal.start.glif + slash_greater.liga + slash_greater.liga.glif + slash_slash.liga + slash_slash.liga.glif + slash_slash_equal.liga + slash_slash_equal.liga.glif + slash_slash_equal.start + slash_slash_equal.start.glif + slash_slash_slash.liga + slash_slash_slash.liga.glif space space.glif sterling @@ -1294,6 +1914,14 @@ umacron.glif underscore underscore.glif + underscore.end + underscore.end.glif + underscore.middle + underscore.middle.glif + underscore.start + underscore.start.glif + underscore_bar_underscore.m + underscore_bar_underscore.m.glif uni00A0 uni00A_0.glif uni0326 @@ -1308,10 +1936,88 @@ uni20B_A_.glif uni20BD uni20B_D_.glif + uni2610 + uni2610.glif + uni2611 + uni2611.glif + uni2612 + uni2612.glif + uni2713 + uni2713.glif uniA788 uniA_788.glif + uniE0A0 + uniE_0A_0.glif + uniE0A1 + uniE_0A_1.glif + uniE0A2 + uniE_0A_2.glif + uniE0B0 + uniE_0B_0.glif + uniE0B1 + uniE_0B_1.glif + uniE0B2 + uniE_0B_2.glif + uniE0B3 + uniE_0B_3.glif uogonek uogonek.glif + updblhorzsngbxd + updblhorzsngbxd.glif + updblleftsngbxd + updblleftsngbxd.glif + updblrightsngbxd + updblrightsngbxd.glif + upeighthblock + upeighthblock.glif + uphalfblock + uphalfblock.glif + upheavydnhorzlightbxd + upheavydnhorzlightbxd.glif + upheavyhorzlightbxd + upheavyhorzlightbxd.glif + upheavyleftdnlightbxd + upheavyleftdnlightbxd.glif + upheavyleftlightbxd + upheavyleftlightbxd.glif + upheavyrightdnlightbxd + upheavyrightdnlightbxd.glif + upheavyrightlightbxd + upheavyrightlightbxd.glif + upleftdnleftdnrightquadrant + upleftdnleftdnrightquadrant.glif + upleftdnrightquadrant + upleftdnrightquadrant.glif + upleftquadrant + upleftquadrant.glif + upleftuprightdnleftquadrant + upleftuprightdnleftquadrant.glif + upleftuprightdnrightquadrant + upleftuprightdnrightquadrant.glif + uplightdnhorzheavybxd + uplightdnhorzheavybxd.glif + uplighthorzheavybxd + uplighthorzheavybxd.glif + uplightleftdnheavybxd + uplightleftdnheavybxd.glif + uplightleftheavybxd + uplightleftheavybxd.glif + uplightrightdnheavybxd + uplightrightdnheavybxd.glif + uplightrightheavybxd + uplightrightheavybxd.glif + uprightdnleftdnrightquadrant + uprightdnleftdnrightquadrant.glif + uprightdnleftquadrant + uprightdnleftquadrant.glif + uprightquadrant + uprightquadrant.glif + upsnghorzdblbxd + upsnghorzdblbxd.glif + upsngleftdblbxd + upsngleftdblbxd.glif + upsngrightdblbxd + upsngrightdblbxd.glif uring uring.glif utilde @@ -1320,12 +2026,38 @@ v.glif vdotbelow vdotbelow.glif + vertdblhorzsngbxd + vertdblhorzsngbxd.glif + vertdblleftsngbxd + vertdblleftsngbxd.glif + vertdblrightsngbxd + vertdblrightsngbxd.glif + vertheavyhorzlightbxd + vertheavyhorzlightbxd.glif + vertheavyleftlightbxd + vertheavyleftlightbxd.glif + vertheavyrightlightbxd + vertheavyrightlightbxd.glif verticallinelowmod verticallinelowmod.glif verticallinemod verticallinemod.glif + vertlighthorzheavybxd + vertlighthorzheavybxd.glif + vertlightleftheavybxd + vertlightleftheavybxd.glif + vertlightrightheavybxd + vertlightrightheavybxd.glif + vertsnghorzdblbxd + vertsnghorzdblbxd.glif + vertsngleftdblbxd + vertsngleftdblbxd.glif + vertsngrightdblbxd + vertsngrightdblbxd.glif w w.glif + w_w_w.liga + w_w_w.liga.glif wacute wacute.glif wcircumflex diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/darkshade.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/darkshade.glif new file mode 100644 index 00000000..fd2eb1c6 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/darkshade.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnhorzbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnhorzbxd.glif new file mode 100644 index 00000000..f392a523 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnhorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnleftbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnleftbxd.glif new file mode 100644 index 00000000..cc38a9f8 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnrightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnrightbxd.glif new file mode 100644 index 00000000..ed0943dc --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbldnrightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblhorzbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblhorzbxd.glif new file mode 100644 index 00000000..7c8a7467 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbluphorzbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbluphorzbxd.glif new file mode 100644 index 00000000..9ddbe8a4 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbluphorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblupleftbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblupleftbxd.glif new file mode 100644 index 00000000..05e6856a --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblupleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbluprightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbluprightbxd.glif new file mode 100644 index 00000000..851e7180 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dbluprightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertbxd.glif new file mode 100644 index 00000000..234700a0 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblverthorzbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblverthorzbxd.glif new file mode 100644 index 00000000..291d92b3 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblverthorzbxd.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertleftbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertleftbxd.glif new file mode 100644 index 00000000..6e1c7540 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertleftbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertrightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertrightbxd.glif new file mode 100644 index 00000000..a285c627 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dblvertrightbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblhorzsngbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblhorzsngbxd.glif new file mode 100644 index 00000000..dada8723 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblleftsngbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblleftsngbxd.glif new file mode 100644 index 00000000..d0f7e013 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblrightsngbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblrightsngbxd.glif new file mode 100644 index 00000000..eb75f406 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dndblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dneighthblock.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dneighthblock.glif new file mode 100644 index 00000000..ff791c74 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dneighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnfiveeighthsblock.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnfiveeighthsblock.glif new file mode 100644 index 00000000..99bd1498 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnhalfblock.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnhalfblock.glif new file mode 100644 index 00000000..001cf3fb --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnhalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif new file mode 100644 index 00000000..5f76f358 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyleftlightbxd.glif new file mode 100644 index 00000000..a3d9cb06 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif new file mode 100644 index 00000000..6c7093bd --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyrightlightbxd.glif new file mode 100644 index 00000000..27febfa0 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif new file mode 100644 index 00000000..4eb2d1c5 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif new file mode 100644 index 00000000..9daf514c --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnleftquadrant.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnleftquadrant.glif new file mode 100644 index 00000000..42729338 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlighthorzheavybxd.glif new file mode 100644 index 00000000..bc286b79 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightleftheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightleftheavybxd.glif new file mode 100644 index 00000000..9bcc664a --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightleftupheavybxd.glif new file mode 100644 index 00000000..fd8c2750 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightrightheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightrightheavybxd.glif new file mode 100644 index 00000000..c00032e4 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightrightupheavybxd.glif new file mode 100644 index 00000000..f526ec48 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif new file mode 100644 index 00000000..235ae3ed --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnquarterblock.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnquarterblock.glif new file mode 100644 index 00000000..c2180b50 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnrightquadrant.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnrightquadrant.glif new file mode 100644 index 00000000..9858382e --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnrightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnseveneighthsblock.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnseveneighthsblock.glif new file mode 100644 index 00000000..ecdac3da --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsnghorzdblbxd.glif new file mode 100644 index 00000000..44c02275 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsngleftdblbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsngleftdblbxd.glif new file mode 100644 index 00000000..302a7c79 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsngrightdblbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsngrightdblbxd.glif new file mode 100644 index 00000000..52aa043f --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnthreeeighthsblock.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnthreeeighthsblock.glif new file mode 100644 index 00000000..7febe2aa --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnthreequartersblock.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnthreequartersblock.glif new file mode 100644 index 00000000..a79dae14 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dnthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar_greater.liga.glif new file mode 100644 index 00000000..1c9d8d21 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar_greater.liga.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar_greater.ligabar.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar_greater.ligabar.glif new file mode 100644 index 00000000..88c7054d --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/dollar_greater.ligabar.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.end.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.end.glif new file mode 100644 index 00000000..fe67edd4 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.middle.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.middle.glif new file mode 100644 index 00000000..d61c4fa7 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.start.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.start.glif new file mode 100644 index 00000000..0b81741c --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_asciitilde.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_asciitilde.liga.glif new file mode 100644 index 00000000..8c9514be --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_asciitilde.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar.end.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar.end.glif new file mode 100644 index 00000000..b1f1d902 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar.end.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar.liga.glif new file mode 100644 index 00000000..2fda310e --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar.end.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar.end.glif new file mode 100644 index 00000000..20e0ff51 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar.end.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar.liga.glif new file mode 100644 index 00000000..ea5e8ee0 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif new file mode 100644 index 00000000..987f681d --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_equal.middle.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_equal.middle.glif new file mode 100644 index 00000000..295eaaa3 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_bar_equal.middle.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_colon_equal.middle.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_colon_equal.middle.glif new file mode 100644 index 00000000..0d5f422a --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_colon_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_equal.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_equal.liga.glif new file mode 100644 index 00000000..85ee33d1 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_equal.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_equal_equal.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_equal_equal.liga.glif new file mode 100644 index 00000000..7d441519 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_equal_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_exclam_equal.middle.glif new file mode 100644 index 00000000..ca0998af --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_exclam_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater.end.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater.end.glif new file mode 100644 index 00000000..8c04fb6f --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater.end.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater.liga.glif new file mode 100644 index 00000000..50f85b2d --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_equal.middle.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_equal.middle.glif new file mode 100644 index 00000000..adcb0d49 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_equal.middle.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater.end.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater.end.glif new file mode 100644 index 00000000..03177815 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater.liga.glif new file mode 100644 index 00000000..6e959eac --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif new file mode 100644 index 00000000..bb4c3696 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less.end.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less.end.glif new file mode 100644 index 00000000..62e2034d --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less.end.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less.liga.glif new file mode 100644 index 00000000..53c27813 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_equal.middle.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_equal.middle.glif new file mode 100644 index 00000000..914ac135 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_equal.middle.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less.end.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less.end.glif new file mode 100644 index 00000000..b60ade39 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less.end.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less.liga.glif new file mode 100644 index 00000000..a23d7de8 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less_equal.middle.glif new file mode 100644 index 00000000..9d4b349d --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_less_less_equal.middle.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash.end.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash.end.glif new file mode 100644 index 00000000..f67d77f1 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash.end.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash.liga.glif new file mode 100644 index 00000000..115fe935 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_equal.middle.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_equal.middle.glif new file mode 100644 index 00000000..862d1358 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_equal.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash.end.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash.end.glif new file mode 100644 index 00000000..d0b76972 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash.end.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash.liga.glif new file mode 100644 index 00000000..61dc9b5a --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif new file mode 100644 index 00000000..a482f547 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_asciitilde.liga.glif new file mode 100644 index 00000000..3f2a4bdd --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_asciitilde.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_equal.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_equal.liga.glif new file mode 100644 index 00000000..6491e9ce --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_equal_equal.liga.glif new file mode 100644 index 00000000..790f61f3 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_equal_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_exclam.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_exclam.liga.glif new file mode 100644 index 00000000..30253af4 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_exclam.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_exclam_period.liga.glif new file mode 100644 index 00000000..a32092ab --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/exclam_exclam_period.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fullblock.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fullblock.glif new file mode 100644 index 00000000..2c547d1b --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/fullblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/germandbls.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/germandbls.glif index c8808a8c..fce0799e 100644 --- a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/germandbls.glif +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/germandbls.glif @@ -2,7 +2,6 @@ - diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_colon.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_colon.liga.glif new file mode 100644 index 00000000..84366c66 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.glif new file mode 100644 index 00000000..f9e22738 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.liga.glif new file mode 100644 index 00000000..bc4ba579 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.start.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.start.glif new file mode 100644 index 00000000..359d1870 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal.start.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal_greater.liga.glif new file mode 100644 index 00000000..0b18a118 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_equal_greater.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater.liga.glif new file mode 100644 index 00000000..0af1ab7a --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_equal.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_equal.liga.glif new file mode 100644 index 00000000..401be0aa --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_equal.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_equal.start.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_equal.start.glif new file mode 100644 index 00000000..807407a3 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_equal.start.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_greater.liga.glif new file mode 100644 index 00000000..04eddc15 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_greater.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif new file mode 100644 index 00000000..51d8f8f5 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_hyphen.start.glif new file mode 100644 index 00000000..0aa82913 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_greater_hyphen.start.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen.liga.glif new file mode 100644 index 00000000..11ef3119 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen.liga.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen.start.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen.start.glif new file mode 100644 index 00000000..57c87b54 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen.start.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif new file mode 100644 index 00000000..1aaf43af --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydbldashhorzbxd.glif new file mode 100644 index 00000000..b28bd1b7 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydbldashvertbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydbldashvertbxd.glif new file mode 100644 index 00000000..8b7ac4c8 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnbxd.glif new file mode 100644 index 00000000..dd069ef3 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnhorzbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnhorzbxd.glif new file mode 100644 index 00000000..418b24f4 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnleftbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnleftbxd.glif new file mode 100644 index 00000000..25677143 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnrightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnrightbxd.glif new file mode 100644 index 00000000..a2a6c724 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavydnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyhorzbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyhorzbxd.glif new file mode 100644 index 00000000..eb7ed0e5 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyhorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyleftbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyleftbxd.glif new file mode 100644 index 00000000..739d1d83 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyleftlightrightbxd.glif new file mode 100644 index 00000000..48b1cb1d --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyleftlightrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif new file mode 100644 index 00000000..6c22b67f --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyquaddashvertbxd.glif new file mode 100644 index 00000000..331ba56b --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyrightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyrightbxd.glif new file mode 100644 index 00000000..b7130c91 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif new file mode 100644 index 00000000..747cbde7 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavytrpldashvertbxd.glif new file mode 100644 index 00000000..c6fca1c8 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavytrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyupbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyupbxd.glif new file mode 100644 index 00000000..9b36718c --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuphorzbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuphorzbxd.glif new file mode 100644 index 00000000..6e3464aa --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyupleftbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyupleftbxd.glif new file mode 100644 index 00000000..4225ae29 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuplightdnbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuplightdnbxd.glif new file mode 100644 index 00000000..3eef537d --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuplightdnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuprightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuprightbxd.glif new file mode 100644 index 00000000..99f59eb1 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertbxd.glif new file mode 100644 index 00000000..dc66b40b --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyverthorzbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyverthorzbxd.glif new file mode 100644 index 00000000..6f8939b4 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertleftbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertleftbxd.glif new file mode 100644 index 00000000..f3a2fbc2 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertrightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertrightbxd.glif new file mode 100644 index 00000000..cb87aa5d --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/heavyvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.end.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.end.glif new file mode 100644 index 00000000..bc36dcc1 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.middle.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.middle.glif new file mode 100644 index 00000000..b0edb5e4 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.start.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.start.glif new file mode 100644 index 00000000..36fe1593 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif new file mode 100644 index 00000000..fdf1bf59 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar.end.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar.end.glif new file mode 100644 index 00000000..bbaffc7c --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar.liga.glif new file mode 100644 index 00000000..f4337610 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar.end.glif new file mode 100644 index 00000000..f3f49b6d --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar.end.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif new file mode 100644 index 00000000..c827c05c --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif new file mode 100644 index 00000000..58df0479 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif new file mode 100644 index 00000000..5bb52a80 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater.end.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater.end.glif new file mode 100644 index 00000000..bf8a4eb9 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater.end.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater.liga.glif new file mode 100644 index 00000000..e3993133 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater.liga.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater.end.glif new file mode 100644 index 00000000..7c28a71f --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater.end.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif new file mode 100644 index 00000000..d67fc2cc --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif new file mode 100644 index 00000000..719bccb3 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif new file mode 100644 index 00000000..bf7bec7c --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_hyphen.liga.glif new file mode 100644 index 00000000..6f8fac00 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_hyphen.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..7c9168ee --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less.end.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less.end.glif new file mode 100644 index 00000000..63389cd4 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less.end.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less.liga.glif new file mode 100644 index 00000000..84db2b55 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less.liga.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif new file mode 100644 index 00000000..70a34ba0 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less.end.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less.end.glif new file mode 100644 index 00000000..f6d8d685 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less.end.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less.liga.glif new file mode 100644 index 00000000..b3e99074 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif new file mode 100644 index 00000000..bd3f441f --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif new file mode 100644 index 00000000..a8f8305a --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lefteighthblock.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lefteighthblock.glif new file mode 100644 index 00000000..8d44dad4 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lefteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftfiveeighthsblock.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftfiveeighthsblock.glif new file mode 100644 index 00000000..0eb9ccfc --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lefthalfblock.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lefthalfblock.glif new file mode 100644 index 00000000..325c05f6 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lefthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif new file mode 100644 index 00000000..86dcef33 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif new file mode 100644 index 00000000..e0b44888 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif new file mode 100644 index 00000000..430b42ee --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif new file mode 100644 index 00000000..d9ea942f --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightupheavybxd.glif new file mode 100644 index 00000000..166314ac --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif new file mode 100644 index 00000000..d46de732 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftquarterblock.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftquarterblock.glif new file mode 100644 index 00000000..036dad83 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftseveneighthsblock.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftseveneighthsblock.glif new file mode 100644 index 00000000..74b69747 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftthreeeighthsblock.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftthreeeighthsblock.glif new file mode 100644 index 00000000..e5c4283a --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftthreequartersblock.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftthreequartersblock.glif new file mode 100644 index 00000000..5ae5b2e3 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif new file mode 100644 index 00000000..73a76f66 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde.liga.glif new file mode 100644 index 00000000..6cce8ba9 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde.liga.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..8e5e76de --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif new file mode 100644 index 00000000..8f57b577 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asterisk.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asterisk.liga.glif new file mode 100644 index 00000000..8b942986 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asterisk.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asterisk_greater.liga.glif new file mode 100644 index 00000000..a0b8b94e --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_asterisk_greater.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar.liga.glif new file mode 100644 index 00000000..7af7b765 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_bar.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_bar.liga.glif new file mode 100644 index 00000000..eff2fba8 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_bar.liga.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif new file mode 100644 index 00000000..4be571d8 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_greater.liga.glif new file mode 100644 index 00000000..8e7b4527 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_bar_greater.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_colon.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_colon.liga.glif new file mode 100644 index 00000000..4af812cf --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar.liga.glif new file mode 100644 index 00000000..7e5fa34f --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar.liga.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar.ligabar.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar.ligabar.glif new file mode 100644 index 00000000..b20ce3cd --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar.ligabar.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar_greater.liga.glif new file mode 100644 index 00000000..ad8aa8a3 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar_greater.liga.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif new file mode 100644 index 00000000..4b00a84b --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.glif new file mode 100644 index 00000000..51942e0c --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.liga.glif new file mode 100644 index 00000000..bd898120 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.start.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.start.glif new file mode 100644 index 00000000..fd9e791f --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal.start.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal_greater.liga.glif new file mode 100644 index 00000000..5fd08fe3 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal_greater.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal_less.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal_less.liga.glif new file mode 100644 index 00000000..c79e3f3e --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_equal_less.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..c25f3474 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_greater.liga.glif new file mode 100644 index 00000000..9b842a63 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen.liga.glif new file mode 100644 index 00000000..e61526fe --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen.liga.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen.start.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen.start.glif new file mode 100644 index 00000000..4ba6aa57 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen.start.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen_greater.liga.glif new file mode 100644 index 00000000..87d3818e --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen_less.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen_less.liga.glif new file mode 100644 index 00000000..8abbdf56 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_hyphen_less.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less.liga.glif new file mode 100644 index 00000000..9e38d036 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_equal.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_equal.liga.glif new file mode 100644 index 00000000..131bc55e --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_equal.start.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_equal.start.glif new file mode 100644 index 00000000..7c5071ae --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_hyphen.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_hyphen.liga.glif new file mode 100644 index 00000000..aaee1b91 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_hyphen.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_hyphen.start.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_hyphen.start.glif new file mode 100644 index 00000000..451c5137 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_hyphen.start.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_less.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_less.liga.glif new file mode 100644 index 00000000..6ca1e3a4 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_less_less.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_plus.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_plus.liga.glif new file mode 100644 index 00000000..fbeb8c64 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_plus.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_plus_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_plus_greater.liga.glif new file mode 100644 index 00000000..26492dfe --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_plus_greater.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_slash.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_slash.liga.glif new file mode 100644 index 00000000..02d4fbbe --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_slash.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_slash_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_slash_greater.liga.glif new file mode 100644 index 00000000..fa915aa2 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/less_slash_greater.liga.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcdnleftbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcdnleftbxd.glif new file mode 100644 index 00000000..7b2ae69c --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcdnleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcdnrightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcdnrightbxd.glif new file mode 100644 index 00000000..e77db64a --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcdnrightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcupleftbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcupleftbxd.glif new file mode 100644 index 00000000..8c04e6ea --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcupleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcuprightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcuprightbxd.glif new file mode 100644 index 00000000..aa59014b --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightarcuprightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdbldashhorzbxd.glif new file mode 100644 index 00000000..d4979b79 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdbldashvertbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdbldashvertbxd.glif new file mode 100644 index 00000000..fbafb510 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiagcrossbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiagcrossbxd.glif new file mode 100644 index 00000000..b8b28b3d --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiagcrossbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif new file mode 100644 index 00000000..f5b5b097 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif new file mode 100644 index 00000000..e6f59836 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnbxd.glif new file mode 100644 index 00000000..bdae562a --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnhorzbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnhorzbxd.glif new file mode 100644 index 00000000..d7712d74 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnleftbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnleftbxd.glif new file mode 100644 index 00000000..5374d7a2 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnrightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnrightbxd.glif new file mode 100644 index 00000000..fa3340d9 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighthorzbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighthorzbxd.glif new file mode 100644 index 00000000..25b29983 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighthorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightleftbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightleftbxd.glif new file mode 100644 index 00000000..a8624b19 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightleftheavyrightbxd.glif new file mode 100644 index 00000000..764336e2 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightleftheavyrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightquaddashhorzbxd.glif new file mode 100644 index 00000000..35e38e1a --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightquaddashvertbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightquaddashvertbxd.glif new file mode 100644 index 00000000..072ed15c --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightrightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightrightbxd.glif new file mode 100644 index 00000000..b667c190 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightshade.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightshade.glif new file mode 100644 index 00000000..156f38e4 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightshade.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif new file mode 100644 index 00000000..19cbe90a --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighttrpldashvertbxd.glif new file mode 100644 index 00000000..42b0a891 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lighttrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupbxd.glif new file mode 100644 index 00000000..25fa23f3 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupheavydnbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupheavydnbxd.glif new file mode 100644 index 00000000..8d64ef66 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupheavydnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightuphorzbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightuphorzbxd.glif new file mode 100644 index 00000000..a55536d4 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupleftbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupleftbxd.glif new file mode 100644 index 00000000..e36a0903 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightuprightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightuprightbxd.glif new file mode 100644 index 00000000..46263e65 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertbxd.glif new file mode 100644 index 00000000..c8075b0c --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightverthorzbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightverthorzbxd.glif new file mode 100644 index 00000000..d2bc79d5 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertleftbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertleftbxd.glif new file mode 100644 index 00000000..1912526f --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertrightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertrightbxd.glif new file mode 100644 index 00000000..c3d4b72d --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/lightvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ligspacer.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ligspacer.glif new file mode 100644 index 00000000..aaf0214e --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/ligspacer.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/mediumshade.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/mediumshade.glif new file mode 100644 index 00000000..4e438ef8 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/mediumshade.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.end.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.end.glif new file mode 100644 index 00000000..c7859036 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.end.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.middle.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.middle.glif new file mode 100644 index 00000000..da9ce92f --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.middle.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.start.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.start.glif new file mode 100644 index 00000000..218e696f --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign.start.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_braceleft.liga.glif new file mode 100644 index 00000000..e6beb6ee --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_braceleft.liga.glif @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif new file mode 100644 index 00000000..be54599d --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_colon.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_colon.liga.glif new file mode 100644 index 00000000..601dfd27 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_colon.liga.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_equal.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_equal.liga.glif new file mode 100644 index 00000000..066362ea --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_equal.liga.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_exclam.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_exclam.liga.glif new file mode 100644 index 00000000..567e02e2 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_exclam.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_parenleft.liga.glif new file mode 100644 index 00000000..96a0a3b3 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_parenleft.liga.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_question.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_question.liga.glif new file mode 100644 index 00000000..0f682dfe --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_question.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_underscore.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_underscore.liga.glif new file mode 100644 index 00000000..ece77a63 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_underscore.liga.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif new file mode 100644 index 00000000..73bc0d73 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/percent_percent.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/percent_percent.liga.glif new file mode 100644 index 00000000..ed9ba319 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/percent_percent.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_equal.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_equal.liga.glif new file mode 100644 index 00000000..1ca6ac6c --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_equal.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_hyphen.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_hyphen.liga.glif new file mode 100644 index 00000000..f2aa1bb5 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_hyphen.liga.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period.liga.glif new file mode 100644 index 00000000..df885b62 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_equal.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_equal.liga.glif new file mode 100644 index 00000000..4ec236cb --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_less.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_less.liga.glif new file mode 100644 index 00000000..739ad9ed --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_less.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_period.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_period.liga.glif new file mode 100644 index 00000000..319b93a5 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_period_period.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_question.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_question.liga.glif new file mode 100644 index 00000000..d47b3b0b --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/period_question.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_greater.liga.glif new file mode 100644 index 00000000..2edbfd4f --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_plus.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_plus.liga.glif new file mode 100644 index 00000000..89bc1be8 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_plus.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_plus_plus.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_plus_plus.liga.glif new file mode 100644 index 00000000..2ef3224d --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/plus_plus_plus.liga.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_colon.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_colon.liga.glif new file mode 100644 index 00000000..f9a0d47a --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_colon.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_equal.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_equal.liga.glif new file mode 100644 index 00000000..749d2ed1 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_equal.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_period.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_period.liga.glif new file mode 100644 index 00000000..52166e91 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_period.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_question.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_question.liga.glif new file mode 100644 index 00000000..eadc97f4 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/question_question.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotedblbase.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotedblbase.glif index a1f8c6bb..9102cd70 100644 --- a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotedblbase.glif +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/quotedblbase.glif @@ -2,7 +2,6 @@ - diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif new file mode 100644 index 00000000..a37f48a4 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/righteighthblock.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/righteighthblock.glif new file mode 100644 index 00000000..9d954a40 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/righteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/righthalfblock.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/righthalfblock.glif new file mode 100644 index 00000000..7d4f8cef --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/righthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif new file mode 100644 index 00000000..096861bd --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif new file mode 100644 index 00000000..4dd3b32e --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif new file mode 100644 index 00000000..024e2eab --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif new file mode 100644 index 00000000..b0c45355 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftupheavybxd.glif new file mode 100644 index 00000000..97e94f0e --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif new file mode 100644 index 00000000..7589ec83 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif new file mode 100644 index 00000000..22a54e57 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/semicolon_semicolon.liga.glif new file mode 100644 index 00000000..0c88b0cd --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/semicolon_semicolon.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_asterisk.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_asterisk.liga.glif new file mode 100644 index 00000000..cd228f8f --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_asterisk.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_backslash.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_backslash.liga.glif new file mode 100644 index 00000000..7683e890 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_backslash.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_equal.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_equal.liga.glif new file mode 100644 index 00000000..c3873188 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_equal.start.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_equal.start.glif new file mode 100644 index 00000000..c4752280 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_equal.start.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_greater.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_greater.liga.glif new file mode 100644 index 00000000..f8dfa36f --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_greater.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash.liga.glif new file mode 100644 index 00000000..f3f2b730 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_equal.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_equal.liga.glif new file mode 100644 index 00000000..bc1845d6 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_equal.start.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_equal.start.glif new file mode 100644 index 00000000..b59e51c1 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_equal.start.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_slash.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_slash.liga.glif new file mode 100644 index 00000000..2da5cfa3 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/slash_slash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.end.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.end.glif new file mode 100644 index 00000000..4041d741 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.middle.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.middle.glif new file mode 100644 index 00000000..592d8a6a --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.start.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.start.glif new file mode 100644 index 00000000..3447c097 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore_bar_underscore.m.glif new file mode 100644 index 00000000..9b61d8a2 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/underscore_bar_underscore.m.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2610.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2610.glif new file mode 100644 index 00000000..9202e133 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2610.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2611.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2611.glif new file mode 100644 index 00000000..1983469b --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2611.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2612.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2612.glif new file mode 100644 index 00000000..0a7f5e8f --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2612.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2713.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2713.glif new file mode 100644 index 00000000..5a50574f --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uni2713.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_0.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_0.glif new file mode 100644 index 00000000..00e14d17 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_0.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_1.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_1.glif new file mode 100644 index 00000000..6288705d --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_1.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_2.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_2.glif new file mode 100644 index 00000000..146bc0c0 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0A_2.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_0.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_0.glif new file mode 100644 index 00000000..cbb29bc8 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_0.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_1.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_1.glif new file mode 100644 index 00000000..88eeed7c --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_1.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_2.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_2.glif new file mode 100644 index 00000000..40eaba7c --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_2.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_3.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_3.glif new file mode 100644 index 00000000..9bf61356 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uniE_0B_3.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblhorzsngbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblhorzsngbxd.glif new file mode 100644 index 00000000..95aed0e2 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblleftsngbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblleftsngbxd.glif new file mode 100644 index 00000000..70d11705 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblrightsngbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblrightsngbxd.glif new file mode 100644 index 00000000..db9ec4f9 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/updblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upeighthblock.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upeighthblock.glif new file mode 100644 index 00000000..87701940 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upeighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uphalfblock.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uphalfblock.glif new file mode 100644 index 00000000..018ed615 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uphalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif new file mode 100644 index 00000000..93de0c5b --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyhorzlightbxd.glif new file mode 100644 index 00000000..6da525a6 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif new file mode 100644 index 00000000..95b1d58d --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyleftlightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyleftlightbxd.glif new file mode 100644 index 00000000..27c8767e --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif new file mode 100644 index 00000000..98099b7e --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyrightlightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyrightlightbxd.glif new file mode 100644 index 00000000..e96a85a4 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif new file mode 100644 index 00000000..91309b79 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftdnrightquadrant.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftdnrightquadrant.glif new file mode 100644 index 00000000..9bb17821 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftdnrightquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftquadrant.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftquadrant.glif new file mode 100644 index 00000000..ef21c49d --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif new file mode 100644 index 00000000..0d5294c6 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif new file mode 100644 index 00000000..56cf6e14 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif new file mode 100644 index 00000000..d6c1c942 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplighthorzheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplighthorzheavybxd.glif new file mode 100644 index 00000000..9c329a81 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightleftdnheavybxd.glif new file mode 100644 index 00000000..e5537fde --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightleftheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightleftheavybxd.glif new file mode 100644 index 00000000..41ff15db --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightrightdnheavybxd.glif new file mode 100644 index 00000000..f0ae3643 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightrightheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightrightheavybxd.glif new file mode 100644 index 00000000..fff139a2 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uplightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif new file mode 100644 index 00000000..df5a022e --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightdnleftquadrant.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightdnleftquadrant.glif new file mode 100644 index 00000000..93cbe757 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightdnleftquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightquadrant.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightquadrant.glif new file mode 100644 index 00000000..de8b454f --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/uprightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsnghorzdblbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsnghorzdblbxd.glif new file mode 100644 index 00000000..fb977608 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsngleftdblbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsngleftdblbxd.glif new file mode 100644 index 00000000..644fe45c --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsngrightdblbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsngrightdblbxd.glif new file mode 100644 index 00000000..8a0fb12c --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/upsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblhorzsngbxd.glif new file mode 100644 index 00000000..34393559 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblhorzsngbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblleftsngbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblleftsngbxd.glif new file mode 100644 index 00000000..19880cd3 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblleftsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblrightsngbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblrightsngbxd.glif new file mode 100644 index 00000000..52c05045 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertdblrightsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif new file mode 100644 index 00000000..f506645c --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyleftlightbxd.glif new file mode 100644 index 00000000..82388e1c --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyleftlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyrightlightbxd.glif new file mode 100644 index 00000000..59c0068d --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertheavyrightlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlighthorzheavybxd.glif new file mode 100644 index 00000000..86c41999 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlighthorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlightleftheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlightleftheavybxd.glif new file mode 100644 index 00000000..244971f0 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlightleftheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlightrightheavybxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlightrightheavybxd.glif new file mode 100644 index 00000000..bf25c352 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertlightrightheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsnghorzdblbxd.glif new file mode 100644 index 00000000..376348b0 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsnghorzdblbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsngleftdblbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsngleftdblbxd.glif new file mode 100644 index 00000000..5d079ace --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsngleftdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsngrightdblbxd.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsngrightdblbxd.glif new file mode 100644 index 00000000..2fd1a11a --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/vertsngrightdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/w_w_w.liga.glif b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/w_w_w.liga.glif new file mode 100644 index 00000000..39de6418 --- /dev/null +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/glyphs/w_w_w.liga.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/lib.plist b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/lib.plist index 4de37c00..c90319da 100644 --- a/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/lib.plist +++ b/sources/masters/IntelOneMono-BoldItalic-mstr.ufo/lib.plist @@ -2,710 +2,6 @@ - com.defcon.sortDescriptor - - - ascending - - .notdef - A - B - C - D - E - F - G - H - I - J - K - L - M - N - O - P - Q - Q.bar - R - S - T - U - V - W - X - Y - Z - a - b - c - d - e - f - g - h - i - j - k - l - m - n - o - p - q - r - s - t - u - v - w - x - y - z - period - comma - colon - semicolon - question - exclam - questiondown - exclamdown - ellipsis - twodotleader - quotedblleft - quotedblright - quotedblbase - quoteleft - quoteright - quotesinglbase - guillemetleft - guillemetright - guilsinglleft - guilsinglright - parenleft - parenright - bracketleft - bracketright - braceleft - braceright - slash - backslash - bar - hyphen - endash - emdash - hyphen.calt - periodcentered - bullet - underscore - ampersand - at - published - copyright - registered - servicemark - trademark - asterisk - dagger - daggerdbl - section - paragraph - zero - one - two - three - four - five - six - seven - eight - nine - colon.fig - plus - divide - minus - equal - notequal - asciitilde - approxequal - multiply - less - greater - lessequal - greaterequal - plusminus - asciicircum - mu - numbersign - percent - quotedbl - quotesingle - ordfeminine - ordmasculine - degree - dollar - dollar.bar - sterling - yen - Euro - naira - naira.bar - peso - peso.bar - uni20BA - uni20BD - uni20B9 - bahtthai - bahtthai.bar - won - won.bar - cent - cent.bar - dong - onehalf - onethird - twothirds - onequarter - threequarters - onefifth - twofifths - threefifths - fourfifths - onesixth - fivesixths - oneeighth - threeeighths - fiveeighths - seveneighths - zero.sup - one.sup - two.sup - three.sup - four.sup - five.sup - six.sup - seven.sup - eight.sup - nine.sup - zero.inf - one.inf - two.inf - three.inf - four.inf - five.inf - six.inf - seven.inf - eight.inf - nine.inf - primemod - dblprimemod - commaturnedmod - apostrophemod - ringhalfleft - ringhalfright - verticallinemod - verticallinelowmod - acute - hungarumlaut - grave - circumflex - caron - breve - tilde - macron - dieresis - dotaccent - ring - uniA788 - macronlowmod - cedilla - ogonek - Aacute - Agrave - Acircumflex - Acircumflexdotbelow - Acircumflexacute - Acircumflexgrave - Acircumflexhookabove - Acircumflextilde - Acaron - Abreve - Abrevedotbelow - Abreveacute - Abrevegrave - Abrevehookabove - Abrevetilde - Atilde - Amacron - Adieresis - Adotaccent - Aring - Ahookabove - Adotbelow - Aogonek - AE - Blinebelow - Cacute - Ccircumflex - Ccaron - Cdotaccent - Ccedilla - Dcaron - Dcircumflexbelow - Dlinebelow - Ddotbelow - Dcroat - Eacute - Egrave - Ecircumflex - Ecircumflexdotbelow - Ecircumflexacute - Ecircumflexgrave - Ecircumflexhookabove - Ecircumflextilde - Ecaron - Ebreve - Etilde - Emacron - Edieresis - Edotaccent - Ehookabove - Edotbelow - Eogonek - Gcircumflex - Gcaron - Gbreve - Gmacron - Gdotaccent - Gcommaaccent - Hcircumflex - Hbrevebelow - Hdotbelow - Hcedilla - Hbar - Iacute - Igrave - Icircumflex - Icaron - Ibreve - Itilde - Imacron - Idieresis - Idotaccent - Ihookabove - Idotbelow - Iogonek - Jcircumflex - Klinebelow - Kcommaaccent - Kdotbelow - Lacute - Lcaron - Lcommaaccent - Lcircumflexbelow - Llinebelow - Lmacrondotbelow - Ldotbelow - L.dot - Lslash - Macute - Mdotaccent - Mdotbelow - Nacute - Ngrave - Ncaron - Ntilde - Ndotaccent - Ncircumflexbelow - Ncommaaccent - Ndotbelow - Nlinebelow - Eng - Oacute - Ohungarumlaut - Ograve - Ocircumflex - Ocircumflexdotbelow - Ocircumflexacute - Ocircumflexgrave - Ocircumflexhookabove - Ocircumflextilde - Ocaron - Obreve - Otilde - Omacron - Odieresis - Odotaccent - Ohookabove - Odotbelow - Oogonek - Oslash - Oslash.bar - OE - Ohorn - Ohornacute - Ohorngrave - Ohorntilde - Ohornhookabove - Ohorndotbelow - Racute - Rcaron - Rdotaccent - Rmacrondotbelow - Rcommaaccent - Rdotbelow - Rlinebelow - Sacute - Scircumflex - Scaron - Scommaaccent - Sdotbelow - Scedilla - uni1E9E - Tcaron - Tcircumflexbelow - Tcommaaccent - Tdotbelow - Tlinebelow - Tcedilla - Tbar - Uacute - Uhungarumlaut - Ugrave - Ucircumflex - Ucaron - Ubreve - Utilde - Umacron - Udieresis - Udieresisacute - Udieresisgrave - Udieresiscaron - Udieresismacron - Uring - Uhookabove - Udotbelow - Uogonek - Uhorn - Uhornacute - Uhorngrave - Uhorntilde - Uhornhookabove - Uhorndotbelow - Vdotbelow - Wacute - Wgrave - Wcircumflex - Wdieresis - Xdieresis - Yacute - Ygrave - Ycircumflex - Ytilde - Ymacron - Ydieresis - Ydotaccent - Yhookabove - Ydotbelow - Zacute - Zcircumflex - Zcaron - Zdotaccent - Zdotbelow - Zlinebelow - Eth - Thorn - Schwa - aacute - agrave - acircumflex - acircumflexdotbelow - acircumflexacute - acircumflexgrave - acircumflexhookabove - acircumflextilde - acaron - abreve - abrevedotbelow - abreveacute - abrevegrave - abrevehookabove - abrevetilde - atilde - amacron - adieresis - adotaccent - aring - ahookabove - adotbelow - aogonek - ae - blinebelow - cacute - ccircumflex - ccaron - cdotaccent - ccedilla - dcaron - dcircumflexbelow - dlinebelow - ddotbelow - dcroat - eacute - egrave - ecircumflex - ecircumflexdotbelow - ecircumflexacute - ecircumflexgrave - ecircumflexhookabove - ecircumflextilde - ecaron - ebreve - etilde - emacron - edieresis - edotaccent - ehookabove - edotbelow - eogonek - gcircumflex - gcaron - gbreve - gmacron - gdotaccent - gcommaaccent - hcircumflex - hbrevebelow - hlinebelow - hdotbelow - hcedilla - hbar - dotlessi - iacute - igrave - icircumflex - icaron - ibreve - itilde - imacron - idieresis - idotaccent - ihookabove - idotbelow - iogonek - dotlessj - jcircumflex - jcaron - klinebelow - kcommaaccent - kdotbelow - lacute - lcaron - lcommaaccent - lcircumflexbelow - llinebelow - lmacrondotbelow - ldotbelow - l.dot - lslash - macute - mdotaccent - mdotbelow - nacute - ngrave - ncaron - ntilde - ndotaccent - ncircumflexbelow - ncommaaccent - ndotbelow - nlinebelow - eng - oacute - ohungarumlaut - ograve - ocircumflex - ocircumflexdotbelow - ocircumflexacute - ocircumflexgrave - ocircumflexhookabove - ocircumflextilde - ocaron - obreve - otilde - omacron - odieresis - odotaccent - ohookabove - odotbelow - oogonek - oslash - oslash.bar - oe - ohorn - ohornacute - ohorngrave - ohorntilde - ohornhookabove - ohorndotbelow - racute - rcaron - rdotaccent - rmacrondotbelow - rcommaaccent - rdotbelow - rlinebelow - sacute - scircumflex - scaron - scommaaccent - sdotbelow - scedilla - germandbls - tcaron - tcircumflexbelow - tcommaaccent - tdotbelow - tlinebelow - tcedilla - tbar - uacute - uhungarumlaut - ugrave - ucircumflex - ucaron - ubreve - utilde - umacron - udieresis - udieresisacute - udieresisgrave - udieresiscaron - udieresismacron - uring - uhookabove - udotbelow - uogonek - uhorn - uhornacute - uhorngrave - uhorntilde - uhornhookabove - uhorndotbelow - vdotbelow - wacute - wgrave - wcircumflex - wdieresis - xdieresis - yacute - ygrave - ycircumflex - ytilde - ymacron - ydieresis - ydotaccent - yhookabove - ydotbelow - zacute - zcircumflex - zcaron - zdotaccent - zdotbelow - zlinebelow - eth - thorn - schwa - space - uni00A0 - zero.num - one.num - two.num - three.num - four.num - five.num - six.num - seven.num - eight.num - nine.num - fraction - fracbar - zero.den - one.den - two.den - three.den - four.den - five.den - six.den - seven.den - eight.den - nine.den - uni2011 - horizontalbar - middotcat - middotcat.cap - acutecmb - hungarumlautcmb - gravecmb - commaaboverightcmb - circumflexcmb - caroncmb - brevecmb - tildecmb - macroncmb - dieresiscmb - dotaccentcmb - ringcmb - commaturnedabovecmb - hookcmb - circumflexbelowcmb - brevebelowcmb - macronbelowcmb - dieresisbelowcmb - dotbelowcmb - uni0326 - cedillacmb - ogonekcmb - dieresisacute - dieresisgrave - dieresiscaron - dieresismacron - breveacute - brevegrave - brevehook - brevetilde - circumflexacute - circumflexgrave - circumflexhook - circumflextilde - acutecmb.cap - hungarumlautcmb.cap - gravecmb.cap - circumflexcmb.cap - caroncmb.cap - brevecmb.cap - tildecmb.cap - macroncmb.cap - dieresiscmb.cap - dotaccentcmb.cap - ringcmb.cap - hookcmb.cap - dieresisacute.cap - dieresisgrave.cap - dieresiscaron.cap - dieresismacron.cap - breveacute.cap - brevegrave.cap - brevehook.cap - brevetilde.cap - circumflexacute.cap - circumflexgrave.cap - circumflexhook.cap - circumflextilde.cap - - type - glyphList - - com.typemytype.robofont.compileSettings.autohint com.typemytype.robofont.compileSettings.checkOutlines @@ -1419,6 +715,372 @@ circumflexgrave.cap circumflexhook.cap circumflextilde.cap + lighthorzbxd + heavyhorzbxd + lightvertbxd + heavyvertbxd + lighttrpldashhorzbxd + heavytrpldashhorzbxd + lighttrpldashvertbxd + heavytrpldashvertbxd + lightquaddashhorzbxd + heavyquaddashhorzbxd + lightquaddashvertbxd + heavyquaddashvertbxd + lightdnrightbxd + dnlightrightheavybxd + dnheavyrightlightbxd + heavydnrightbxd + lightdnleftbxd + dnlightleftheavybxd + dnheavyleftlightbxd + heavydnleftbxd + lightuprightbxd + uplightrightheavybxd + upheavyrightlightbxd + heavyuprightbxd + lightupleftbxd + uplightleftheavybxd + upheavyleftlightbxd + heavyupleftbxd + lightvertrightbxd + vertlightrightheavybxd + upheavyrightdnlightbxd + dnheavyrightuplightbxd + vertheavyrightlightbxd + dnlightrightupheavybxd + uplightrightdnheavybxd + heavyvertrightbxd + lightvertleftbxd + vertlightleftheavybxd + upheavyleftdnlightbxd + dnheavyleftuplightbxd + vertheavyleftlightbxd + dnlightleftupheavybxd + uplightleftdnheavybxd + heavyvertleftbxd + lightdnhorzbxd + leftheavyrightdnlightbxd + rightheavyleftdnlightbxd + dnlighthorzheavybxd + dnheavyhorzlightbxd + rightlightleftdnheavybxd + leftlightrightdnheavybxd + heavydnhorzbxd + lightuphorzbxd + leftheavyrightuplightbxd + rightheavyleftuplightbxd + uplighthorzheavybxd + upheavyhorzlightbxd + rightlightleftupheavybxd + leftlightrightupheavybxd + heavyuphorzbxd + lightverthorzbxd + leftheavyrightvertlightbxd + rightheavyleftvertlightbxd + vertlighthorzheavybxd + upheavydnhorzlightbxd + dnheavyuphorzlightbxd + vertheavyhorzlightbxd + leftupheavyrightdnlightbxd + rightupheavyleftdnlightbxd + leftdnheavyrightuplightbxd + rightdnheavyleftuplightbxd + dnlightuphorzheavybxd + uplightdnhorzheavybxd + rightlightleftvertheavybxd + leftlightrightvertheavybxd + heavyverthorzbxd + lightdbldashhorzbxd + heavydbldashhorzbxd + lightdbldashvertbxd + heavydbldashvertbxd + dblhorzbxd + dblvertbxd + dnsngrightdblbxd + dndblrightsngbxd + dbldnrightbxd + dnsngleftdblbxd + dndblleftsngbxd + dbldnleftbxd + upsngrightdblbxd + updblrightsngbxd + dbluprightbxd + upsngleftdblbxd + updblleftsngbxd + dblupleftbxd + vertsngrightdblbxd + vertdblrightsngbxd + dblvertrightbxd + vertsngleftdblbxd + vertdblleftsngbxd + dblvertleftbxd + dnsnghorzdblbxd + dndblhorzsngbxd + dbldnhorzbxd + upsnghorzdblbxd + updblhorzsngbxd + dbluphorzbxd + vertsnghorzdblbxd + vertdblhorzsngbxd + dblverthorzbxd + lightarcdnrightbxd + lightarcdnleftbxd + lightarcupleftbxd + lightarcuprightbxd + lightdiaguprightdnleftbxd + lightdiagupleftdnrightbxd + lightdiagcrossbxd + lightleftbxd + lightupbxd + lightrightbxd + lightdnbxd + heavyleftbxd + heavyupbxd + heavyrightbxd + heavydnbxd + lightleftheavyrightbxd + lightupheavydnbxd + heavyleftlightrightbxd + heavyuplightdnbxd + uphalfblock + dneighthblock + dnquarterblock + dnthreeeighthsblock + dnhalfblock + dnfiveeighthsblock + dnthreequartersblock + dnseveneighthsblock + fullblock + leftseveneighthsblock + leftthreequartersblock + leftfiveeighthsblock + lefthalfblock + leftthreeeighthsblock + leftquarterblock + lefteighthblock + righthalfblock + lightshade + mediumshade + darkshade + upeighthblock + righteighthblock + dnleftquadrant + dnrightquadrant + upleftquadrant + upleftdnleftdnrightquadrant + upleftdnrightquadrant + upleftuprightdnleftquadrant + upleftuprightdnrightquadrant + uprightquadrant + uprightdnleftquadrant + uprightdnleftdnrightquadrant + ligspacer + period_equal.liga + period_period_equal.liga + period_hyphen.liga + colon_equal.liga + equal_colon_equal.middle + equal_exclam_equal.middle + equal_equal.liga + exclam_equal.liga + equal_equal_equal.liga + exclam_equal_equal.liga + less_hyphen_less.liga + less_less_hyphen.liga + less_hyphen.liga + less_hyphen_greater.liga + hyphen_greater.liga + hyphen_greater_greater.liga + greater_hyphen_greater.liga + less_equal_less.liga + less_less_equal.liga + less_equal_greater.liga + equal_greater.liga + less_equal.liga + equal_greater_greater.liga + greater_equal_greater.liga + greater_equal.liga + greater_greater_equal.liga + greater_greater_hyphen.liga + greater_hyphen.liga + less_asciitilde_greater.liga + hyphen_less.liga + hyphen_less_less.liga + equal_less.liga + equal_less_less.liga + less_asciitilde_asciitilde.liga + less_asciitilde.liga + asciitilde_asciitilde.liga + asciitilde_greater.liga + asciitilde_asciitilde_greater + slash_equal.liga + hyphen_bar.liga + bar_hyphen.liga + bar_equal.liga + hyphen_bar_bar.liga + bar_bar_hyphen.liga + equal_bar_bar.liga + bar_bar_equal.liga + equal_bar.liga + equal.start + equal.middle + equal.end + hyphen.start + hyphen.middle + hyphen.end + underscore.start + underscore.middle + underscore.end + numbersign.start + numbersign.middle + numbersign.end + less_less_less.liga + less_less.liga + less_equal + less_greater.liga + greater_equal + greater_greater.liga + greater_greater_greater.liga + braceleft_bar.liga + bracketleft_bar.liga + less_colon.liga + colon_less.liga + uni2713 + greater_colon.liga + colon_greater.liga + bar_braceright.liga + bar_bracketright.liga + less_bar_bar_bar.liga + less_bar_bar.liga + less_bar.liga + less_bar_greater.liga + bar_greater.liga + bar_bar_greater.liga + bar_bar_bar_greater.liga + less_dollar.liga + less_dollar_greater.liga + dollar_greater.liga + less_plus.liga + less_plus_greater.liga + plus_greater.liga + less_asterisk.liga + less_asterisk_greater.liga + asterisk_greater.liga + slash_asterisk.liga + asterisk_slash.liga + slash_slash_slash.liga + slash_slash.liga + less_slash.liga + less_exclam_hyphen_hyphen.liga + less_slash_greater.liga + slash_greater.liga + semicolon_semicolon.liga + colon_colon.liga + colon_colon_colon.liga + period_period.liga + period_period_period.liga + period_period_less.liga + exclam_exclam.liga + question_question.liga + percent_percent.liga + ampersand_ampersand.liga + bar_bar.liga + question_period.liga + question_colon.liga + plus_plus.liga + plus_plus_plus.liga + hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga + asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga + equal_asciitilde.liga + exclam_asciitilde.liga + asciitilde_hyphen.liga + w_w_w.liga + hyphen_asciitilde.liga + asciitilde_at.liga + asciicircum_equal.liga + question_equal.liga + numbersign_exclam.liga + numbersign_equal.liga + numbersign_colon.liga + numbersign_braceleft.liga + numbersign_bracketleft.liga + bracketright_numbersign.liga + numbersign_parenleft.liga + numbersign_question.liga + numbersign_underscore.liga + numbersign_underscore_parenleft + backslash_slash.liga + bar_bar_bar.liga + colon_colon_equal.liga + exclam_exclam_period.liga + period_question.liga + slash_backslash.liga + uniE0A0 + uniE0A1 + uniE0A2 + uniE0B0 + uniE0B1 + uniE0B2 + uniE0B3 + uni2610 + uni2611 + uni2612 + less_dollar.ligabar + less_dollar_greater.ligabar + dollar_greater.ligabar + underscore_bar_underscore.m + hyphen_bar_hyphen.middle + equal_bar_equal.middle + hyphen_greater_hyphen.middle + hyphen_greater_greater_hyphen.m + equal_slash_slash_equal.middle + equal_slash_equal.middle + hyphen_bar_bar_hyphen.middle + equal_bar_bar_equal.middle + hyphen_less_hyphen.middle + hyphen_less_less_hyphen.middle + equal_greater_equal.middle + equal_less_equal.middle + equal_greater_greater_equal.m + equal_less_less_equal.middle + less_hyphen.start + greater_hyphen.start + bar_hyphen.start + less_equal.start + greater_equal.start + bar_equal.start + slash_equal.start + less_less_hyphen.start + greater_greater_hyphen.start + bar_bar_hyphen.start + less_less_equal.start + greater_greater_equal.start + bar_bar_equal.start + hyphen_less.end + hyphen_greater.end + hyphen_bar.end + equal_less.end + equal_greater.end + equal_bar.end + hyphen_less_less.end + hyphen_greater_greater.end + hyphen_bar_bar.end + equal_less_less.end + equal_greater_greater.end + equal_bar_bar.end + slash_slash_equal.liga + slash_slash_equal.start + equal_slash.liga + equal_slash.end + equal_slash_slash.liga + equal_slash_slash.end + arrowheadleft + arrowheadright + arrowheadleftopen + arrowheadrightopen public.postscriptNames diff --git a/sources/masters/IntelOneMono-Italic.designspace b/sources/masters/IntelOneMono-Italic.designspace index d63f70a5..d6a37f11 100644 --- a/sources/masters/IntelOneMono-Italic.designspace +++ b/sources/masters/IntelOneMono-Italic.designspace @@ -14,6 +14,9 @@ + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/features.fea b/sources/masters/IntelOneMono-Light-mstr.ufo/features.fea index 442214bb..5a07e127 100644 --- a/sources/masters/IntelOneMono-Light-mstr.ufo/features.fea +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/features.fea @@ -1,271 +1,3 @@ -# ---------------------------- -# INTEL ONE MONO OPENTYPE CODE -# ---------------------------- -# ---------------- -# Language Systems -# ---------------- - -languagesystem DFLT dflt; -languagesystem latn dflt; -languagesystem latn TRK; -languagesystem latn AZE; -languagesystem latn CRT; -languagesystem latn CAT; - - -# ------- -# Classes -# ------- - -# Base Letters -@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; -@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; - -# Figures -@fig = [zero one two three four five six seven eight nine]; -@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; -@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; -@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; -@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; - -# Marks Above -@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; -@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; - -# Marks Below -@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; - - -# --------------- -# Localized Forms -# --------------- - -feature locl { - script latn; - language TRK; - lookup iTurkish { - sub i by idotaccent; - } iTurkish; - language AZE; - lookup iTurkish; - language CRT; - lookup iTurkish; - language CAT; - sub l periodcentered' l by middotcat; - sub L periodcentered' L by middotcat.cap; - # try fusing them - sub L middotcat.cap by L.dot; - sub L middotcat by L.dot; - sub l middotcat by l.dot; -} locl; - - -# --------------------------------- -# Glyph Composition / Decomposition -# --------------------------------- - -feature ccmp { - - # Decompose unicode lowercase characters whose uppercase counterparts have no unicode. - lookup Decomp { - sub hlinebelow by h macronlowmod; - sub jcaron by j caron; - } Decomp; - - # Replace double above accents by combined drawings. - lookup DblMarks { - sub dieresiscmb acutecmb by dieresisacute; - sub dieresiscmb gravecmb by dieresisgrave; - sub dieresiscmb caroncmb by dieresiscaron; - sub dieresiscmb macroncmb by dieresismacron; - sub brevecmb acutecmb by breveacute; - sub brevecmb gravecmb by brevegrave; - sub brevecmb hookcmb by brevehook; - sub brevecmb tildecmb by brevetilde; - sub circumflexcmb acutecmb by circumflexacute; - sub circumflexcmb gravecmb by circumflexgrave; - sub circumflexcmb hookcmb by circumflexhook; - sub circumflexcmb tildecmb by circumflextilde; - # capital forms - sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; - sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; - sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; - sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; - sub brevecmb.cap acutecmb.cap by breveacute.cap; - sub brevecmb.cap gravecmb.cap by brevegrave.cap; - sub brevecmb.cap hookcmb.cap by brevehook.cap; - sub brevecmb.cap tildecmb.cap by brevetilde.cap; - sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; - sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; - sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; - sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; - } DblMarks; - - # Replace combining marks that follow a uppercase letter by their uppercase form - lookup CapitalMarks { - sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; - sub [@ltrUC] [@lcMarks]' by [@ucMarks]; - } CapitalMarks; - - # Replace letters with dotless counterparts when followed by a combining mark - lookup Dotless { - sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; - sub [i j]' [@lcMarks] by [dotlessi dotlessj]; - } Dotless; - - # Replace e ogonek with pre-drawn eogonek - lookup eogonek { - sub e ogonekcmb by eogonek; - } eogonek; - -} ccmp; - - -# ---------- -# Numerators -# ---------- - -feature numr { - sub @fig by @figNum; -} numr; - -# ------------ -# Denominators -# ------------ - -feature dnom { - sub @fig by @figDen; -} dnom; - -# ----------- -# Superscript -# ----------- - -feature sups { - sub @fig by @figSup; -} sups; - -# --------------------- -# Subscript & Inferiors -# --------------------- - -feature subs { - sub @fig by @figInf; -} subs; - -feature sinf { - sub @fig by @figInf; -} sinf; - - -# --------------------- -# Contextual Alternates -# --------------------- - -feature calt { - # shifts colon to align with math symbols when used together - - sub colon' [plus equal greater less hyphen] by colon.fig; - sub [plus equal less greater hyphen] colon' by colon.fig; - - sub colon' [colon colon.fig] by colon.fig; - sub colon.fig colon' by colon.fig; - -} calt; - - -# -------------- -# Stylistic Sets -# -------------- - -feature ss11 { - featureNames { - name "Raised Colon (Figures Only)"; # Windows English - name 1 0 0 "Raised Colon (Figures Only)"; # Mac English - }; - lookup FigureColonContextual { - sub @fig colon' @fig by colon.fig; - } FigureColonContextual; -} ss11; - -feature ss12 { - featureNames { - name "Raised Colon (Global)"; # Windows English - name 1 0 0 "Raised Colon (Global)"; # Mac English - }; - lookup FigureColon { - sub colon by colon.fig; - } FigureColon; -} ss12; - - -# -------------------- -# Stylistic Alternates -# -------------------- - -feature salt { - lookup FigureColon; # SS12 -} salt; - - -# -------------- -# All Alternates -# -------------- - -feature aalt { - sub germandbls from [germandbls uni1E9E]; - sub uni1E9E from [uni1E9E germandbls]; - sub colon from [colon colon.fig]; - sub colon.fig from [colon.fig colon]; - sub eight from [eight eight.den eight.sup eight.num eight.inf]; - sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; - sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; - sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; - sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; - sub five from [five five.inf five.num five.den five.sup]; - sub five.sup from [five.sup five five.inf five.num five.den]; - sub five.den from [five.den five.sup five five.inf five.num]; - sub five.num from [five.num five.den five.sup five five.inf]; - sub five.inf from [five.inf five.num five.den five.sup five]; - sub four from [four four.sup four.num four.den four.inf]; - sub four.inf from [four.inf four four.sup four.num four.den]; - sub four.den from [four.den four.inf four four.sup four.num]; - sub four.num from [four.num four.den four.inf four four.sup]; - sub four.sup from [four.sup four.num four.den four.inf four]; - sub nine from [nine nine.den nine.inf nine.num nine.sup]; - sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; - sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; - sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; - sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; - sub one from [one one.den one.num one.inf one.sup]; - sub one.sup from [one.sup one one.den one.num one.inf]; - sub one.inf from [one.inf one.sup one one.den one.num]; - sub one.num from [one.num one.inf one.sup one one.den]; - sub one.den from [one.den one.num one.inf one.sup one]; - sub seven from [seven seven.inf seven.num seven.sup seven.den]; - sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; - sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; - sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; - sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; - sub six from [six six.num six.sup six.den six.inf]; - sub six.inf from [six.inf six six.num six.sup six.den]; - sub six.den from [six.den six.inf six six.num six.sup]; - sub six.sup from [six.sup six.den six.inf six six.num]; - sub six.num from [six.num six.sup six.den six.inf six]; - sub three from [three three.inf three.den three.num three.sup]; - sub three.sup from [three.sup three three.inf three.den three.num]; - sub three.num from [three.num three.sup three three.inf three.den]; - sub three.den from [three.den three.num three.sup three three.inf]; - sub three.inf from [three.inf three.den three.num three.sup three]; - sub two from [two two.inf two.sup two.num two.den]; - sub two.den from [two.den two two.inf two.sup two.num]; - sub two.num from [two.num two.den two two.inf two.sup]; - sub two.sup from [two.sup two.num two.den two two.inf]; - sub two.inf from [two.inf two.sup two.num two.den two]; - sub zero from [zero zero.sup zero.num zero.den zero.inf]; - sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; - sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; - sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; - sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; -} aalt; +include(../features/shared.fea); +include(../features/aalt.fea); diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/fontinfo.plist b/sources/masters/IntelOneMono-Light-mstr.ufo/fontinfo.plist index 9c9e8051..d85db122 100644 --- a/sources/masters/IntelOneMono-Light-mstr.ufo/fontinfo.plist +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/fontinfo.plist @@ -7,7 +7,7 @@ capHeight 655 copyright - Copyright 2023 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) descender -260 familyName @@ -53,7 +53,7 @@ platformID 1 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -65,7 +65,7 @@ platformID 3 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -383,7 +383,7 @@ versionMajor 1 versionMinor - 3 + 4 xHeight 460 diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_.dot.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_.dot.glif index 6a1d4b01..d6032389 100644 --- a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_.dot.glif +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/L_.dot.glif @@ -8,7 +8,6 @@ - diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ampersand_ampersand.liga.glif new file mode 100644 index 00000000..79bce54f --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ampersand_ampersand.liga.glif @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadleft.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadleft.glif new file mode 100644 index 00000000..85b89b5e --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadleft.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadleftopen.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadleftopen.glif new file mode 100644 index 00000000..d2bac776 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadleftopen.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadright.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadright.glif new file mode 100644 index 00000000..c6f24406 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadright.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadrightopen.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadrightopen.glif new file mode 100644 index 00000000..e8fb1b0f --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/arrowheadrightopen.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciicircum_equal.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciicircum_equal.liga.glif new file mode 100644 index 00000000..ea4a0da7 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciicircum_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..ae92e737 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif new file mode 100644 index 00000000..5fcbcb6d --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_at.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_at.liga.glif new file mode 100644 index 00000000..7be6c5a0 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_at.liga.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_greater.liga.glif new file mode 100644 index 00000000..3974234c --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_greater.liga.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif new file mode 100644 index 00000000..e6a77254 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_asterisk.liga.glif new file mode 100644 index 00000000..09d49315 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_asterisk.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif new file mode 100644 index 00000000..61dcc53f --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_greater.liga.glif new file mode 100644 index 00000000..9ec608c1 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_slash.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_slash.liga.glif new file mode 100644 index 00000000..b62ca652 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/asterisk_slash.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/backslash_slash.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/backslash_slash.liga.glif new file mode 100644 index 00000000..5f448850 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/backslash_slash.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar.liga.glif new file mode 100644 index 00000000..0bb2a5a7 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_bar.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_bar.liga.glif new file mode 100644 index 00000000..f494b682 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_bar.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif new file mode 100644 index 00000000..12fdc005 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_equal.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_equal.liga.glif new file mode 100644 index 00000000..648bca6c --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_equal.start.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_equal.start.glif new file mode 100644 index 00000000..dd9f607c --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_equal.start.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_greater.liga.glif new file mode 100644 index 00000000..66e237aa --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_greater.liga.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif new file mode 100644 index 00000000..1ad6cf9e --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_hyphen.start.glif new file mode 100644 index 00000000..869f8fd0 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bar_hyphen.start.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_braceright.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_braceright.liga.glif new file mode 100644 index 00000000..baf9197d --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_braceright.liga.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bracketright.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bracketright.liga.glif new file mode 100644 index 00000000..ba3dd965 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_bracketright.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_equal.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_equal.liga.glif new file mode 100644 index 00000000..a449a55b --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_equal.start.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_equal.start.glif new file mode 100644 index 00000000..a4a82dac --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_equal.start.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_greater.liga.glif new file mode 100644 index 00000000..1d1fa0b6 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_greater.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_hyphen.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_hyphen.liga.glif new file mode 100644 index 00000000..0d181dad --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_hyphen.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_hyphen.start.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_hyphen.start.glif new file mode 100644 index 00000000..c1b3f4e6 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bar_hyphen.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/braceleft_bar.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/braceleft_bar.liga.glif new file mode 100644 index 00000000..66fcc3f3 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/braceleft_bar.liga.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bracketleft_bar.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bracketleft_bar.liga.glif new file mode 100644 index 00000000..61241904 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bracketleft_bar.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bracketright_numbersign.liga.glif new file mode 100644 index 00000000..bf8bb875 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/bracketright_numbersign.liga.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon.liga.glif new file mode 100644 index 00000000..b5b3ec69 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon_colon.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon_colon.liga.glif new file mode 100644 index 00000000..63c7c930 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon_colon.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon_equal.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon_equal.liga.glif new file mode 100644 index 00000000..5453ab90 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_colon_equal.liga.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_equal.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_equal.liga.glif new file mode 100644 index 00000000..49b3fb7f --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_greater.liga.glif new file mode 100644 index 00000000..8d722981 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_greater.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_less.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_less.liga.glif new file mode 100644 index 00000000..d1bcd060 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/colon_less.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/contents.plist b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/contents.plist index 872b0f47..140ed033 100644 --- a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/contents.plist +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/contents.plist @@ -502,6 +502,8 @@ amacron.glif ampersand ampersand.glif + ampersand_ampersand.liga + ampersand_ampersand.liga.glif aogonek aogonek.glif apostrophemod @@ -510,12 +512,40 @@ approxequal.glif aring aring.glif + arrowheadleft + arrowheadleft.glif + arrowheadleftopen + arrowheadleftopen.glif + arrowheadright + arrowheadright.glif + arrowheadrightopen + arrowheadrightopen.glif asciicircum asciicircum.glif + asciicircum_equal.liga + asciicircum_equal.liga.glif asciitilde asciitilde.glif + asciitilde_asciitilde.liga + asciitilde_asciitilde.liga.glif + asciitilde_asciitilde_greater + asciitilde_asciitilde_greater.glif + asciitilde_at.liga + asciitilde_at.liga.glif + asciitilde_greater.liga + asciitilde_greater.liga.glif + asciitilde_hyphen.liga + asciitilde_hyphen.liga.glif asterisk asterisk.glif + asterisk_asterisk.liga + asterisk_asterisk.liga.glif + asterisk_asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga.glif + asterisk_greater.liga + asterisk_greater.liga.glif + asterisk_slash.liga + asterisk_slash.liga.glif at at.glif atilde @@ -524,22 +554,60 @@ b.glif backslash backslash.glif + backslash_slash.liga + backslash_slash.liga.glif bahtthai bahtthai.glif bahtthai.bar bahtthai.bar.glif bar bar.glif + bar_bar.liga + bar_bar.liga.glif + bar_bar_bar.liga + bar_bar_bar.liga.glif + bar_bar_bar_greater.liga + bar_bar_bar_greater.liga.glif + bar_bar_equal.liga + bar_bar_equal.liga.glif + bar_bar_equal.start + bar_bar_equal.start.glif + bar_bar_greater.liga + bar_bar_greater.liga.glif + bar_bar_hyphen.liga + bar_bar_hyphen.liga.glif + bar_bar_hyphen.start + bar_bar_hyphen.start.glif + bar_braceright.liga + bar_braceright.liga.glif + bar_bracketright.liga + bar_bracketright.liga.glif + bar_equal.liga + bar_equal.liga.glif + bar_equal.start + bar_equal.start.glif + bar_greater.liga + bar_greater.liga.glif + bar_hyphen.liga + bar_hyphen.liga.glif + bar_hyphen.start + bar_hyphen.start.glif blinebelow blinebelow.glif braceleft braceleft.glif + braceleft_bar.liga + braceleft_bar.liga.glif braceright braceright.glif bracketleft bracketleft.glif + bracketleft_bar.liga + bracketleft_bar.liga.glif bracketright bracketright.glif + bracketright_numbersign.liga + bracketright_numbersign.liga.glif breve breve.glif breveacute @@ -620,6 +688,18 @@ colon.glif colon.fig colon.fig.glif + colon_colon.liga + colon_colon.liga.glif + colon_colon_colon.liga + colon_colon_colon.liga.glif + colon_colon_equal.liga + colon_colon_equal.liga.glif + colon_equal.liga + colon_equal.liga.glif + colon_greater.liga + colon_greater.liga.glif + colon_less.liga + colon_less.liga.glif comma comma.glif commaaboverightcmb @@ -636,8 +716,32 @@ dagger.glif daggerdbl daggerdbl.glif + darkshade + darkshade.glif + dbldnhorzbxd + dbldnhorzbxd.glif + dbldnleftbxd + dbldnleftbxd.glif + dbldnrightbxd + dbldnrightbxd.glif + dblhorzbxd + dblhorzbxd.glif dblprimemod dblprimemod.glif + dbluphorzbxd + dbluphorzbxd.glif + dblupleftbxd + dblupleftbxd.glif + dbluprightbxd + dbluprightbxd.glif + dblvertbxd + dblvertbxd.glif + dblverthorzbxd + dblverthorzbxd.glif + dblvertleftbxd + dblvertleftbxd.glif + dblvertrightbxd + dblvertrightbxd.glif dcaron dcaron.glif dcircumflexbelow @@ -676,10 +780,68 @@ divide.glif dlinebelow dlinebelow.glif + dndblhorzsngbxd + dndblhorzsngbxd.glif + dndblleftsngbxd + dndblleftsngbxd.glif + dndblrightsngbxd + dndblrightsngbxd.glif + dneighthblock + dneighthblock.glif + dnfiveeighthsblock + dnfiveeighthsblock.glif + dnhalfblock + dnhalfblock.glif + dnheavyhorzlightbxd + dnheavyhorzlightbxd.glif + dnheavyleftlightbxd + dnheavyleftlightbxd.glif + dnheavyleftuplightbxd + dnheavyleftuplightbxd.glif + dnheavyrightlightbxd + dnheavyrightlightbxd.glif + dnheavyrightuplightbxd + dnheavyrightuplightbxd.glif + dnheavyuphorzlightbxd + dnheavyuphorzlightbxd.glif + dnleftquadrant + dnleftquadrant.glif + dnlighthorzheavybxd + dnlighthorzheavybxd.glif + dnlightleftheavybxd + dnlightleftheavybxd.glif + dnlightleftupheavybxd + dnlightleftupheavybxd.glif + dnlightrightheavybxd + dnlightrightheavybxd.glif + dnlightrightupheavybxd + dnlightrightupheavybxd.glif + dnlightuphorzheavybxd + dnlightuphorzheavybxd.glif + dnquarterblock + dnquarterblock.glif + dnrightquadrant + dnrightquadrant.glif + dnseveneighthsblock + dnseveneighthsblock.glif + dnsnghorzdblbxd + dnsnghorzdblbxd.glif + dnsngleftdblbxd + dnsngleftdblbxd.glif + dnsngrightdblbxd + dnsngrightdblbxd.glif + dnthreeeighthsblock + dnthreeeighthsblock.glif + dnthreequartersblock + dnthreequartersblock.glif dollar dollar.glif dollar.bar dollar.bar.glif + dollar_greater.liga + dollar_greater.liga.glif + dollar_greater.ligabar + dollar_greater.ligabar.glif dong dong.glif dotaccent @@ -748,12 +910,86 @@ eogonek.glif equal equal.glif + equal.end + equal.end.glif + equal.middle + equal.middle.glif + equal.start + equal.start.glif + equal_asciitilde.liga + equal_asciitilde.liga.glif + equal_bar.end + equal_bar.end.glif + equal_bar.liga + equal_bar.liga.glif + equal_bar_bar.end + equal_bar_bar.end.glif + equal_bar_bar.liga + equal_bar_bar.liga.glif + equal_bar_bar_equal.middle + equal_bar_bar_equal.middle.glif + equal_bar_equal.middle + equal_bar_equal.middle.glif + equal_colon_equal.middle + equal_colon_equal.middle.glif + equal_equal.liga + equal_equal.liga.glif + equal_equal_equal.liga + equal_equal_equal.liga.glif + equal_exclam_equal.middle + equal_exclam_equal.middle.glif + equal_greater.end + equal_greater.end.glif + equal_greater.liga + equal_greater.liga.glif + equal_greater_equal.middle + equal_greater_equal.middle.glif + equal_greater_greater.end + equal_greater_greater.end.glif + equal_greater_greater.liga + equal_greater_greater.liga.glif + equal_greater_greater_equal.m + equal_greater_greater_equal.m.glif + equal_less.end + equal_less.end.glif + equal_less.liga + equal_less.liga.glif + equal_less_equal.middle + equal_less_equal.middle.glif + equal_less_less.end + equal_less_less.end.glif + equal_less_less.liga + equal_less_less.liga.glif + equal_less_less_equal.middle + equal_less_less_equal.middle.glif + equal_slash.end + equal_slash.end.glif + equal_slash.liga + equal_slash.liga.glif + equal_slash_equal.middle + equal_slash_equal.middle.glif + equal_slash_slash.end + equal_slash_slash.end.glif + equal_slash_slash.liga + equal_slash_slash.liga.glif + equal_slash_slash_equal.middle + equal_slash_slash_equal.middle.glif eth eth.glif etilde etilde.glif exclam exclam.glif + exclam_asciitilde.liga + exclam_asciitilde.liga.glif + exclam_equal.liga + exclam_equal.liga.glif + exclam_equal_equal.liga + exclam_equal_equal.liga.glif + exclam_exclam.liga + exclam_exclam.liga.glif + exclam_exclam_period.liga + exclam_exclam_period.liga.glif exclamdown exclamdown.glif f @@ -788,6 +1024,8 @@ fracbar.glif fraction fraction.glif + fullblock + fullblock.glif g g.glif gbreve @@ -812,6 +1050,34 @@ gravecmb.cap.glif greater greater.glif + greater_colon.liga + greater_colon.liga.glif + greater_equal + greater_equal.glif + greater_equal.liga + greater_equal.liga.glif + greater_equal.start + greater_equal.start.glif + greater_equal_greater.liga + greater_equal_greater.liga.glif + greater_greater.liga + greater_greater.liga.glif + greater_greater_equal.liga + greater_greater_equal.liga.glif + greater_greater_equal.start + greater_greater_equal.start.glif + greater_greater_greater.liga + greater_greater_greater.liga.glif + greater_greater_hyphen.liga + greater_greater_hyphen.liga.glif + greater_greater_hyphen.start + greater_greater_hyphen.start.glif + greater_hyphen.liga + greater_hyphen.liga.glif + greater_hyphen.start + greater_hyphen.start.glif + greater_hyphen_greater.liga + greater_hyphen_greater.liga.glif greaterequal greaterequal.glif guillemetleft @@ -834,6 +1100,52 @@ hcircumflex.glif hdotbelow hdotbelow.glif + heavydbldashhorzbxd + heavydbldashhorzbxd.glif + heavydbldashvertbxd + heavydbldashvertbxd.glif + heavydnbxd + heavydnbxd.glif + heavydnhorzbxd + heavydnhorzbxd.glif + heavydnleftbxd + heavydnleftbxd.glif + heavydnrightbxd + heavydnrightbxd.glif + heavyhorzbxd + heavyhorzbxd.glif + heavyleftbxd + heavyleftbxd.glif + heavyleftlightrightbxd + heavyleftlightrightbxd.glif + heavyquaddashhorzbxd + heavyquaddashhorzbxd.glif + heavyquaddashvertbxd + heavyquaddashvertbxd.glif + heavyrightbxd + heavyrightbxd.glif + heavytrpldashhorzbxd + heavytrpldashhorzbxd.glif + heavytrpldashvertbxd + heavytrpldashvertbxd.glif + heavyupbxd + heavyupbxd.glif + heavyuphorzbxd + heavyuphorzbxd.glif + heavyupleftbxd + heavyupleftbxd.glif + heavyuplightdnbxd + heavyuplightdnbxd.glif + heavyuprightbxd + heavyuprightbxd.glif + heavyvertbxd + heavyvertbxd.glif + heavyverthorzbxd + heavyverthorzbxd.glif + heavyvertleftbxd + heavyvertleftbxd.glif + heavyvertrightbxd + heavyvertrightbxd.glif hlinebelow hlinebelow.glif hookcmb @@ -850,6 +1162,54 @@ hungarumlautcmb.cap.glif hyphen hyphen.glif + hyphen.end + hyphen.end.glif + hyphen.middle + hyphen.middle.glif + hyphen.start + hyphen.start.glif + hyphen_asciitilde.liga + hyphen_asciitilde.liga.glif + hyphen_bar.end + hyphen_bar.end.glif + hyphen_bar.liga + hyphen_bar.liga.glif + hyphen_bar_bar.end + hyphen_bar_bar.end.glif + hyphen_bar_bar.liga + hyphen_bar_bar.liga.glif + hyphen_bar_bar_hyphen.middle + hyphen_bar_bar_hyphen.middle.glif + hyphen_bar_hyphen.middle + hyphen_bar_hyphen.middle.glif + hyphen_greater.end + hyphen_greater.end.glif + hyphen_greater.liga + hyphen_greater.liga.glif + hyphen_greater_greater.end + hyphen_greater_greater.end.glif + hyphen_greater_greater.liga + hyphen_greater_greater.liga.glif + hyphen_greater_greater_hyphen.m + hyphen_greater_greater_hyphen.m.glif + hyphen_greater_hyphen.middle + hyphen_greater_hyphen.middle.glif + hyphen_hyphen.liga + hyphen_hyphen.liga.glif + hyphen_hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga.glif + hyphen_less.end + hyphen_less.end.glif + hyphen_less.liga + hyphen_less.liga.glif + hyphen_less_hyphen.middle + hyphen_less_hyphen.middle.glif + hyphen_less_less.end + hyphen_less_less.end.glif + hyphen_less_less.liga + hyphen_less_less.liga.glif + hyphen_less_less_hyphen.middle + hyphen_less_less_hyphen.middle.glif i i.glif iacute @@ -904,10 +1264,174 @@ lcommaaccent.glif ldotbelow ldotbelow.glif + leftdnheavyrightuplightbxd + leftdnheavyrightuplightbxd.glif + lefteighthblock + lefteighthblock.glif + leftfiveeighthsblock + leftfiveeighthsblock.glif + lefthalfblock + lefthalfblock.glif + leftheavyrightdnlightbxd + leftheavyrightdnlightbxd.glif + leftheavyrightuplightbxd + leftheavyrightuplightbxd.glif + leftheavyrightvertlightbxd + leftheavyrightvertlightbxd.glif + leftlightrightdnheavybxd + leftlightrightdnheavybxd.glif + leftlightrightupheavybxd + leftlightrightupheavybxd.glif + leftlightrightvertheavybxd + leftlightrightvertheavybxd.glif + leftquarterblock + leftquarterblock.glif + leftseveneighthsblock + leftseveneighthsblock.glif + leftthreeeighthsblock + leftthreeeighthsblock.glif + leftthreequartersblock + leftthreequartersblock.glif + leftupheavyrightdnlightbxd + leftupheavyrightdnlightbxd.glif less less.glif + less_asciitilde.liga + less_asciitilde.liga.glif + less_asciitilde_asciitilde.liga + less_asciitilde_asciitilde.liga.glif + less_asciitilde_greater.liga + less_asciitilde_greater.liga.glif + less_asterisk.liga + less_asterisk.liga.glif + less_asterisk_greater.liga + less_asterisk_greater.liga.glif + less_bar.liga + less_bar.liga.glif + less_bar_bar.liga + less_bar_bar.liga.glif + less_bar_bar_bar.liga + less_bar_bar_bar.liga.glif + less_bar_greater.liga + less_bar_greater.liga.glif + less_colon.liga + less_colon.liga.glif + less_dollar.liga + less_dollar.liga.glif + less_dollar.ligabar + less_dollar.ligabar.glif + less_dollar_greater.liga + less_dollar_greater.liga.glif + less_dollar_greater.ligabar + less_dollar_greater.ligabar.glif + less_equal + less_equal.glif + less_equal.liga + less_equal.liga.glif + less_equal.start + less_equal.start.glif + less_equal_greater.liga + less_equal_greater.liga.glif + less_equal_less.liga + less_equal_less.liga.glif + less_exclam_hyphen_hyphen.liga + less_exclam_hyphen_hyphen.liga.glif + less_greater.liga + less_greater.liga.glif + less_hyphen.liga + less_hyphen.liga.glif + less_hyphen.start + less_hyphen.start.glif + less_hyphen_greater.liga + less_hyphen_greater.liga.glif + less_hyphen_less.liga + less_hyphen_less.liga.glif + less_less.liga + less_less.liga.glif + less_less_equal.liga + less_less_equal.liga.glif + less_less_equal.start + less_less_equal.start.glif + less_less_hyphen.liga + less_less_hyphen.liga.glif + less_less_hyphen.start + less_less_hyphen.start.glif + less_less_less.liga + less_less_less.liga.glif + less_plus.liga + less_plus.liga.glif + less_plus_greater.liga + less_plus_greater.liga.glif + less_slash.liga + less_slash.liga.glif + less_slash_greater.liga + less_slash_greater.liga.glif lessequal lessequal.glif + lightarcdnleftbxd + lightarcdnleftbxd.glif + lightarcdnrightbxd + lightarcdnrightbxd.glif + lightarcupleftbxd + lightarcupleftbxd.glif + lightarcuprightbxd + lightarcuprightbxd.glif + lightdbldashhorzbxd + lightdbldashhorzbxd.glif + lightdbldashvertbxd + lightdbldashvertbxd.glif + lightdiagcrossbxd + lightdiagcrossbxd.glif + lightdiagupleftdnrightbxd + lightdiagupleftdnrightbxd.glif + lightdiaguprightdnleftbxd + lightdiaguprightdnleftbxd.glif + lightdnbxd + lightdnbxd.glif + lightdnhorzbxd + lightdnhorzbxd.glif + lightdnleftbxd + lightdnleftbxd.glif + lightdnrightbxd + lightdnrightbxd.glif + lighthorzbxd + lighthorzbxd.glif + lightleftbxd + lightleftbxd.glif + lightleftheavyrightbxd + lightleftheavyrightbxd.glif + lightquaddashhorzbxd + lightquaddashhorzbxd.glif + lightquaddashvertbxd + lightquaddashvertbxd.glif + lightrightbxd + lightrightbxd.glif + lightshade + lightshade.glif + lighttrpldashhorzbxd + lighttrpldashhorzbxd.glif + lighttrpldashvertbxd + lighttrpldashvertbxd.glif + lightupbxd + lightupbxd.glif + lightupheavydnbxd + lightupheavydnbxd.glif + lightuphorzbxd + lightuphorzbxd.glif + lightupleftbxd + lightupleftbxd.glif + lightuprightbxd + lightuprightbxd.glif + lightvertbxd + lightvertbxd.glif + lightverthorzbxd + lightverthorzbxd.glif + lightvertleftbxd + lightvertleftbxd.glif + lightvertrightbxd + lightvertrightbxd.glif + ligspacer + ligspacer.glif llinebelow llinebelow.glif lmacrondotbelow @@ -932,6 +1456,8 @@ mdotaccent.glif mdotbelow mdotbelow.glif + mediumshade + mediumshade.glif middotcat middotcat.glif middotcat.cap @@ -980,6 +1506,30 @@ ntilde.glif numbersign numbersign.glif + numbersign.end + numbersign.end.glif + numbersign.middle + numbersign.middle.glif + numbersign.start + numbersign.start.glif + numbersign_braceleft.liga + numbersign_braceleft.liga.glif + numbersign_bracketleft.liga + numbersign_bracketleft.liga.glif + numbersign_colon.liga + numbersign_colon.liga.glif + numbersign_equal.liga + numbersign_equal.liga.glif + numbersign_exclam.liga + numbersign_exclam.liga.glif + numbersign_parenleft.liga + numbersign_parenleft.liga.glif + numbersign_question.liga + numbersign_question.liga.glif + numbersign_underscore.liga + numbersign_underscore.liga.glif + numbersign_underscore_parenleft + numbersign_underscore_parenleft.glif o o.glif oacute @@ -1076,8 +1626,24 @@ parenright.glif percent percent.glif + percent_percent.liga + percent_percent.liga.glif period period.glif + period_equal.liga + period_equal.liga.glif + period_hyphen.liga + period_hyphen.liga.glif + period_period.liga + period_period.liga.glif + period_period_equal.liga + period_period_equal.liga.glif + period_period_less.liga + period_period_less.liga.glif + period_period_period.liga + period_period_period.liga.glif + period_question.liga + period_question.liga.glif periodcentered periodcentered.glif peso @@ -1086,6 +1652,12 @@ peso.bar.glif plus plus.glif + plus_greater.liga + plus_greater.liga.glif + plus_plus.liga + plus_plus.liga.glif + plus_plus_plus.liga + plus_plus_plus.liga.glif plusminus plusminus.glif primemod @@ -1096,6 +1668,14 @@ q.glif question question.glif + question_colon.liga + question_colon.liga.glif + question_equal.liga + question_equal.liga.glif + question_period.liga + question_period.liga.glif + question_question.liga + question_question.liga.glif questiondown questiondown.glif quotedbl @@ -1128,6 +1708,26 @@ rdotbelow.glif registered registered.glif + rightdnheavyleftuplightbxd + rightdnheavyleftuplightbxd.glif + righteighthblock + righteighthblock.glif + righthalfblock + righthalfblock.glif + rightheavyleftdnlightbxd + rightheavyleftdnlightbxd.glif + rightheavyleftuplightbxd + rightheavyleftuplightbxd.glif + rightheavyleftvertlightbxd + rightheavyleftvertlightbxd.glif + rightlightleftdnheavybxd + rightlightleftdnheavybxd.glif + rightlightleftupheavybxd + rightlightleftupheavybxd.glif + rightlightleftvertheavybxd + rightlightleftvertheavybxd.glif + rightupheavyleftdnlightbxd + rightupheavyleftdnlightbxd.glif ring ring.glif ringcmb @@ -1162,6 +1762,8 @@ section.glif semicolon semicolon.glif + semicolon_semicolon.liga + semicolon_semicolon.liga.glif servicemark servicemark.glif seven @@ -1188,6 +1790,24 @@ six.sup.glif slash slash.glif + slash_asterisk.liga + slash_asterisk.liga.glif + slash_backslash.liga + slash_backslash.liga.glif + slash_equal.liga + slash_equal.liga.glif + slash_equal.start + slash_equal.start.glif + slash_greater.liga + slash_greater.liga.glif + slash_slash.liga + slash_slash.liga.glif + slash_slash_equal.liga + slash_slash_equal.liga.glif + slash_slash_equal.start + slash_slash_equal.start.glif + slash_slash_slash.liga + slash_slash_slash.liga.glif space space.glif sterling @@ -1294,6 +1914,14 @@ umacron.glif underscore underscore.glif + underscore.end + underscore.end.glif + underscore.middle + underscore.middle.glif + underscore.start + underscore.start.glif + underscore_bar_underscore.m + underscore_bar_underscore.m.glif uni00A0 uni00A_0.glif uni0326 @@ -1308,10 +1936,88 @@ uni20B_A_.glif uni20BD uni20B_D_.glif + uni2610 + uni2610.glif + uni2611 + uni2611.glif + uni2612 + uni2612.glif + uni2713 + uni2713.glif uniA788 uniA_788.glif + uniE0A0 + uniE_0A_0.glif + uniE0A1 + uniE_0A_1.glif + uniE0A2 + uniE_0A_2.glif + uniE0B0 + uniE_0B_0.glif + uniE0B1 + uniE_0B_1.glif + uniE0B2 + uniE_0B_2.glif + uniE0B3 + uniE_0B_3.glif uogonek uogonek.glif + updblhorzsngbxd + updblhorzsngbxd.glif + updblleftsngbxd + updblleftsngbxd.glif + updblrightsngbxd + updblrightsngbxd.glif + upeighthblock + upeighthblock.glif + uphalfblock + uphalfblock.glif + upheavydnhorzlightbxd + upheavydnhorzlightbxd.glif + upheavyhorzlightbxd + upheavyhorzlightbxd.glif + upheavyleftdnlightbxd + upheavyleftdnlightbxd.glif + upheavyleftlightbxd + upheavyleftlightbxd.glif + upheavyrightdnlightbxd + upheavyrightdnlightbxd.glif + upheavyrightlightbxd + upheavyrightlightbxd.glif + upleftdnleftdnrightquadrant + upleftdnleftdnrightquadrant.glif + upleftdnrightquadrant + upleftdnrightquadrant.glif + upleftquadrant + upleftquadrant.glif + upleftuprightdnleftquadrant + upleftuprightdnleftquadrant.glif + upleftuprightdnrightquadrant + upleftuprightdnrightquadrant.glif + uplightdnhorzheavybxd + uplightdnhorzheavybxd.glif + uplighthorzheavybxd + uplighthorzheavybxd.glif + uplightleftdnheavybxd + uplightleftdnheavybxd.glif + uplightleftheavybxd + uplightleftheavybxd.glif + uplightrightdnheavybxd + uplightrightdnheavybxd.glif + uplightrightheavybxd + uplightrightheavybxd.glif + uprightdnleftdnrightquadrant + uprightdnleftdnrightquadrant.glif + uprightdnleftquadrant + uprightdnleftquadrant.glif + uprightquadrant + uprightquadrant.glif + upsnghorzdblbxd + upsnghorzdblbxd.glif + upsngleftdblbxd + upsngleftdblbxd.glif + upsngrightdblbxd + upsngrightdblbxd.glif uring uring.glif utilde @@ -1320,12 +2026,38 @@ v.glif vdotbelow vdotbelow.glif + vertdblhorzsngbxd + vertdblhorzsngbxd.glif + vertdblleftsngbxd + vertdblleftsngbxd.glif + vertdblrightsngbxd + vertdblrightsngbxd.glif + vertheavyhorzlightbxd + vertheavyhorzlightbxd.glif + vertheavyleftlightbxd + vertheavyleftlightbxd.glif + vertheavyrightlightbxd + vertheavyrightlightbxd.glif verticallinelowmod verticallinelowmod.glif verticallinemod verticallinemod.glif + vertlighthorzheavybxd + vertlighthorzheavybxd.glif + vertlightleftheavybxd + vertlightleftheavybxd.glif + vertlightrightheavybxd + vertlightrightheavybxd.glif + vertsnghorzdblbxd + vertsnghorzdblbxd.glif + vertsngleftdblbxd + vertsngleftdblbxd.glif + vertsngrightdblbxd + vertsngrightdblbxd.glif w w.glif + w_w_w.liga + w_w_w.liga.glif wacute wacute.glif wcircumflex diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/darkshade.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/darkshade.glif new file mode 100644 index 00000000..a56d0f0a --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/darkshade.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbldnhorzbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbldnhorzbxd.glif new file mode 100644 index 00000000..c9659c7d --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbldnhorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbldnleftbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbldnleftbxd.glif new file mode 100644 index 00000000..c1cb1a5d --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbldnleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbldnrightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbldnrightbxd.glif new file mode 100644 index 00000000..b0eb33d0 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbldnrightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblhorzbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblhorzbxd.glif new file mode 100644 index 00000000..e43c87cc --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbluphorzbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbluphorzbxd.glif new file mode 100644 index 00000000..a90d518d --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbluphorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblupleftbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblupleftbxd.glif new file mode 100644 index 00000000..44c1f08d --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblupleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbluprightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbluprightbxd.glif new file mode 100644 index 00000000..acaeaa92 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dbluprightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblvertbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblvertbxd.glif new file mode 100644 index 00000000..63ba3930 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblverthorzbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblverthorzbxd.glif new file mode 100644 index 00000000..4f0b225b --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblverthorzbxd.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblvertleftbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblvertleftbxd.glif new file mode 100644 index 00000000..b60eb844 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblvertleftbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblvertrightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblvertrightbxd.glif new file mode 100644 index 00000000..3e169b8f --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dblvertrightbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dndblhorzsngbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dndblhorzsngbxd.glif new file mode 100644 index 00000000..fa4f58c6 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dndblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dndblleftsngbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dndblleftsngbxd.glif new file mode 100644 index 00000000..f5e60866 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dndblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dndblrightsngbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dndblrightsngbxd.glif new file mode 100644 index 00000000..f299a0ec --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dndblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dneighthblock.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dneighthblock.glif new file mode 100644 index 00000000..ff791c74 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dneighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnfiveeighthsblock.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnfiveeighthsblock.glif new file mode 100644 index 00000000..99bd1498 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnhalfblock.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnhalfblock.glif new file mode 100644 index 00000000..001cf3fb --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnhalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif new file mode 100644 index 00000000..37f7e2ee --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyleftlightbxd.glif new file mode 100644 index 00000000..04054543 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif new file mode 100644 index 00000000..a720dcc7 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyrightlightbxd.glif new file mode 100644 index 00000000..9ba6704c --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif new file mode 100644 index 00000000..815a695d --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif new file mode 100644 index 00000000..f5ba7604 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnleftquadrant.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnleftquadrant.glif new file mode 100644 index 00000000..42729338 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlighthorzheavybxd.glif new file mode 100644 index 00000000..28b25c49 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightleftheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightleftheavybxd.glif new file mode 100644 index 00000000..59a51b0f --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightleftupheavybxd.glif new file mode 100644 index 00000000..70904268 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightrightheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightrightheavybxd.glif new file mode 100644 index 00000000..b4c6c636 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightrightupheavybxd.glif new file mode 100644 index 00000000..c5576d28 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif new file mode 100644 index 00000000..22f12436 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnquarterblock.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnquarterblock.glif new file mode 100644 index 00000000..c2180b50 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnrightquadrant.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnrightquadrant.glif new file mode 100644 index 00000000..9858382e --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnrightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnseveneighthsblock.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnseveneighthsblock.glif new file mode 100644 index 00000000..ecdac3da --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnsnghorzdblbxd.glif new file mode 100644 index 00000000..ecff9c4d --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnsngleftdblbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnsngleftdblbxd.glif new file mode 100644 index 00000000..9053ebaf --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnsngrightdblbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnsngrightdblbxd.glif new file mode 100644 index 00000000..d9699e08 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnthreeeighthsblock.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnthreeeighthsblock.glif new file mode 100644 index 00000000..7febe2aa --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnthreequartersblock.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnthreequartersblock.glif new file mode 100644 index 00000000..a79dae14 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dnthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dollar_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dollar_greater.liga.glif new file mode 100644 index 00000000..d9ab3b3b --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dollar_greater.liga.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dollar_greater.ligabar.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dollar_greater.ligabar.glif new file mode 100644 index 00000000..c286d0a8 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/dollar_greater.ligabar.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal.end.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal.end.glif new file mode 100644 index 00000000..5750188d --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal.middle.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal.middle.glif new file mode 100644 index 00000000..4445e7fb --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal.start.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal.start.glif new file mode 100644 index 00000000..9bf1603d --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_asciitilde.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_asciitilde.liga.glif new file mode 100644 index 00000000..772359c3 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_asciitilde.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar.end.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar.end.glif new file mode 100644 index 00000000..5e772c49 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar.end.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar.liga.glif new file mode 100644 index 00000000..fb1f787a --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar.end.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar.end.glif new file mode 100644 index 00000000..2413fc99 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar.end.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar.liga.glif new file mode 100644 index 00000000..fff170ae --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif new file mode 100644 index 00000000..68e58dc4 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_equal.middle.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_equal.middle.glif new file mode 100644 index 00000000..c164680f --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_bar_equal.middle.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_colon_equal.middle.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_colon_equal.middle.glif new file mode 100644 index 00000000..5301d00a --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_colon_equal.middle.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_equal.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_equal.liga.glif new file mode 100644 index 00000000..6a9bdc0e --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_equal.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_equal_equal.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_equal_equal.liga.glif new file mode 100644 index 00000000..7da8a5f8 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_equal_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_exclam_equal.middle.glif new file mode 100644 index 00000000..25b58eb0 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_exclam_equal.middle.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater.end.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater.end.glif new file mode 100644 index 00000000..20f29421 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater.end.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater.liga.glif new file mode 100644 index 00000000..e21d0fd6 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_equal.middle.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_equal.middle.glif new file mode 100644 index 00000000..0ef4b41d --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_equal.middle.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater.end.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater.end.glif new file mode 100644 index 00000000..8103cb69 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater.end.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater.liga.glif new file mode 100644 index 00000000..78de8bbc --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif new file mode 100644 index 00000000..889b011d --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less.end.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less.end.glif new file mode 100644 index 00000000..de383845 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less.end.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less.liga.glif new file mode 100644 index 00000000..39949a4b --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_equal.middle.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_equal.middle.glif new file mode 100644 index 00000000..7b84b724 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_equal.middle.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less.end.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less.end.glif new file mode 100644 index 00000000..a64ebf49 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less.end.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less.liga.glif new file mode 100644 index 00000000..3255a6f8 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less_equal.middle.glif new file mode 100644 index 00000000..db7d4d86 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_less_less_equal.middle.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash.end.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash.end.glif new file mode 100644 index 00000000..3d85664e --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash.end.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash.liga.glif new file mode 100644 index 00000000..396b6644 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_equal.middle.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_equal.middle.glif new file mode 100644 index 00000000..59df91ec --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_equal.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash.end.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash.end.glif new file mode 100644 index 00000000..e5fd2afc --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash.end.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash.liga.glif new file mode 100644 index 00000000..b61f4590 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif new file mode 100644 index 00000000..67a47394 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_asciitilde.liga.glif new file mode 100644 index 00000000..8077ce1b --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_asciitilde.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_equal.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_equal.liga.glif new file mode 100644 index 00000000..2e4531b8 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_equal_equal.liga.glif new file mode 100644 index 00000000..b06b9676 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_equal_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_exclam.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_exclam.liga.glif new file mode 100644 index 00000000..30253af4 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_exclam.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_exclam_period.liga.glif new file mode 100644 index 00000000..ba1379e0 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/exclam_exclam_period.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/fullblock.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/fullblock.glif new file mode 100644 index 00000000..2c547d1b --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/fullblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_colon.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_colon.liga.glif new file mode 100644 index 00000000..22a62769 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_colon.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.glif new file mode 100644 index 00000000..4a313b8a --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.liga.glif new file mode 100644 index 00000000..810c5e34 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.start.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.start.glif new file mode 100644 index 00000000..1affffd0 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal.start.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal_greater.liga.glif new file mode 100644 index 00000000..eeca7ca4 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_equal_greater.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater.liga.glif new file mode 100644 index 00000000..498eb945 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_equal.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_equal.liga.glif new file mode 100644 index 00000000..3ede15c0 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_equal.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_equal.start.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_equal.start.glif new file mode 100644 index 00000000..d03238c1 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_equal.start.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_greater.liga.glif new file mode 100644 index 00000000..eb4cdb6c --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_greater.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif new file mode 100644 index 00000000..8201f2c3 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_hyphen.start.glif new file mode 100644 index 00000000..ff640638 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_greater_hyphen.start.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen.liga.glif new file mode 100644 index 00000000..d9bc676b --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen.start.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen.start.glif new file mode 100644 index 00000000..cc978176 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif new file mode 100644 index 00000000..d6d36dfc --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydbldashhorzbxd.glif new file mode 100644 index 00000000..702827d8 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydbldashvertbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydbldashvertbxd.glif new file mode 100644 index 00000000..6aa8055f --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydnbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydnbxd.glif new file mode 100644 index 00000000..f44369da --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydnhorzbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydnhorzbxd.glif new file mode 100644 index 00000000..1a9c562c --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydnleftbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydnleftbxd.glif new file mode 100644 index 00000000..dddb8d03 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydnrightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydnrightbxd.glif new file mode 100644 index 00000000..22a584aa --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavydnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyhorzbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyhorzbxd.glif new file mode 100644 index 00000000..618372ad --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyhorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyleftbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyleftbxd.glif new file mode 100644 index 00000000..aa0ed90a --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyleftlightrightbxd.glif new file mode 100644 index 00000000..abd61ef5 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyleftlightrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif new file mode 100644 index 00000000..42e19747 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyquaddashvertbxd.glif new file mode 100644 index 00000000..04e9430a --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyrightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyrightbxd.glif new file mode 100644 index 00000000..d6b930a4 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif new file mode 100644 index 00000000..8c33263a --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavytrpldashvertbxd.glif new file mode 100644 index 00000000..332aa0b7 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavytrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyupbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyupbxd.glif new file mode 100644 index 00000000..88706f34 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyuphorzbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyuphorzbxd.glif new file mode 100644 index 00000000..644bd3c1 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyupleftbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyupleftbxd.glif new file mode 100644 index 00000000..88a43f59 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyuplightdnbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyuplightdnbxd.glif new file mode 100644 index 00000000..98585f3c --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyuplightdnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyuprightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyuprightbxd.glif new file mode 100644 index 00000000..12eebf8b --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertbxd.glif new file mode 100644 index 00000000..91405da0 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyverthorzbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyverthorzbxd.glif new file mode 100644 index 00000000..b8d84bd3 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertleftbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertleftbxd.glif new file mode 100644 index 00000000..dcb956bc --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertrightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertrightbxd.glif new file mode 100644 index 00000000..4d6049c0 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/heavyvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.end.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.end.glif new file mode 100644 index 00000000..01fb51c1 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.middle.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.middle.glif new file mode 100644 index 00000000..7c0177ae --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.start.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.start.glif new file mode 100644 index 00000000..9abbab34 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif new file mode 100644 index 00000000..58642007 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar.end.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar.end.glif new file mode 100644 index 00000000..713ea9db --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar.liga.glif new file mode 100644 index 00000000..4dd99f98 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar.end.glif new file mode 100644 index 00000000..7ee3d708 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar.end.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif new file mode 100644 index 00000000..b4737917 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif new file mode 100644 index 00000000..a6c18801 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif new file mode 100644 index 00000000..6c365255 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater.end.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater.end.glif new file mode 100644 index 00000000..3c3ca5ea --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater.liga.glif new file mode 100644 index 00000000..06f6cdf8 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater.end.glif new file mode 100644 index 00000000..190d6e61 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater.end.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif new file mode 100644 index 00000000..3f322857 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif new file mode 100644 index 00000000..512e4ab8 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif new file mode 100644 index 00000000..bfbfd612 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_hyphen.liga.glif new file mode 100644 index 00000000..6f8fac00 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_hyphen.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..7c9168ee --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less.end.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less.end.glif new file mode 100644 index 00000000..f60c1d21 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less.end.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less.liga.glif new file mode 100644 index 00000000..10b44714 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif new file mode 100644 index 00000000..56407f2b --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less.end.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less.end.glif new file mode 100644 index 00000000..9d272289 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less.end.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less.liga.glif new file mode 100644 index 00000000..491199db --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif new file mode 100644 index 00000000..7b3ed492 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif new file mode 100644 index 00000000..2a51a287 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lefteighthblock.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lefteighthblock.glif new file mode 100644 index 00000000..8d44dad4 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lefteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftfiveeighthsblock.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftfiveeighthsblock.glif new file mode 100644 index 00000000..0eb9ccfc --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lefthalfblock.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lefthalfblock.glif new file mode 100644 index 00000000..325c05f6 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lefthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif new file mode 100644 index 00000000..caada6c8 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif new file mode 100644 index 00000000..8b33bec2 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif new file mode 100644 index 00000000..3b56b96e --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif new file mode 100644 index 00000000..f32d07c0 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightupheavybxd.glif new file mode 100644 index 00000000..9fc34b5b --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif new file mode 100644 index 00000000..598f7689 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftquarterblock.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftquarterblock.glif new file mode 100644 index 00000000..036dad83 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftseveneighthsblock.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftseveneighthsblock.glif new file mode 100644 index 00000000..74b69747 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftthreeeighthsblock.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftthreeeighthsblock.glif new file mode 100644 index 00000000..e5c4283a --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftthreequartersblock.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftthreequartersblock.glif new file mode 100644 index 00000000..5ae5b2e3 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif new file mode 100644 index 00000000..0ac6ddaf --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde.liga.glif new file mode 100644 index 00000000..a0defc59 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde.liga.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..0376aa03 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif new file mode 100644 index 00000000..a0f09197 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asterisk.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asterisk.liga.glif new file mode 100644 index 00000000..0d2b1acd --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asterisk.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asterisk_greater.liga.glif new file mode 100644 index 00000000..cfe623d5 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_asterisk_greater.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_bar.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_bar.liga.glif new file mode 100644 index 00000000..aeeccd64 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_bar.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_bar.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_bar.liga.glif new file mode 100644 index 00000000..044506d4 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_bar.liga.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif new file mode 100644 index 00000000..489a83df --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_greater.liga.glif new file mode 100644 index 00000000..963006bd --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_bar_greater.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_colon.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_colon.liga.glif new file mode 100644 index 00000000..5e8f3f77 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_colon.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar.liga.glif new file mode 100644 index 00000000..efa15cd7 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar.liga.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar.ligabar.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar.ligabar.glif new file mode 100644 index 00000000..2326afea --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar.ligabar.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar_greater.liga.glif new file mode 100644 index 00000000..e2d2942d --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar_greater.liga.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif new file mode 100644 index 00000000..ca0e89d2 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.glif new file mode 100644 index 00000000..599532ca --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.liga.glif new file mode 100644 index 00000000..df5d1f52 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.start.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.start.glif new file mode 100644 index 00000000..d50bcc81 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal.start.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal_greater.liga.glif new file mode 100644 index 00000000..875c6de2 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal_greater.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal_less.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal_less.liga.glif new file mode 100644 index 00000000..acbf4670 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_equal_less.liga.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..928cddfa --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_greater.liga.glif new file mode 100644 index 00000000..faa40154 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_greater.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen.liga.glif new file mode 100644 index 00000000..7e95f94f --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen.start.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen.start.glif new file mode 100644 index 00000000..358c72cf --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen.start.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen_greater.liga.glif new file mode 100644 index 00000000..4edeb087 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen_greater.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen_less.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen_less.liga.glif new file mode 100644 index 00000000..3ab10e99 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_hyphen_less.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less.liga.glif new file mode 100644 index 00000000..0e60f214 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_equal.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_equal.liga.glif new file mode 100644 index 00000000..72b42d97 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_equal.start.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_equal.start.glif new file mode 100644 index 00000000..4d4e46a3 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_equal.start.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_hyphen.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_hyphen.liga.glif new file mode 100644 index 00000000..23700587 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_hyphen.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_hyphen.start.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_hyphen.start.glif new file mode 100644 index 00000000..f9cff91e --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_hyphen.start.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_less.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_less.liga.glif new file mode 100644 index 00000000..b55d864e --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_less_less.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_plus.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_plus.liga.glif new file mode 100644 index 00000000..232b6bfd --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_plus.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_plus_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_plus_greater.liga.glif new file mode 100644 index 00000000..45d62b8f --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_plus_greater.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_slash.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_slash.liga.glif new file mode 100644 index 00000000..9bb732d3 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_slash.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_slash_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_slash_greater.liga.glif new file mode 100644 index 00000000..165ee56a --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/less_slash_greater.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightarcdnleftbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightarcdnleftbxd.glif new file mode 100644 index 00000000..d6c590bf --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightarcdnleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightarcdnrightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightarcdnrightbxd.glif new file mode 100644 index 00000000..2c2ef6c9 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightarcdnrightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightarcupleftbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightarcupleftbxd.glif new file mode 100644 index 00000000..c0cfb520 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightarcupleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightarcuprightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightarcuprightbxd.glif new file mode 100644 index 00000000..307503ea --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightarcuprightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdbldashhorzbxd.glif new file mode 100644 index 00000000..eab523b6 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdbldashvertbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdbldashvertbxd.glif new file mode 100644 index 00000000..7d1904ca --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdiagcrossbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdiagcrossbxd.glif new file mode 100644 index 00000000..d40df9f1 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdiagcrossbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif new file mode 100644 index 00000000..fce292f4 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif new file mode 100644 index 00000000..6a13ce12 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdnbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdnbxd.glif new file mode 100644 index 00000000..ad43789a --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdnhorzbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdnhorzbxd.glif new file mode 100644 index 00000000..0dea7b7d --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdnleftbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdnleftbxd.glif new file mode 100644 index 00000000..d19b9caf --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdnrightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdnrightbxd.glif new file mode 100644 index 00000000..bdad23ca --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lighthorzbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lighthorzbxd.glif new file mode 100644 index 00000000..6f0b2756 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lighthorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightleftbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightleftbxd.glif new file mode 100644 index 00000000..7d12fe60 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightleftheavyrightbxd.glif new file mode 100644 index 00000000..621504d4 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightleftheavyrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightquaddashhorzbxd.glif new file mode 100644 index 00000000..8ba84c9e --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightquaddashvertbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightquaddashvertbxd.glif new file mode 100644 index 00000000..739f14c0 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightrightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightrightbxd.glif new file mode 100644 index 00000000..86414804 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightshade.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightshade.glif new file mode 100644 index 00000000..0e5291b7 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightshade.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif new file mode 100644 index 00000000..44a74bf6 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lighttrpldashvertbxd.glif new file mode 100644 index 00000000..133c2d16 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lighttrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightupbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightupbxd.glif new file mode 100644 index 00000000..c5da75fa --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightupheavydnbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightupheavydnbxd.glif new file mode 100644 index 00000000..b9ee6c1d --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightupheavydnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightuphorzbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightuphorzbxd.glif new file mode 100644 index 00000000..6812b83f --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightupleftbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightupleftbxd.glif new file mode 100644 index 00000000..1e47c266 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightuprightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightuprightbxd.glif new file mode 100644 index 00000000..f06b42c0 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightvertbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightvertbxd.glif new file mode 100644 index 00000000..16a9f0d1 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightverthorzbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightverthorzbxd.glif new file mode 100644 index 00000000..62c52c58 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightvertleftbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightvertleftbxd.glif new file mode 100644 index 00000000..ff055c1e --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightvertrightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightvertrightbxd.glif new file mode 100644 index 00000000..f2f8ef17 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/lightvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ligspacer.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ligspacer.glif new file mode 100644 index 00000000..aaf0214e --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/ligspacer.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/mediumshade.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/mediumshade.glif new file mode 100644 index 00000000..37be9904 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/mediumshade.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.end.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.end.glif new file mode 100644 index 00000000..e8ec03c0 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.end.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.middle.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.middle.glif new file mode 100644 index 00000000..60b6bc34 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.middle.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.start.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.start.glif new file mode 100644 index 00000000..291bfbac --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign.start.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_braceleft.liga.glif new file mode 100644 index 00000000..33cd91d7 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_braceleft.liga.glif @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif new file mode 100644 index 00000000..cfacad83 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_colon.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_colon.liga.glif new file mode 100644 index 00000000..e30c7ad0 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_colon.liga.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_equal.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_equal.liga.glif new file mode 100644 index 00000000..1ad2bcab --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_equal.liga.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_exclam.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_exclam.liga.glif new file mode 100644 index 00000000..a2966057 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_exclam.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_parenleft.liga.glif new file mode 100644 index 00000000..4b4af0e8 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_parenleft.liga.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_question.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_question.liga.glif new file mode 100644 index 00000000..80bea61c --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_question.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_underscore.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_underscore.liga.glif new file mode 100644 index 00000000..52ab5553 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_underscore.liga.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif new file mode 100644 index 00000000..0533f124 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/percent_percent.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/percent_percent.liga.glif new file mode 100644 index 00000000..b75582f1 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/percent_percent.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_equal.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_equal.liga.glif new file mode 100644 index 00000000..82cdf201 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_hyphen.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_hyphen.liga.glif new file mode 100644 index 00000000..f569c37b --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_hyphen.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_period.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_period.liga.glif new file mode 100644 index 00000000..df885b62 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_period.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_period_equal.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_period_equal.liga.glif new file mode 100644 index 00000000..fe30d613 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_period_equal.liga.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_period_less.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_period_less.liga.glif new file mode 100644 index 00000000..8c075a9f --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_period_less.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_period_period.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_period_period.liga.glif new file mode 100644 index 00000000..20b6b4b7 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_period_period.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_question.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_question.liga.glif new file mode 100644 index 00000000..944db6df --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/period_question.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/plus_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/plus_greater.liga.glif new file mode 100644 index 00000000..624d08be --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/plus_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/plus_plus.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/plus_plus.liga.glif new file mode 100644 index 00000000..e5425511 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/plus_plus.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/plus_plus_plus.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/plus_plus_plus.liga.glif new file mode 100644 index 00000000..e25086d0 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/plus_plus_plus.liga.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question_colon.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question_colon.liga.glif new file mode 100644 index 00000000..a59ecc79 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question_colon.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question_equal.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question_equal.liga.glif new file mode 100644 index 00000000..f91a2c49 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question_equal.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question_period.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question_period.liga.glif new file mode 100644 index 00000000..8be0ead9 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question_period.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question_question.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question_question.liga.glif new file mode 100644 index 00000000..45b9118f --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/question_question.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif new file mode 100644 index 00000000..e10e5fc2 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/righteighthblock.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/righteighthblock.glif new file mode 100644 index 00000000..9d954a40 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/righteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/righthalfblock.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/righthalfblock.glif new file mode 100644 index 00000000..7d4f8cef --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/righthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif new file mode 100644 index 00000000..644f5a5b --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif new file mode 100644 index 00000000..4814e346 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif new file mode 100644 index 00000000..7127b25f --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif new file mode 100644 index 00000000..7f69d482 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftupheavybxd.glif new file mode 100644 index 00000000..1ca14f37 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif new file mode 100644 index 00000000..6035ef73 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif new file mode 100644 index 00000000..dba9270c --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/semicolon_semicolon.liga.glif new file mode 100644 index 00000000..a27c014f --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/semicolon_semicolon.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_asterisk.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_asterisk.liga.glif new file mode 100644 index 00000000..9c6c9f3a --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_asterisk.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_backslash.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_backslash.liga.glif new file mode 100644 index 00000000..f52593c8 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_backslash.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_equal.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_equal.liga.glif new file mode 100644 index 00000000..ffa9dde5 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_equal.start.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_equal.start.glif new file mode 100644 index 00000000..2b256b0b --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_equal.start.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_greater.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_greater.liga.glif new file mode 100644 index 00000000..3c2ce515 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_greater.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash.liga.glif new file mode 100644 index 00000000..f3f2b730 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_equal.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_equal.liga.glif new file mode 100644 index 00000000..94fd2f45 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_equal.start.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_equal.start.glif new file mode 100644 index 00000000..e8f28ab1 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_equal.start.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_slash.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_slash.liga.glif new file mode 100644 index 00000000..2da5cfa3 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/slash_slash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore.end.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore.end.glif new file mode 100644 index 00000000..9f0d4df5 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore.middle.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore.middle.glif new file mode 100644 index 00000000..93623d07 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore.start.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore.start.glif new file mode 100644 index 00000000..9dc664c3 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore_bar_underscore.m.glif new file mode 100644 index 00000000..0964ad99 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/underscore_bar_underscore.m.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2610.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2610.glif new file mode 100644 index 00000000..4c5b4b5f --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2610.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2611.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2611.glif new file mode 100644 index 00000000..0c0c6172 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2611.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2612.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2612.glif new file mode 100644 index 00000000..0268e2a1 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2612.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2713.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2713.glif new file mode 100644 index 00000000..d6a47214 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uni2713.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_0.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_0.glif new file mode 100644 index 00000000..11df5bde --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_0.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_1.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_1.glif new file mode 100644 index 00000000..3ef21c4e --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_1.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_2.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_2.glif new file mode 100644 index 00000000..33d2566d --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0A_2.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_0.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_0.glif new file mode 100644 index 00000000..c611eafd --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_0.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_1.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_1.glif new file mode 100644 index 00000000..0ea4e7dd --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_1.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_2.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_2.glif new file mode 100644 index 00000000..babfd8a3 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_2.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_3.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_3.glif new file mode 100644 index 00000000..269299aa --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uniE_0B_3.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/updblhorzsngbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/updblhorzsngbxd.glif new file mode 100644 index 00000000..d61821f8 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/updblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/updblleftsngbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/updblleftsngbxd.glif new file mode 100644 index 00000000..8cb39189 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/updblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/updblrightsngbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/updblrightsngbxd.glif new file mode 100644 index 00000000..25c707f4 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/updblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upeighthblock.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upeighthblock.glif new file mode 100644 index 00000000..87701940 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upeighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uphalfblock.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uphalfblock.glif new file mode 100644 index 00000000..018ed615 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uphalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif new file mode 100644 index 00000000..158b497a --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyhorzlightbxd.glif new file mode 100644 index 00000000..d77692f9 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif new file mode 100644 index 00000000..8b5d48ff --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyleftlightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyleftlightbxd.glif new file mode 100644 index 00000000..3fb7a207 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif new file mode 100644 index 00000000..0adfdfad --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyrightlightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyrightlightbxd.glif new file mode 100644 index 00000000..2037d8de --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif new file mode 100644 index 00000000..91309b79 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftdnrightquadrant.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftdnrightquadrant.glif new file mode 100644 index 00000000..9bb17821 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftdnrightquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftquadrant.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftquadrant.glif new file mode 100644 index 00000000..ef21c49d --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif new file mode 100644 index 00000000..0d5294c6 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif new file mode 100644 index 00000000..56cf6e14 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif new file mode 100644 index 00000000..489d430a --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplighthorzheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplighthorzheavybxd.glif new file mode 100644 index 00000000..b54fecb4 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightleftdnheavybxd.glif new file mode 100644 index 00000000..8c12ca2f --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightleftheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightleftheavybxd.glif new file mode 100644 index 00000000..168ac26f --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightrightdnheavybxd.glif new file mode 100644 index 00000000..f8f71088 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightrightheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightrightheavybxd.glif new file mode 100644 index 00000000..55aad623 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uplightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif new file mode 100644 index 00000000..df5a022e --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uprightdnleftquadrant.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uprightdnleftquadrant.glif new file mode 100644 index 00000000..93cbe757 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uprightdnleftquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uprightquadrant.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uprightquadrant.glif new file mode 100644 index 00000000..de8b454f --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/uprightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upsnghorzdblbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upsnghorzdblbxd.glif new file mode 100644 index 00000000..8aa48edf --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upsngleftdblbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upsngleftdblbxd.glif new file mode 100644 index 00000000..f67179a7 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upsngrightdblbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upsngrightdblbxd.glif new file mode 100644 index 00000000..44defda2 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/upsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertdblhorzsngbxd.glif new file mode 100644 index 00000000..4d815b5b --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertdblhorzsngbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertdblleftsngbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertdblleftsngbxd.glif new file mode 100644 index 00000000..ed0b8dcd --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertdblleftsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertdblrightsngbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertdblrightsngbxd.glif new file mode 100644 index 00000000..374166b2 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertdblrightsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif new file mode 100644 index 00000000..6f98a0d2 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyleftlightbxd.glif new file mode 100644 index 00000000..a7ae7c83 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyleftlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyrightlightbxd.glif new file mode 100644 index 00000000..3577b6f4 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertheavyrightlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertlighthorzheavybxd.glif new file mode 100644 index 00000000..514e0d7b --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertlighthorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertlightleftheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertlightleftheavybxd.glif new file mode 100644 index 00000000..04acbcf3 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertlightleftheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertlightrightheavybxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertlightrightheavybxd.glif new file mode 100644 index 00000000..3341b6e3 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertlightrightheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertsnghorzdblbxd.glif new file mode 100644 index 00000000..f9f4757d --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertsnghorzdblbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertsngleftdblbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertsngleftdblbxd.glif new file mode 100644 index 00000000..9d9c65d6 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertsngleftdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertsngrightdblbxd.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertsngrightdblbxd.glif new file mode 100644 index 00000000..85458814 --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/vertsngrightdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/w_w_w.liga.glif b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/w_w_w.liga.glif new file mode 100644 index 00000000..c6158d8b --- /dev/null +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/glyphs/w_w_w.liga.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-Light-mstr.ufo/lib.plist b/sources/masters/IntelOneMono-Light-mstr.ufo/lib.plist index 4de37c00..77f5d031 100644 --- a/sources/masters/IntelOneMono-Light-mstr.ufo/lib.plist +++ b/sources/masters/IntelOneMono-Light-mstr.ufo/lib.plist @@ -2,710 +2,6 @@ - com.defcon.sortDescriptor - - - ascending - - .notdef - A - B - C - D - E - F - G - H - I - J - K - L - M - N - O - P - Q - Q.bar - R - S - T - U - V - W - X - Y - Z - a - b - c - d - e - f - g - h - i - j - k - l - m - n - o - p - q - r - s - t - u - v - w - x - y - z - period - comma - colon - semicolon - question - exclam - questiondown - exclamdown - ellipsis - twodotleader - quotedblleft - quotedblright - quotedblbase - quoteleft - quoteright - quotesinglbase - guillemetleft - guillemetright - guilsinglleft - guilsinglright - parenleft - parenright - bracketleft - bracketright - braceleft - braceright - slash - backslash - bar - hyphen - endash - emdash - hyphen.calt - periodcentered - bullet - underscore - ampersand - at - published - copyright - registered - servicemark - trademark - asterisk - dagger - daggerdbl - section - paragraph - zero - one - two - three - four - five - six - seven - eight - nine - colon.fig - plus - divide - minus - equal - notequal - asciitilde - approxequal - multiply - less - greater - lessequal - greaterequal - plusminus - asciicircum - mu - numbersign - percent - quotedbl - quotesingle - ordfeminine - ordmasculine - degree - dollar - dollar.bar - sterling - yen - Euro - naira - naira.bar - peso - peso.bar - uni20BA - uni20BD - uni20B9 - bahtthai - bahtthai.bar - won - won.bar - cent - cent.bar - dong - onehalf - onethird - twothirds - onequarter - threequarters - onefifth - twofifths - threefifths - fourfifths - onesixth - fivesixths - oneeighth - threeeighths - fiveeighths - seveneighths - zero.sup - one.sup - two.sup - three.sup - four.sup - five.sup - six.sup - seven.sup - eight.sup - nine.sup - zero.inf - one.inf - two.inf - three.inf - four.inf - five.inf - six.inf - seven.inf - eight.inf - nine.inf - primemod - dblprimemod - commaturnedmod - apostrophemod - ringhalfleft - ringhalfright - verticallinemod - verticallinelowmod - acute - hungarumlaut - grave - circumflex - caron - breve - tilde - macron - dieresis - dotaccent - ring - uniA788 - macronlowmod - cedilla - ogonek - Aacute - Agrave - Acircumflex - Acircumflexdotbelow - Acircumflexacute - Acircumflexgrave - Acircumflexhookabove - Acircumflextilde - Acaron - Abreve - Abrevedotbelow - Abreveacute - Abrevegrave - Abrevehookabove - Abrevetilde - Atilde - Amacron - Adieresis - Adotaccent - Aring - Ahookabove - Adotbelow - Aogonek - AE - Blinebelow - Cacute - Ccircumflex - Ccaron - Cdotaccent - Ccedilla - Dcaron - Dcircumflexbelow - Dlinebelow - Ddotbelow - Dcroat - Eacute - Egrave - Ecircumflex - Ecircumflexdotbelow - Ecircumflexacute - Ecircumflexgrave - Ecircumflexhookabove - Ecircumflextilde - Ecaron - Ebreve - Etilde - Emacron - Edieresis - Edotaccent - Ehookabove - Edotbelow - Eogonek - Gcircumflex - Gcaron - Gbreve - Gmacron - Gdotaccent - Gcommaaccent - Hcircumflex - Hbrevebelow - Hdotbelow - Hcedilla - Hbar - Iacute - Igrave - Icircumflex - Icaron - Ibreve - Itilde - Imacron - Idieresis - Idotaccent - Ihookabove - Idotbelow - Iogonek - Jcircumflex - Klinebelow - Kcommaaccent - Kdotbelow - Lacute - Lcaron - Lcommaaccent - Lcircumflexbelow - Llinebelow - Lmacrondotbelow - Ldotbelow - L.dot - Lslash - Macute - Mdotaccent - Mdotbelow - Nacute - Ngrave - Ncaron - Ntilde - Ndotaccent - Ncircumflexbelow - Ncommaaccent - Ndotbelow - Nlinebelow - Eng - Oacute - Ohungarumlaut - Ograve - Ocircumflex - Ocircumflexdotbelow - Ocircumflexacute - Ocircumflexgrave - Ocircumflexhookabove - Ocircumflextilde - Ocaron - Obreve - Otilde - Omacron - Odieresis - Odotaccent - Ohookabove - Odotbelow - Oogonek - Oslash - Oslash.bar - OE - Ohorn - Ohornacute - Ohorngrave - Ohorntilde - Ohornhookabove - Ohorndotbelow - Racute - Rcaron - Rdotaccent - Rmacrondotbelow - Rcommaaccent - Rdotbelow - Rlinebelow - Sacute - Scircumflex - Scaron - Scommaaccent - Sdotbelow - Scedilla - uni1E9E - Tcaron - Tcircumflexbelow - Tcommaaccent - Tdotbelow - Tlinebelow - Tcedilla - Tbar - Uacute - Uhungarumlaut - Ugrave - Ucircumflex - Ucaron - Ubreve - Utilde - Umacron - Udieresis - Udieresisacute - Udieresisgrave - Udieresiscaron - Udieresismacron - Uring - Uhookabove - Udotbelow - Uogonek - Uhorn - Uhornacute - Uhorngrave - Uhorntilde - Uhornhookabove - Uhorndotbelow - Vdotbelow - Wacute - Wgrave - Wcircumflex - Wdieresis - Xdieresis - Yacute - Ygrave - Ycircumflex - Ytilde - Ymacron - Ydieresis - Ydotaccent - Yhookabove - Ydotbelow - Zacute - Zcircumflex - Zcaron - Zdotaccent - Zdotbelow - Zlinebelow - Eth - Thorn - Schwa - aacute - agrave - acircumflex - acircumflexdotbelow - acircumflexacute - acircumflexgrave - acircumflexhookabove - acircumflextilde - acaron - abreve - abrevedotbelow - abreveacute - abrevegrave - abrevehookabove - abrevetilde - atilde - amacron - adieresis - adotaccent - aring - ahookabove - adotbelow - aogonek - ae - blinebelow - cacute - ccircumflex - ccaron - cdotaccent - ccedilla - dcaron - dcircumflexbelow - dlinebelow - ddotbelow - dcroat - eacute - egrave - ecircumflex - ecircumflexdotbelow - ecircumflexacute - ecircumflexgrave - ecircumflexhookabove - ecircumflextilde - ecaron - ebreve - etilde - emacron - edieresis - edotaccent - ehookabove - edotbelow - eogonek - gcircumflex - gcaron - gbreve - gmacron - gdotaccent - gcommaaccent - hcircumflex - hbrevebelow - hlinebelow - hdotbelow - hcedilla - hbar - dotlessi - iacute - igrave - icircumflex - icaron - ibreve - itilde - imacron - idieresis - idotaccent - ihookabove - idotbelow - iogonek - dotlessj - jcircumflex - jcaron - klinebelow - kcommaaccent - kdotbelow - lacute - lcaron - lcommaaccent - lcircumflexbelow - llinebelow - lmacrondotbelow - ldotbelow - l.dot - lslash - macute - mdotaccent - mdotbelow - nacute - ngrave - ncaron - ntilde - ndotaccent - ncircumflexbelow - ncommaaccent - ndotbelow - nlinebelow - eng - oacute - ohungarumlaut - ograve - ocircumflex - ocircumflexdotbelow - ocircumflexacute - ocircumflexgrave - ocircumflexhookabove - ocircumflextilde - ocaron - obreve - otilde - omacron - odieresis - odotaccent - ohookabove - odotbelow - oogonek - oslash - oslash.bar - oe - ohorn - ohornacute - ohorngrave - ohorntilde - ohornhookabove - ohorndotbelow - racute - rcaron - rdotaccent - rmacrondotbelow - rcommaaccent - rdotbelow - rlinebelow - sacute - scircumflex - scaron - scommaaccent - sdotbelow - scedilla - germandbls - tcaron - tcircumflexbelow - tcommaaccent - tdotbelow - tlinebelow - tcedilla - tbar - uacute - uhungarumlaut - ugrave - ucircumflex - ucaron - ubreve - utilde - umacron - udieresis - udieresisacute - udieresisgrave - udieresiscaron - udieresismacron - uring - uhookabove - udotbelow - uogonek - uhorn - uhornacute - uhorngrave - uhorntilde - uhornhookabove - uhorndotbelow - vdotbelow - wacute - wgrave - wcircumflex - wdieresis - xdieresis - yacute - ygrave - ycircumflex - ytilde - ymacron - ydieresis - ydotaccent - yhookabove - ydotbelow - zacute - zcircumflex - zcaron - zdotaccent - zdotbelow - zlinebelow - eth - thorn - schwa - space - uni00A0 - zero.num - one.num - two.num - three.num - four.num - five.num - six.num - seven.num - eight.num - nine.num - fraction - fracbar - zero.den - one.den - two.den - three.den - four.den - five.den - six.den - seven.den - eight.den - nine.den - uni2011 - horizontalbar - middotcat - middotcat.cap - acutecmb - hungarumlautcmb - gravecmb - commaaboverightcmb - circumflexcmb - caroncmb - brevecmb - tildecmb - macroncmb - dieresiscmb - dotaccentcmb - ringcmb - commaturnedabovecmb - hookcmb - circumflexbelowcmb - brevebelowcmb - macronbelowcmb - dieresisbelowcmb - dotbelowcmb - uni0326 - cedillacmb - ogonekcmb - dieresisacute - dieresisgrave - dieresiscaron - dieresismacron - breveacute - brevegrave - brevehook - brevetilde - circumflexacute - circumflexgrave - circumflexhook - circumflextilde - acutecmb.cap - hungarumlautcmb.cap - gravecmb.cap - circumflexcmb.cap - caroncmb.cap - brevecmb.cap - tildecmb.cap - macroncmb.cap - dieresiscmb.cap - dotaccentcmb.cap - ringcmb.cap - hookcmb.cap - dieresisacute.cap - dieresisgrave.cap - dieresiscaron.cap - dieresismacron.cap - breveacute.cap - brevegrave.cap - brevehook.cap - brevetilde.cap - circumflexacute.cap - circumflexgrave.cap - circumflexhook.cap - circumflextilde.cap - - type - glyphList - - com.typemytype.robofont.compileSettings.autohint com.typemytype.robofont.compileSettings.checkOutlines @@ -716,6 +12,8 @@ 1 com.typemytype.robofont.compileSettings.generateFormat 0 + com.typemytype.robofont.compileSettings.layerName + foreground com.typemytype.robofont.compileSettings.releaseMode 1 com.typemytype.robofont.italicSlantOffset @@ -1419,6 +717,372 @@ circumflexgrave.cap circumflexhook.cap circumflextilde.cap + lighthorzbxd + heavyhorzbxd + lightvertbxd + heavyvertbxd + lighttrpldashhorzbxd + heavytrpldashhorzbxd + lighttrpldashvertbxd + heavytrpldashvertbxd + lightquaddashhorzbxd + heavyquaddashhorzbxd + lightquaddashvertbxd + heavyquaddashvertbxd + lightdnrightbxd + dnlightrightheavybxd + dnheavyrightlightbxd + heavydnrightbxd + lightdnleftbxd + dnlightleftheavybxd + dnheavyleftlightbxd + heavydnleftbxd + lightuprightbxd + uplightrightheavybxd + upheavyrightlightbxd + heavyuprightbxd + lightupleftbxd + uplightleftheavybxd + upheavyleftlightbxd + heavyupleftbxd + lightvertrightbxd + vertlightrightheavybxd + upheavyrightdnlightbxd + dnheavyrightuplightbxd + vertheavyrightlightbxd + dnlightrightupheavybxd + uplightrightdnheavybxd + heavyvertrightbxd + lightvertleftbxd + vertlightleftheavybxd + upheavyleftdnlightbxd + dnheavyleftuplightbxd + vertheavyleftlightbxd + dnlightleftupheavybxd + uplightleftdnheavybxd + heavyvertleftbxd + lightdnhorzbxd + leftheavyrightdnlightbxd + rightheavyleftdnlightbxd + dnlighthorzheavybxd + dnheavyhorzlightbxd + rightlightleftdnheavybxd + leftlightrightdnheavybxd + heavydnhorzbxd + lightuphorzbxd + leftheavyrightuplightbxd + rightheavyleftuplightbxd + uplighthorzheavybxd + upheavyhorzlightbxd + rightlightleftupheavybxd + leftlightrightupheavybxd + heavyuphorzbxd + lightverthorzbxd + leftheavyrightvertlightbxd + rightheavyleftvertlightbxd + vertlighthorzheavybxd + upheavydnhorzlightbxd + dnheavyuphorzlightbxd + vertheavyhorzlightbxd + leftupheavyrightdnlightbxd + rightupheavyleftdnlightbxd + leftdnheavyrightuplightbxd + rightdnheavyleftuplightbxd + dnlightuphorzheavybxd + uplightdnhorzheavybxd + rightlightleftvertheavybxd + leftlightrightvertheavybxd + heavyverthorzbxd + lightdbldashhorzbxd + heavydbldashhorzbxd + lightdbldashvertbxd + heavydbldashvertbxd + dblhorzbxd + dblvertbxd + dnsngrightdblbxd + dndblrightsngbxd + dbldnrightbxd + dnsngleftdblbxd + dndblleftsngbxd + dbldnleftbxd + upsngrightdblbxd + updblrightsngbxd + dbluprightbxd + upsngleftdblbxd + updblleftsngbxd + dblupleftbxd + vertsngrightdblbxd + vertdblrightsngbxd + dblvertrightbxd + vertsngleftdblbxd + vertdblleftsngbxd + dblvertleftbxd + dnsnghorzdblbxd + dndblhorzsngbxd + dbldnhorzbxd + upsnghorzdblbxd + updblhorzsngbxd + dbluphorzbxd + vertsnghorzdblbxd + vertdblhorzsngbxd + dblverthorzbxd + lightarcdnrightbxd + lightarcdnleftbxd + lightarcupleftbxd + lightarcuprightbxd + lightdiaguprightdnleftbxd + lightdiagupleftdnrightbxd + lightdiagcrossbxd + lightleftbxd + lightupbxd + lightrightbxd + lightdnbxd + heavyleftbxd + heavyupbxd + heavyrightbxd + heavydnbxd + lightleftheavyrightbxd + lightupheavydnbxd + heavyleftlightrightbxd + heavyuplightdnbxd + uphalfblock + dneighthblock + dnquarterblock + dnthreeeighthsblock + dnhalfblock + dnfiveeighthsblock + dnthreequartersblock + dnseveneighthsblock + fullblock + leftseveneighthsblock + leftthreequartersblock + leftfiveeighthsblock + lefthalfblock + leftthreeeighthsblock + leftquarterblock + lefteighthblock + righthalfblock + lightshade + mediumshade + darkshade + upeighthblock + righteighthblock + dnleftquadrant + dnrightquadrant + upleftquadrant + upleftdnleftdnrightquadrant + upleftdnrightquadrant + upleftuprightdnleftquadrant + upleftuprightdnrightquadrant + uprightquadrant + uprightdnleftquadrant + uprightdnleftdnrightquadrant + ligspacer + period_equal.liga + period_period_equal.liga + period_hyphen.liga + colon_equal.liga + equal_colon_equal.middle + equal_exclam_equal.middle + equal_equal.liga + exclam_equal.liga + equal_equal_equal.liga + exclam_equal_equal.liga + less_hyphen_less.liga + less_less_hyphen.liga + less_hyphen.liga + less_hyphen_greater.liga + hyphen_greater.liga + hyphen_greater_greater.liga + greater_hyphen_greater.liga + less_equal_less.liga + less_less_equal.liga + less_equal_greater.liga + equal_greater.liga + less_equal.liga + equal_greater_greater.liga + greater_equal_greater.liga + greater_equal.liga + greater_greater_equal.liga + greater_greater_hyphen.liga + greater_hyphen.liga + less_asciitilde_greater.liga + hyphen_less.liga + hyphen_less_less.liga + equal_less.liga + equal_less_less.liga + less_asciitilde_asciitilde.liga + less_asciitilde.liga + asciitilde_asciitilde.liga + asciitilde_greater.liga + asciitilde_asciitilde_greater + slash_equal.liga + hyphen_bar.liga + bar_hyphen.liga + bar_equal.liga + hyphen_bar_bar.liga + bar_bar_hyphen.liga + equal_bar_bar.liga + bar_bar_equal.liga + equal_bar.liga + equal.start + equal.middle + equal.end + hyphen.start + hyphen.middle + hyphen.end + underscore.start + underscore.middle + underscore.end + numbersign.start + numbersign.middle + numbersign.end + less_less_less.liga + less_less.liga + less_equal + less_greater.liga + greater_equal + greater_greater.liga + greater_greater_greater.liga + braceleft_bar.liga + bracketleft_bar.liga + less_colon.liga + colon_less.liga + uni2713 + greater_colon.liga + colon_greater.liga + bar_braceright.liga + bar_bracketright.liga + less_bar_bar_bar.liga + less_bar_bar.liga + less_bar.liga + less_bar_greater.liga + bar_greater.liga + bar_bar_greater.liga + bar_bar_bar_greater.liga + less_dollar.liga + less_dollar_greater.liga + dollar_greater.liga + less_plus.liga + less_plus_greater.liga + plus_greater.liga + less_asterisk.liga + less_asterisk_greater.liga + asterisk_greater.liga + slash_asterisk.liga + asterisk_slash.liga + slash_slash_slash.liga + slash_slash.liga + less_slash.liga + less_exclam_hyphen_hyphen.liga + less_slash_greater.liga + slash_greater.liga + semicolon_semicolon.liga + colon_colon.liga + colon_colon_colon.liga + period_period.liga + period_period_period.liga + period_period_less.liga + exclam_exclam.liga + question_question.liga + percent_percent.liga + ampersand_ampersand.liga + bar_bar.liga + question_period.liga + question_colon.liga + plus_plus.liga + plus_plus_plus.liga + hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga + asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga + equal_asciitilde.liga + exclam_asciitilde.liga + asciitilde_hyphen.liga + w_w_w.liga + hyphen_asciitilde.liga + asciitilde_at.liga + asciicircum_equal.liga + question_equal.liga + numbersign_exclam.liga + numbersign_equal.liga + numbersign_colon.liga + numbersign_braceleft.liga + numbersign_bracketleft.liga + bracketright_numbersign.liga + numbersign_parenleft.liga + numbersign_question.liga + numbersign_underscore.liga + numbersign_underscore_parenleft + backslash_slash.liga + bar_bar_bar.liga + colon_colon_equal.liga + exclam_exclam_period.liga + period_question.liga + slash_backslash.liga + uniE0A0 + uniE0A1 + uniE0A2 + uniE0B0 + uniE0B1 + uniE0B2 + uniE0B3 + uni2610 + uni2611 + uni2612 + less_dollar.ligabar + less_dollar_greater.ligabar + dollar_greater.ligabar + underscore_bar_underscore.m + hyphen_bar_hyphen.middle + equal_bar_equal.middle + hyphen_greater_hyphen.middle + hyphen_greater_greater_hyphen.m + equal_slash_slash_equal.middle + equal_slash_equal.middle + hyphen_bar_bar_hyphen.middle + equal_bar_bar_equal.middle + hyphen_less_hyphen.middle + hyphen_less_less_hyphen.middle + equal_greater_equal.middle + equal_less_equal.middle + equal_greater_greater_equal.m + equal_less_less_equal.middle + less_hyphen.start + greater_hyphen.start + bar_hyphen.start + less_equal.start + greater_equal.start + bar_equal.start + slash_equal.start + less_less_hyphen.start + greater_greater_hyphen.start + bar_bar_hyphen.start + less_less_equal.start + greater_greater_equal.start + bar_bar_equal.start + hyphen_less.end + hyphen_greater.end + hyphen_bar.end + equal_less.end + equal_greater.end + equal_bar.end + hyphen_less_less.end + hyphen_greater_greater.end + hyphen_bar_bar.end + equal_less_less.end + equal_greater_greater.end + equal_bar_bar.end + slash_slash_equal.liga + slash_slash_equal.start + equal_slash.liga + equal_slash.end + equal_slash_slash.liga + equal_slash_slash.end + arrowheadleft + arrowheadright + arrowheadleftopen + arrowheadrightopen public.postscriptNames diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/features.fea b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/features.fea index 442214bb..3d901671 100644 --- a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/features.fea +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/features.fea @@ -1,271 +1,3 @@ -# ---------------------------- -# INTEL ONE MONO OPENTYPE CODE -# ---------------------------- -# ---------------- -# Language Systems -# ---------------- - -languagesystem DFLT dflt; -languagesystem latn dflt; -languagesystem latn TRK; -languagesystem latn AZE; -languagesystem latn CRT; -languagesystem latn CAT; - - -# ------- -# Classes -# ------- - -# Base Letters -@ltrUC = [A B C D E F G H I J K L M N O P Q R S T U V W X Y Z uni1E9E AE OE Schwa Eng Thorn Eth Dcroat Hbar Tbar Lslash Oslash Aring Ohorn Uhorn I]; -@ltrLC = [a b c d e f g h i j k l m n o p q r s t u v w x y z germandbls ae oe schwa eng thorn eth dcroat hbar tbar lslash oslash aring ohorn uhorn dotlessi]; - -# Figures -@fig = [zero one two three four five six seven eight nine]; -@figSup = [zero.sup one.sup two.sup three.sup four.sup five.sup six.sup seven.sup eight.sup nine.sup]; -@figInf = [zero.inf one.inf two.inf three.inf four.inf five.inf six.inf seven.inf eight.inf nine.inf]; -@figNum = [zero.num one.num two.num three.num four.num five.num six.num seven.num eight.num nine.num]; -@figDen = [zero.den one.den two.den three.den four.den five.den six.den seven.den eight.den nine.den]; - -# Marks Above -@lcMarks = [acutecmb gravecmb hungarumlautcmb circumflexcmb caroncmb brevecmb tildecmb macroncmb dieresiscmb dotaccentcmb ringcmb ]; -@ucMarks = [acutecmb.cap gravecmb.cap hungarumlautcmb.cap circumflexcmb.cap caroncmb.cap brevecmb.cap tildecmb.cap macroncmb.cap dieresiscmb.cap dotaccentcmb.cap ringcmb.cap]; - -# Marks Below -@belowMarks = [circumflexbelowcmb macronbelowcmb cedillacmb ogonekcmb]; - - -# --------------- -# Localized Forms -# --------------- - -feature locl { - script latn; - language TRK; - lookup iTurkish { - sub i by idotaccent; - } iTurkish; - language AZE; - lookup iTurkish; - language CRT; - lookup iTurkish; - language CAT; - sub l periodcentered' l by middotcat; - sub L periodcentered' L by middotcat.cap; - # try fusing them - sub L middotcat.cap by L.dot; - sub L middotcat by L.dot; - sub l middotcat by l.dot; -} locl; - - -# --------------------------------- -# Glyph Composition / Decomposition -# --------------------------------- - -feature ccmp { - - # Decompose unicode lowercase characters whose uppercase counterparts have no unicode. - lookup Decomp { - sub hlinebelow by h macronlowmod; - sub jcaron by j caron; - } Decomp; - - # Replace double above accents by combined drawings. - lookup DblMarks { - sub dieresiscmb acutecmb by dieresisacute; - sub dieresiscmb gravecmb by dieresisgrave; - sub dieresiscmb caroncmb by dieresiscaron; - sub dieresiscmb macroncmb by dieresismacron; - sub brevecmb acutecmb by breveacute; - sub brevecmb gravecmb by brevegrave; - sub brevecmb hookcmb by brevehook; - sub brevecmb tildecmb by brevetilde; - sub circumflexcmb acutecmb by circumflexacute; - sub circumflexcmb gravecmb by circumflexgrave; - sub circumflexcmb hookcmb by circumflexhook; - sub circumflexcmb tildecmb by circumflextilde; - # capital forms - sub dieresiscmb.cap acutecmb.cap by dieresisacute.cap; - sub dieresiscmb.cap gravecmb.cap by dieresisgrave.cap; - sub dieresiscmb.cap caroncmb.cap by dieresiscaron.cap; - sub dieresiscmb.cap macroncmb.cap by dieresismacron.cap; - sub brevecmb.cap acutecmb.cap by breveacute.cap; - sub brevecmb.cap gravecmb.cap by brevegrave.cap; - sub brevecmb.cap hookcmb.cap by brevehook.cap; - sub brevecmb.cap tildecmb.cap by brevetilde.cap; - sub circumflexcmb.cap acutecmb.cap by circumflexacute.cap; - sub circumflexcmb.cap gravecmb.cap by circumflexgrave.cap; - sub circumflexcmb.cap hookcmb.cap by circumflexhook.cap; - sub circumflexcmb.cap tildecmb.cap by circumflextilde.cap; - } DblMarks; - - # Replace combining marks that follow a uppercase letter by their uppercase form - lookup CapitalMarks { - sub [@ltrUC] [@lcMarks @belowMarks dotbelowcmb] [@lcMarks]' by [@ucMarks]; - sub [@ltrUC] [@lcMarks]' by [@ucMarks]; - } CapitalMarks; - - # Replace letters with dotless counterparts when followed by a combining mark - lookup Dotless { - sub [i j]' [@belowMarks dotbelowcmb] [@lcMarks] by [dotlessi dotlessj]; - sub [i j]' [@lcMarks] by [dotlessi dotlessj]; - } Dotless; - - # Replace e ogonek with pre-drawn eogonek - lookup eogonek { - sub e ogonekcmb by eogonek; - } eogonek; - -} ccmp; - - -# ---------- -# Numerators -# ---------- - -feature numr { - sub @fig by @figNum; -} numr; - -# ------------ -# Denominators -# ------------ - -feature dnom { - sub @fig by @figDen; -} dnom; - -# ----------- -# Superscript -# ----------- - -feature sups { - sub @fig by @figSup; -} sups; - -# --------------------- -# Subscript & Inferiors -# --------------------- - -feature subs { - sub @fig by @figInf; -} subs; - -feature sinf { - sub @fig by @figInf; -} sinf; - - -# --------------------- -# Contextual Alternates -# --------------------- - -feature calt { - # shifts colon to align with math symbols when used together - - sub colon' [plus equal greater less hyphen] by colon.fig; - sub [plus equal less greater hyphen] colon' by colon.fig; - - sub colon' [colon colon.fig] by colon.fig; - sub colon.fig colon' by colon.fig; - -} calt; - - -# -------------- -# Stylistic Sets -# -------------- - -feature ss11 { - featureNames { - name "Raised Colon (Figures Only)"; # Windows English - name 1 0 0 "Raised Colon (Figures Only)"; # Mac English - }; - lookup FigureColonContextual { - sub @fig colon' @fig by colon.fig; - } FigureColonContextual; -} ss11; - -feature ss12 { - featureNames { - name "Raised Colon (Global)"; # Windows English - name 1 0 0 "Raised Colon (Global)"; # Mac English - }; - lookup FigureColon { - sub colon by colon.fig; - } FigureColon; -} ss12; - - -# -------------------- -# Stylistic Alternates -# -------------------- - -feature salt { - lookup FigureColon; # SS12 -} salt; - - -# -------------- -# All Alternates -# -------------- - -feature aalt { - sub germandbls from [germandbls uni1E9E]; - sub uni1E9E from [uni1E9E germandbls]; - sub colon from [colon colon.fig]; - sub colon.fig from [colon.fig colon]; - sub eight from [eight eight.den eight.sup eight.num eight.inf]; - sub eight.inf from [eight.inf eight eight.den eight.sup eight.num]; - sub eight.num from [eight.num eight.inf eight eight.den eight.sup]; - sub eight.sup from [eight.sup eight.num eight.inf eight eight.den]; - sub eight.den from [eight.den eight.sup eight.num eight.inf eight]; - sub five from [five five.inf five.num five.den five.sup]; - sub five.sup from [five.sup five five.inf five.num five.den]; - sub five.den from [five.den five.sup five five.inf five.num]; - sub five.num from [five.num five.den five.sup five five.inf]; - sub five.inf from [five.inf five.num five.den five.sup five]; - sub four from [four four.sup four.num four.den four.inf]; - sub four.inf from [four.inf four four.sup four.num four.den]; - sub four.den from [four.den four.inf four four.sup four.num]; - sub four.num from [four.num four.den four.inf four four.sup]; - sub four.sup from [four.sup four.num four.den four.inf four]; - sub nine from [nine nine.den nine.inf nine.num nine.sup]; - sub nine.sup from [nine.sup nine nine.den nine.inf nine.num]; - sub nine.num from [nine.num nine.sup nine nine.den nine.inf]; - sub nine.inf from [nine.inf nine.num nine.sup nine nine.den]; - sub nine.den from [nine.den nine.inf nine.num nine.sup nine]; - sub one from [one one.den one.num one.inf one.sup]; - sub one.sup from [one.sup one one.den one.num one.inf]; - sub one.inf from [one.inf one.sup one one.den one.num]; - sub one.num from [one.num one.inf one.sup one one.den]; - sub one.den from [one.den one.num one.inf one.sup one]; - sub seven from [seven seven.inf seven.num seven.sup seven.den]; - sub seven.den from [seven.den seven seven.inf seven.num seven.sup]; - sub seven.sup from [seven.sup seven.den seven seven.inf seven.num]; - sub seven.num from [seven.num seven.sup seven.den seven seven.inf]; - sub seven.inf from [seven.inf seven.num seven.sup seven.den seven]; - sub six from [six six.num six.sup six.den six.inf]; - sub six.inf from [six.inf six six.num six.sup six.den]; - sub six.den from [six.den six.inf six six.num six.sup]; - sub six.sup from [six.sup six.den six.inf six six.num]; - sub six.num from [six.num six.sup six.den six.inf six]; - sub three from [three three.inf three.den three.num three.sup]; - sub three.sup from [three.sup three three.inf three.den three.num]; - sub three.num from [three.num three.sup three three.inf three.den]; - sub three.den from [three.den three.num three.sup three three.inf]; - sub three.inf from [three.inf three.den three.num three.sup three]; - sub two from [two two.inf two.sup two.num two.den]; - sub two.den from [two.den two two.inf two.sup two.num]; - sub two.num from [two.num two.den two two.inf two.sup]; - sub two.sup from [two.sup two.num two.den two two.inf]; - sub two.inf from [two.inf two.sup two.num two.den two]; - sub zero from [zero zero.sup zero.num zero.den zero.inf]; - sub zero.inf from [zero.inf zero zero.sup zero.num zero.den]; - sub zero.den from [zero.den zero.inf zero zero.sup zero.num]; - sub zero.num from [zero.num zero.den zero.inf zero zero.sup]; - sub zero.sup from [zero.sup zero.num zero.den zero.inf zero]; -} aalt; +include(../features/shared.fea); +include(../features/aalt.fea); \ No newline at end of file diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/fontinfo.plist b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/fontinfo.plist index e7245fc1..94786ea8 100644 --- a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/fontinfo.plist +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/fontinfo.plist @@ -7,7 +7,7 @@ capHeight 655 copyright - Copyright 2023 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) descender -260 familyName @@ -53,7 +53,7 @@ platformID 1 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -65,7 +65,7 @@ platformID 3 string - (C) 2023 Intel Corporation + Copyright 2023-2024 The Intel One Mono Project Authors (https://github.com/intel/intel-one-mono) encodingID @@ -382,7 +382,7 @@ versionMajor 1 versionMinor - 3 + 4 xHeight 460 diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_.dot.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_.dot.glif index 6724e835..dcf66a6b 100644 --- a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_.dot.glif +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/L_.dot.glif @@ -5,7 +5,6 @@ - diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ampersand_ampersand.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ampersand_ampersand.liga.glif new file mode 100644 index 00000000..1d8d8e0a --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ampersand_ampersand.liga.glif @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadleft.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadleft.glif new file mode 100644 index 00000000..247a2821 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadleft.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadleftopen.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadleftopen.glif new file mode 100644 index 00000000..4a6c78a5 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadleftopen.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadright.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadright.glif new file mode 100644 index 00000000..15ace22d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadright.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadrightopen.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadrightopen.glif new file mode 100644 index 00000000..6c0588ab --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/arrowheadrightopen.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciicircum_equal.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciicircum_equal.liga.glif new file mode 100644 index 00000000..ed50ca92 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciicircum_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..8986c7b9 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_asciitilde.liga.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif new file mode 100644 index 00000000..a8b157e4 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_asciitilde_greater.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_at.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_at.liga.glif new file mode 100644 index 00000000..1aa62cb4 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_at.liga.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_greater.liga.glif new file mode 100644 index 00000000..d4c47fb5 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_greater.liga.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif new file mode 100644 index 00000000..4f19669c --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asciitilde_hyphen.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_asterisk.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_asterisk.liga.glif new file mode 100644 index 00000000..09d49315 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_asterisk.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif new file mode 100644 index 00000000..61dcc53f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_greater.liga.glif new file mode 100644 index 00000000..9ec608c1 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_slash.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_slash.liga.glif new file mode 100644 index 00000000..b62ca652 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/asterisk_slash.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/backslash_slash.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/backslash_slash.liga.glif new file mode 100644 index 00000000..44a6a0e7 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/backslash_slash.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar.liga.glif new file mode 100644 index 00000000..0bb2a5a7 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_bar.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_bar.liga.glif new file mode 100644 index 00000000..f494b682 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_bar.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif new file mode 100644 index 00000000..f77a3f50 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_bar_greater.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_equal.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_equal.liga.glif new file mode 100644 index 00000000..e84918a3 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_equal.start.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_equal.start.glif new file mode 100644 index 00000000..2abb440a --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_equal.start.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_greater.liga.glif new file mode 100644 index 00000000..79a4d54d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_greater.liga.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif new file mode 100644 index 00000000..3c61fde3 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_hyphen.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_hyphen.start.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_hyphen.start.glif new file mode 100644 index 00000000..a1a28e66 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bar_hyphen.start.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_braceright.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_braceright.liga.glif new file mode 100644 index 00000000..71c7a903 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_braceright.liga.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bracketright.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bracketright.liga.glif new file mode 100644 index 00000000..8b896eca --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_bracketright.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_equal.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_equal.liga.glif new file mode 100644 index 00000000..aaa1618a --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_equal.start.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_equal.start.glif new file mode 100644 index 00000000..095f8de3 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_equal.start.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_greater.liga.glif new file mode 100644 index 00000000..4befca5c --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_greater.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_hyphen.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_hyphen.liga.glif new file mode 100644 index 00000000..e7d770ea --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_hyphen.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_hyphen.start.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_hyphen.start.glif new file mode 100644 index 00000000..80878233 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bar_hyphen.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/braceleft_bar.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/braceleft_bar.liga.glif new file mode 100644 index 00000000..162104cc --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/braceleft_bar.liga.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketleft_bar.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketleft_bar.liga.glif new file mode 100644 index 00000000..43fc6bde --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketleft_bar.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketright_numbersign.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketright_numbersign.liga.glif new file mode 100644 index 00000000..0ecbf799 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/bracketright_numbersign.liga.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon.liga.glif new file mode 100644 index 00000000..b5b3ec69 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon_colon.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon_colon.liga.glif new file mode 100644 index 00000000..63c7c930 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon_colon.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon_equal.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon_equal.liga.glif new file mode 100644 index 00000000..a8c2b7e5 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_colon_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_equal.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_equal.liga.glif new file mode 100644 index 00000000..54ea319d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_equal.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_greater.liga.glif new file mode 100644 index 00000000..9c12320b --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_greater.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_less.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_less.liga.glif new file mode 100644 index 00000000..b3fece00 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/colon_less.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/contents.plist b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/contents.plist index 872b0f47..140ed033 100644 --- a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/contents.plist +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/contents.plist @@ -502,6 +502,8 @@ amacron.glif ampersand ampersand.glif + ampersand_ampersand.liga + ampersand_ampersand.liga.glif aogonek aogonek.glif apostrophemod @@ -510,12 +512,40 @@ approxequal.glif aring aring.glif + arrowheadleft + arrowheadleft.glif + arrowheadleftopen + arrowheadleftopen.glif + arrowheadright + arrowheadright.glif + arrowheadrightopen + arrowheadrightopen.glif asciicircum asciicircum.glif + asciicircum_equal.liga + asciicircum_equal.liga.glif asciitilde asciitilde.glif + asciitilde_asciitilde.liga + asciitilde_asciitilde.liga.glif + asciitilde_asciitilde_greater + asciitilde_asciitilde_greater.glif + asciitilde_at.liga + asciitilde_at.liga.glif + asciitilde_greater.liga + asciitilde_greater.liga.glif + asciitilde_hyphen.liga + asciitilde_hyphen.liga.glif asterisk asterisk.glif + asterisk_asterisk.liga + asterisk_asterisk.liga.glif + asterisk_asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga.glif + asterisk_greater.liga + asterisk_greater.liga.glif + asterisk_slash.liga + asterisk_slash.liga.glif at at.glif atilde @@ -524,22 +554,60 @@ b.glif backslash backslash.glif + backslash_slash.liga + backslash_slash.liga.glif bahtthai bahtthai.glif bahtthai.bar bahtthai.bar.glif bar bar.glif + bar_bar.liga + bar_bar.liga.glif + bar_bar_bar.liga + bar_bar_bar.liga.glif + bar_bar_bar_greater.liga + bar_bar_bar_greater.liga.glif + bar_bar_equal.liga + bar_bar_equal.liga.glif + bar_bar_equal.start + bar_bar_equal.start.glif + bar_bar_greater.liga + bar_bar_greater.liga.glif + bar_bar_hyphen.liga + bar_bar_hyphen.liga.glif + bar_bar_hyphen.start + bar_bar_hyphen.start.glif + bar_braceright.liga + bar_braceright.liga.glif + bar_bracketright.liga + bar_bracketright.liga.glif + bar_equal.liga + bar_equal.liga.glif + bar_equal.start + bar_equal.start.glif + bar_greater.liga + bar_greater.liga.glif + bar_hyphen.liga + bar_hyphen.liga.glif + bar_hyphen.start + bar_hyphen.start.glif blinebelow blinebelow.glif braceleft braceleft.glif + braceleft_bar.liga + braceleft_bar.liga.glif braceright braceright.glif bracketleft bracketleft.glif + bracketleft_bar.liga + bracketleft_bar.liga.glif bracketright bracketright.glif + bracketright_numbersign.liga + bracketright_numbersign.liga.glif breve breve.glif breveacute @@ -620,6 +688,18 @@ colon.glif colon.fig colon.fig.glif + colon_colon.liga + colon_colon.liga.glif + colon_colon_colon.liga + colon_colon_colon.liga.glif + colon_colon_equal.liga + colon_colon_equal.liga.glif + colon_equal.liga + colon_equal.liga.glif + colon_greater.liga + colon_greater.liga.glif + colon_less.liga + colon_less.liga.glif comma comma.glif commaaboverightcmb @@ -636,8 +716,32 @@ dagger.glif daggerdbl daggerdbl.glif + darkshade + darkshade.glif + dbldnhorzbxd + dbldnhorzbxd.glif + dbldnleftbxd + dbldnleftbxd.glif + dbldnrightbxd + dbldnrightbxd.glif + dblhorzbxd + dblhorzbxd.glif dblprimemod dblprimemod.glif + dbluphorzbxd + dbluphorzbxd.glif + dblupleftbxd + dblupleftbxd.glif + dbluprightbxd + dbluprightbxd.glif + dblvertbxd + dblvertbxd.glif + dblverthorzbxd + dblverthorzbxd.glif + dblvertleftbxd + dblvertleftbxd.glif + dblvertrightbxd + dblvertrightbxd.glif dcaron dcaron.glif dcircumflexbelow @@ -676,10 +780,68 @@ divide.glif dlinebelow dlinebelow.glif + dndblhorzsngbxd + dndblhorzsngbxd.glif + dndblleftsngbxd + dndblleftsngbxd.glif + dndblrightsngbxd + dndblrightsngbxd.glif + dneighthblock + dneighthblock.glif + dnfiveeighthsblock + dnfiveeighthsblock.glif + dnhalfblock + dnhalfblock.glif + dnheavyhorzlightbxd + dnheavyhorzlightbxd.glif + dnheavyleftlightbxd + dnheavyleftlightbxd.glif + dnheavyleftuplightbxd + dnheavyleftuplightbxd.glif + dnheavyrightlightbxd + dnheavyrightlightbxd.glif + dnheavyrightuplightbxd + dnheavyrightuplightbxd.glif + dnheavyuphorzlightbxd + dnheavyuphorzlightbxd.glif + dnleftquadrant + dnleftquadrant.glif + dnlighthorzheavybxd + dnlighthorzheavybxd.glif + dnlightleftheavybxd + dnlightleftheavybxd.glif + dnlightleftupheavybxd + dnlightleftupheavybxd.glif + dnlightrightheavybxd + dnlightrightheavybxd.glif + dnlightrightupheavybxd + dnlightrightupheavybxd.glif + dnlightuphorzheavybxd + dnlightuphorzheavybxd.glif + dnquarterblock + dnquarterblock.glif + dnrightquadrant + dnrightquadrant.glif + dnseveneighthsblock + dnseveneighthsblock.glif + dnsnghorzdblbxd + dnsnghorzdblbxd.glif + dnsngleftdblbxd + dnsngleftdblbxd.glif + dnsngrightdblbxd + dnsngrightdblbxd.glif + dnthreeeighthsblock + dnthreeeighthsblock.glif + dnthreequartersblock + dnthreequartersblock.glif dollar dollar.glif dollar.bar dollar.bar.glif + dollar_greater.liga + dollar_greater.liga.glif + dollar_greater.ligabar + dollar_greater.ligabar.glif dong dong.glif dotaccent @@ -748,12 +910,86 @@ eogonek.glif equal equal.glif + equal.end + equal.end.glif + equal.middle + equal.middle.glif + equal.start + equal.start.glif + equal_asciitilde.liga + equal_asciitilde.liga.glif + equal_bar.end + equal_bar.end.glif + equal_bar.liga + equal_bar.liga.glif + equal_bar_bar.end + equal_bar_bar.end.glif + equal_bar_bar.liga + equal_bar_bar.liga.glif + equal_bar_bar_equal.middle + equal_bar_bar_equal.middle.glif + equal_bar_equal.middle + equal_bar_equal.middle.glif + equal_colon_equal.middle + equal_colon_equal.middle.glif + equal_equal.liga + equal_equal.liga.glif + equal_equal_equal.liga + equal_equal_equal.liga.glif + equal_exclam_equal.middle + equal_exclam_equal.middle.glif + equal_greater.end + equal_greater.end.glif + equal_greater.liga + equal_greater.liga.glif + equal_greater_equal.middle + equal_greater_equal.middle.glif + equal_greater_greater.end + equal_greater_greater.end.glif + equal_greater_greater.liga + equal_greater_greater.liga.glif + equal_greater_greater_equal.m + equal_greater_greater_equal.m.glif + equal_less.end + equal_less.end.glif + equal_less.liga + equal_less.liga.glif + equal_less_equal.middle + equal_less_equal.middle.glif + equal_less_less.end + equal_less_less.end.glif + equal_less_less.liga + equal_less_less.liga.glif + equal_less_less_equal.middle + equal_less_less_equal.middle.glif + equal_slash.end + equal_slash.end.glif + equal_slash.liga + equal_slash.liga.glif + equal_slash_equal.middle + equal_slash_equal.middle.glif + equal_slash_slash.end + equal_slash_slash.end.glif + equal_slash_slash.liga + equal_slash_slash.liga.glif + equal_slash_slash_equal.middle + equal_slash_slash_equal.middle.glif eth eth.glif etilde etilde.glif exclam exclam.glif + exclam_asciitilde.liga + exclam_asciitilde.liga.glif + exclam_equal.liga + exclam_equal.liga.glif + exclam_equal_equal.liga + exclam_equal_equal.liga.glif + exclam_exclam.liga + exclam_exclam.liga.glif + exclam_exclam_period.liga + exclam_exclam_period.liga.glif exclamdown exclamdown.glif f @@ -788,6 +1024,8 @@ fracbar.glif fraction fraction.glif + fullblock + fullblock.glif g g.glif gbreve @@ -812,6 +1050,34 @@ gravecmb.cap.glif greater greater.glif + greater_colon.liga + greater_colon.liga.glif + greater_equal + greater_equal.glif + greater_equal.liga + greater_equal.liga.glif + greater_equal.start + greater_equal.start.glif + greater_equal_greater.liga + greater_equal_greater.liga.glif + greater_greater.liga + greater_greater.liga.glif + greater_greater_equal.liga + greater_greater_equal.liga.glif + greater_greater_equal.start + greater_greater_equal.start.glif + greater_greater_greater.liga + greater_greater_greater.liga.glif + greater_greater_hyphen.liga + greater_greater_hyphen.liga.glif + greater_greater_hyphen.start + greater_greater_hyphen.start.glif + greater_hyphen.liga + greater_hyphen.liga.glif + greater_hyphen.start + greater_hyphen.start.glif + greater_hyphen_greater.liga + greater_hyphen_greater.liga.glif greaterequal greaterequal.glif guillemetleft @@ -834,6 +1100,52 @@ hcircumflex.glif hdotbelow hdotbelow.glif + heavydbldashhorzbxd + heavydbldashhorzbxd.glif + heavydbldashvertbxd + heavydbldashvertbxd.glif + heavydnbxd + heavydnbxd.glif + heavydnhorzbxd + heavydnhorzbxd.glif + heavydnleftbxd + heavydnleftbxd.glif + heavydnrightbxd + heavydnrightbxd.glif + heavyhorzbxd + heavyhorzbxd.glif + heavyleftbxd + heavyleftbxd.glif + heavyleftlightrightbxd + heavyleftlightrightbxd.glif + heavyquaddashhorzbxd + heavyquaddashhorzbxd.glif + heavyquaddashvertbxd + heavyquaddashvertbxd.glif + heavyrightbxd + heavyrightbxd.glif + heavytrpldashhorzbxd + heavytrpldashhorzbxd.glif + heavytrpldashvertbxd + heavytrpldashvertbxd.glif + heavyupbxd + heavyupbxd.glif + heavyuphorzbxd + heavyuphorzbxd.glif + heavyupleftbxd + heavyupleftbxd.glif + heavyuplightdnbxd + heavyuplightdnbxd.glif + heavyuprightbxd + heavyuprightbxd.glif + heavyvertbxd + heavyvertbxd.glif + heavyverthorzbxd + heavyverthorzbxd.glif + heavyvertleftbxd + heavyvertleftbxd.glif + heavyvertrightbxd + heavyvertrightbxd.glif hlinebelow hlinebelow.glif hookcmb @@ -850,6 +1162,54 @@ hungarumlautcmb.cap.glif hyphen hyphen.glif + hyphen.end + hyphen.end.glif + hyphen.middle + hyphen.middle.glif + hyphen.start + hyphen.start.glif + hyphen_asciitilde.liga + hyphen_asciitilde.liga.glif + hyphen_bar.end + hyphen_bar.end.glif + hyphen_bar.liga + hyphen_bar.liga.glif + hyphen_bar_bar.end + hyphen_bar_bar.end.glif + hyphen_bar_bar.liga + hyphen_bar_bar.liga.glif + hyphen_bar_bar_hyphen.middle + hyphen_bar_bar_hyphen.middle.glif + hyphen_bar_hyphen.middle + hyphen_bar_hyphen.middle.glif + hyphen_greater.end + hyphen_greater.end.glif + hyphen_greater.liga + hyphen_greater.liga.glif + hyphen_greater_greater.end + hyphen_greater_greater.end.glif + hyphen_greater_greater.liga + hyphen_greater_greater.liga.glif + hyphen_greater_greater_hyphen.m + hyphen_greater_greater_hyphen.m.glif + hyphen_greater_hyphen.middle + hyphen_greater_hyphen.middle.glif + hyphen_hyphen.liga + hyphen_hyphen.liga.glif + hyphen_hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga.glif + hyphen_less.end + hyphen_less.end.glif + hyphen_less.liga + hyphen_less.liga.glif + hyphen_less_hyphen.middle + hyphen_less_hyphen.middle.glif + hyphen_less_less.end + hyphen_less_less.end.glif + hyphen_less_less.liga + hyphen_less_less.liga.glif + hyphen_less_less_hyphen.middle + hyphen_less_less_hyphen.middle.glif i i.glif iacute @@ -904,10 +1264,174 @@ lcommaaccent.glif ldotbelow ldotbelow.glif + leftdnheavyrightuplightbxd + leftdnheavyrightuplightbxd.glif + lefteighthblock + lefteighthblock.glif + leftfiveeighthsblock + leftfiveeighthsblock.glif + lefthalfblock + lefthalfblock.glif + leftheavyrightdnlightbxd + leftheavyrightdnlightbxd.glif + leftheavyrightuplightbxd + leftheavyrightuplightbxd.glif + leftheavyrightvertlightbxd + leftheavyrightvertlightbxd.glif + leftlightrightdnheavybxd + leftlightrightdnheavybxd.glif + leftlightrightupheavybxd + leftlightrightupheavybxd.glif + leftlightrightvertheavybxd + leftlightrightvertheavybxd.glif + leftquarterblock + leftquarterblock.glif + leftseveneighthsblock + leftseveneighthsblock.glif + leftthreeeighthsblock + leftthreeeighthsblock.glif + leftthreequartersblock + leftthreequartersblock.glif + leftupheavyrightdnlightbxd + leftupheavyrightdnlightbxd.glif less less.glif + less_asciitilde.liga + less_asciitilde.liga.glif + less_asciitilde_asciitilde.liga + less_asciitilde_asciitilde.liga.glif + less_asciitilde_greater.liga + less_asciitilde_greater.liga.glif + less_asterisk.liga + less_asterisk.liga.glif + less_asterisk_greater.liga + less_asterisk_greater.liga.glif + less_bar.liga + less_bar.liga.glif + less_bar_bar.liga + less_bar_bar.liga.glif + less_bar_bar_bar.liga + less_bar_bar_bar.liga.glif + less_bar_greater.liga + less_bar_greater.liga.glif + less_colon.liga + less_colon.liga.glif + less_dollar.liga + less_dollar.liga.glif + less_dollar.ligabar + less_dollar.ligabar.glif + less_dollar_greater.liga + less_dollar_greater.liga.glif + less_dollar_greater.ligabar + less_dollar_greater.ligabar.glif + less_equal + less_equal.glif + less_equal.liga + less_equal.liga.glif + less_equal.start + less_equal.start.glif + less_equal_greater.liga + less_equal_greater.liga.glif + less_equal_less.liga + less_equal_less.liga.glif + less_exclam_hyphen_hyphen.liga + less_exclam_hyphen_hyphen.liga.glif + less_greater.liga + less_greater.liga.glif + less_hyphen.liga + less_hyphen.liga.glif + less_hyphen.start + less_hyphen.start.glif + less_hyphen_greater.liga + less_hyphen_greater.liga.glif + less_hyphen_less.liga + less_hyphen_less.liga.glif + less_less.liga + less_less.liga.glif + less_less_equal.liga + less_less_equal.liga.glif + less_less_equal.start + less_less_equal.start.glif + less_less_hyphen.liga + less_less_hyphen.liga.glif + less_less_hyphen.start + less_less_hyphen.start.glif + less_less_less.liga + less_less_less.liga.glif + less_plus.liga + less_plus.liga.glif + less_plus_greater.liga + less_plus_greater.liga.glif + less_slash.liga + less_slash.liga.glif + less_slash_greater.liga + less_slash_greater.liga.glif lessequal lessequal.glif + lightarcdnleftbxd + lightarcdnleftbxd.glif + lightarcdnrightbxd + lightarcdnrightbxd.glif + lightarcupleftbxd + lightarcupleftbxd.glif + lightarcuprightbxd + lightarcuprightbxd.glif + lightdbldashhorzbxd + lightdbldashhorzbxd.glif + lightdbldashvertbxd + lightdbldashvertbxd.glif + lightdiagcrossbxd + lightdiagcrossbxd.glif + lightdiagupleftdnrightbxd + lightdiagupleftdnrightbxd.glif + lightdiaguprightdnleftbxd + lightdiaguprightdnleftbxd.glif + lightdnbxd + lightdnbxd.glif + lightdnhorzbxd + lightdnhorzbxd.glif + lightdnleftbxd + lightdnleftbxd.glif + lightdnrightbxd + lightdnrightbxd.glif + lighthorzbxd + lighthorzbxd.glif + lightleftbxd + lightleftbxd.glif + lightleftheavyrightbxd + lightleftheavyrightbxd.glif + lightquaddashhorzbxd + lightquaddashhorzbxd.glif + lightquaddashvertbxd + lightquaddashvertbxd.glif + lightrightbxd + lightrightbxd.glif + lightshade + lightshade.glif + lighttrpldashhorzbxd + lighttrpldashhorzbxd.glif + lighttrpldashvertbxd + lighttrpldashvertbxd.glif + lightupbxd + lightupbxd.glif + lightupheavydnbxd + lightupheavydnbxd.glif + lightuphorzbxd + lightuphorzbxd.glif + lightupleftbxd + lightupleftbxd.glif + lightuprightbxd + lightuprightbxd.glif + lightvertbxd + lightvertbxd.glif + lightverthorzbxd + lightverthorzbxd.glif + lightvertleftbxd + lightvertleftbxd.glif + lightvertrightbxd + lightvertrightbxd.glif + ligspacer + ligspacer.glif llinebelow llinebelow.glif lmacrondotbelow @@ -932,6 +1456,8 @@ mdotaccent.glif mdotbelow mdotbelow.glif + mediumshade + mediumshade.glif middotcat middotcat.glif middotcat.cap @@ -980,6 +1506,30 @@ ntilde.glif numbersign numbersign.glif + numbersign.end + numbersign.end.glif + numbersign.middle + numbersign.middle.glif + numbersign.start + numbersign.start.glif + numbersign_braceleft.liga + numbersign_braceleft.liga.glif + numbersign_bracketleft.liga + numbersign_bracketleft.liga.glif + numbersign_colon.liga + numbersign_colon.liga.glif + numbersign_equal.liga + numbersign_equal.liga.glif + numbersign_exclam.liga + numbersign_exclam.liga.glif + numbersign_parenleft.liga + numbersign_parenleft.liga.glif + numbersign_question.liga + numbersign_question.liga.glif + numbersign_underscore.liga + numbersign_underscore.liga.glif + numbersign_underscore_parenleft + numbersign_underscore_parenleft.glif o o.glif oacute @@ -1076,8 +1626,24 @@ parenright.glif percent percent.glif + percent_percent.liga + percent_percent.liga.glif period period.glif + period_equal.liga + period_equal.liga.glif + period_hyphen.liga + period_hyphen.liga.glif + period_period.liga + period_period.liga.glif + period_period_equal.liga + period_period_equal.liga.glif + period_period_less.liga + period_period_less.liga.glif + period_period_period.liga + period_period_period.liga.glif + period_question.liga + period_question.liga.glif periodcentered periodcentered.glif peso @@ -1086,6 +1652,12 @@ peso.bar.glif plus plus.glif + plus_greater.liga + plus_greater.liga.glif + plus_plus.liga + plus_plus.liga.glif + plus_plus_plus.liga + plus_plus_plus.liga.glif plusminus plusminus.glif primemod @@ -1096,6 +1668,14 @@ q.glif question question.glif + question_colon.liga + question_colon.liga.glif + question_equal.liga + question_equal.liga.glif + question_period.liga + question_period.liga.glif + question_question.liga + question_question.liga.glif questiondown questiondown.glif quotedbl @@ -1128,6 +1708,26 @@ rdotbelow.glif registered registered.glif + rightdnheavyleftuplightbxd + rightdnheavyleftuplightbxd.glif + righteighthblock + righteighthblock.glif + righthalfblock + righthalfblock.glif + rightheavyleftdnlightbxd + rightheavyleftdnlightbxd.glif + rightheavyleftuplightbxd + rightheavyleftuplightbxd.glif + rightheavyleftvertlightbxd + rightheavyleftvertlightbxd.glif + rightlightleftdnheavybxd + rightlightleftdnheavybxd.glif + rightlightleftupheavybxd + rightlightleftupheavybxd.glif + rightlightleftvertheavybxd + rightlightleftvertheavybxd.glif + rightupheavyleftdnlightbxd + rightupheavyleftdnlightbxd.glif ring ring.glif ringcmb @@ -1162,6 +1762,8 @@ section.glif semicolon semicolon.glif + semicolon_semicolon.liga + semicolon_semicolon.liga.glif servicemark servicemark.glif seven @@ -1188,6 +1790,24 @@ six.sup.glif slash slash.glif + slash_asterisk.liga + slash_asterisk.liga.glif + slash_backslash.liga + slash_backslash.liga.glif + slash_equal.liga + slash_equal.liga.glif + slash_equal.start + slash_equal.start.glif + slash_greater.liga + slash_greater.liga.glif + slash_slash.liga + slash_slash.liga.glif + slash_slash_equal.liga + slash_slash_equal.liga.glif + slash_slash_equal.start + slash_slash_equal.start.glif + slash_slash_slash.liga + slash_slash_slash.liga.glif space space.glif sterling @@ -1294,6 +1914,14 @@ umacron.glif underscore underscore.glif + underscore.end + underscore.end.glif + underscore.middle + underscore.middle.glif + underscore.start + underscore.start.glif + underscore_bar_underscore.m + underscore_bar_underscore.m.glif uni00A0 uni00A_0.glif uni0326 @@ -1308,10 +1936,88 @@ uni20B_A_.glif uni20BD uni20B_D_.glif + uni2610 + uni2610.glif + uni2611 + uni2611.glif + uni2612 + uni2612.glif + uni2713 + uni2713.glif uniA788 uniA_788.glif + uniE0A0 + uniE_0A_0.glif + uniE0A1 + uniE_0A_1.glif + uniE0A2 + uniE_0A_2.glif + uniE0B0 + uniE_0B_0.glif + uniE0B1 + uniE_0B_1.glif + uniE0B2 + uniE_0B_2.glif + uniE0B3 + uniE_0B_3.glif uogonek uogonek.glif + updblhorzsngbxd + updblhorzsngbxd.glif + updblleftsngbxd + updblleftsngbxd.glif + updblrightsngbxd + updblrightsngbxd.glif + upeighthblock + upeighthblock.glif + uphalfblock + uphalfblock.glif + upheavydnhorzlightbxd + upheavydnhorzlightbxd.glif + upheavyhorzlightbxd + upheavyhorzlightbxd.glif + upheavyleftdnlightbxd + upheavyleftdnlightbxd.glif + upheavyleftlightbxd + upheavyleftlightbxd.glif + upheavyrightdnlightbxd + upheavyrightdnlightbxd.glif + upheavyrightlightbxd + upheavyrightlightbxd.glif + upleftdnleftdnrightquadrant + upleftdnleftdnrightquadrant.glif + upleftdnrightquadrant + upleftdnrightquadrant.glif + upleftquadrant + upleftquadrant.glif + upleftuprightdnleftquadrant + upleftuprightdnleftquadrant.glif + upleftuprightdnrightquadrant + upleftuprightdnrightquadrant.glif + uplightdnhorzheavybxd + uplightdnhorzheavybxd.glif + uplighthorzheavybxd + uplighthorzheavybxd.glif + uplightleftdnheavybxd + uplightleftdnheavybxd.glif + uplightleftheavybxd + uplightleftheavybxd.glif + uplightrightdnheavybxd + uplightrightdnheavybxd.glif + uplightrightheavybxd + uplightrightheavybxd.glif + uprightdnleftdnrightquadrant + uprightdnleftdnrightquadrant.glif + uprightdnleftquadrant + uprightdnleftquadrant.glif + uprightquadrant + uprightquadrant.glif + upsnghorzdblbxd + upsnghorzdblbxd.glif + upsngleftdblbxd + upsngleftdblbxd.glif + upsngrightdblbxd + upsngrightdblbxd.glif uring uring.glif utilde @@ -1320,12 +2026,38 @@ v.glif vdotbelow vdotbelow.glif + vertdblhorzsngbxd + vertdblhorzsngbxd.glif + vertdblleftsngbxd + vertdblleftsngbxd.glif + vertdblrightsngbxd + vertdblrightsngbxd.glif + vertheavyhorzlightbxd + vertheavyhorzlightbxd.glif + vertheavyleftlightbxd + vertheavyleftlightbxd.glif + vertheavyrightlightbxd + vertheavyrightlightbxd.glif verticallinelowmod verticallinelowmod.glif verticallinemod verticallinemod.glif + vertlighthorzheavybxd + vertlighthorzheavybxd.glif + vertlightleftheavybxd + vertlightleftheavybxd.glif + vertlightrightheavybxd + vertlightrightheavybxd.glif + vertsnghorzdblbxd + vertsnghorzdblbxd.glif + vertsngleftdblbxd + vertsngleftdblbxd.glif + vertsngrightdblbxd + vertsngrightdblbxd.glif w w.glif + w_w_w.liga + w_w_w.liga.glif wacute wacute.glif wcircumflex diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/darkshade.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/darkshade.glif new file mode 100644 index 00000000..fd2eb1c6 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/darkshade.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnhorzbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnhorzbxd.glif new file mode 100644 index 00000000..c9659c7d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnhorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnleftbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnleftbxd.glif new file mode 100644 index 00000000..c1cb1a5d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnrightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnrightbxd.glif new file mode 100644 index 00000000..b0eb33d0 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbldnrightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblhorzbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblhorzbxd.glif new file mode 100644 index 00000000..e43c87cc --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbluphorzbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbluphorzbxd.glif new file mode 100644 index 00000000..a90d518d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbluphorzbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblupleftbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblupleftbxd.glif new file mode 100644 index 00000000..44c1f08d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblupleftbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbluprightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbluprightbxd.glif new file mode 100644 index 00000000..acaeaa92 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dbluprightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertbxd.glif new file mode 100644 index 00000000..63ba3930 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblverthorzbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblverthorzbxd.glif new file mode 100644 index 00000000..4f0b225b --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblverthorzbxd.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertleftbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertleftbxd.glif new file mode 100644 index 00000000..b60eb844 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertleftbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertrightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertrightbxd.glif new file mode 100644 index 00000000..3e169b8f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dblvertrightbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblhorzsngbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblhorzsngbxd.glif new file mode 100644 index 00000000..fa4f58c6 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblleftsngbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblleftsngbxd.glif new file mode 100644 index 00000000..f5e60866 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblrightsngbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblrightsngbxd.glif new file mode 100644 index 00000000..f299a0ec --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dndblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dneighthblock.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dneighthblock.glif new file mode 100644 index 00000000..ff791c74 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dneighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnfiveeighthsblock.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnfiveeighthsblock.glif new file mode 100644 index 00000000..99bd1498 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnhalfblock.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnhalfblock.glif new file mode 100644 index 00000000..001cf3fb --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnhalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif new file mode 100644 index 00000000..37f7e2ee --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyleftlightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyleftlightbxd.glif new file mode 100644 index 00000000..04054543 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif new file mode 100644 index 00000000..a720dcc7 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyrightlightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyrightlightbxd.glif new file mode 100644 index 00000000..9ba6704c --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif new file mode 100644 index 00000000..815a695d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif new file mode 100644 index 00000000..f5ba7604 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnheavyuphorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnleftquadrant.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnleftquadrant.glif new file mode 100644 index 00000000..42729338 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlighthorzheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlighthorzheavybxd.glif new file mode 100644 index 00000000..28b25c49 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightleftheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightleftheavybxd.glif new file mode 100644 index 00000000..59a51b0f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightleftupheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightleftupheavybxd.glif new file mode 100644 index 00000000..70904268 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightrightheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightrightheavybxd.glif new file mode 100644 index 00000000..b4c6c636 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightrightupheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightrightupheavybxd.glif new file mode 100644 index 00000000..c5576d28 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif new file mode 100644 index 00000000..22f12436 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnlightuphorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnquarterblock.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnquarterblock.glif new file mode 100644 index 00000000..c2180b50 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnrightquadrant.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnrightquadrant.glif new file mode 100644 index 00000000..9858382e --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnrightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnseveneighthsblock.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnseveneighthsblock.glif new file mode 100644 index 00000000..ecdac3da --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsnghorzdblbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsnghorzdblbxd.glif new file mode 100644 index 00000000..ecff9c4d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsngleftdblbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsngleftdblbxd.glif new file mode 100644 index 00000000..9053ebaf --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsngrightdblbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsngrightdblbxd.glif new file mode 100644 index 00000000..d9699e08 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnthreeeighthsblock.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnthreeeighthsblock.glif new file mode 100644 index 00000000..7febe2aa --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnthreequartersblock.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnthreequartersblock.glif new file mode 100644 index 00000000..a79dae14 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dnthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar_greater.liga.glif new file mode 100644 index 00000000..f5b0985a --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar_greater.liga.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar_greater.ligabar.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar_greater.ligabar.glif new file mode 100644 index 00000000..8e261256 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/dollar_greater.ligabar.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.end.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.end.glif new file mode 100644 index 00000000..ecbaab47 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.middle.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.middle.glif new file mode 100644 index 00000000..0d0db702 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.start.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.start.glif new file mode 100644 index 00000000..6021f8e3 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal.start.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_asciitilde.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_asciitilde.liga.glif new file mode 100644 index 00000000..ab07ef9b --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_asciitilde.liga.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar.end.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar.end.glif new file mode 100644 index 00000000..232e0b99 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar.end.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar.liga.glif new file mode 100644 index 00000000..01c12405 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar.end.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar.end.glif new file mode 100644 index 00000000..01978156 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar.end.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar.liga.glif new file mode 100644 index 00000000..95346dea --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif new file mode 100644 index 00000000..ba8dc29a --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_bar_equal.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_equal.middle.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_equal.middle.glif new file mode 100644 index 00000000..8b506a51 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_bar_equal.middle.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_colon_equal.middle.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_colon_equal.middle.glif new file mode 100644 index 00000000..65ea2e81 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_colon_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_equal.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_equal.liga.glif new file mode 100644 index 00000000..d4ae560d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_equal.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_equal_equal.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_equal_equal.liga.glif new file mode 100644 index 00000000..a0c2d527 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_equal_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_exclam_equal.middle.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_exclam_equal.middle.glif new file mode 100644 index 00000000..bd1e83c8 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_exclam_equal.middle.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater.end.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater.end.glif new file mode 100644 index 00000000..3278f42e --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater.end.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater.liga.glif new file mode 100644 index 00000000..405359cc --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_equal.middle.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_equal.middle.glif new file mode 100644 index 00000000..2c7770cc --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_equal.middle.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater.end.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater.end.glif new file mode 100644 index 00000000..aeddd7b9 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater.end.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater.liga.glif new file mode 100644 index 00000000..4ec81e44 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif new file mode 100644 index 00000000..6948776f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_greater_greater_equal.m.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less.end.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less.end.glif new file mode 100644 index 00000000..7e34ecad --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less.end.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less.liga.glif new file mode 100644 index 00000000..06227a0d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_equal.middle.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_equal.middle.glif new file mode 100644 index 00000000..7e5440c3 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_equal.middle.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less.end.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less.end.glif new file mode 100644 index 00000000..bf3b7005 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less.end.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less.liga.glif new file mode 100644 index 00000000..fb871b7d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less_equal.middle.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less_equal.middle.glif new file mode 100644 index 00000000..e729b3be --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_less_less_equal.middle.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash.end.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash.end.glif new file mode 100644 index 00000000..e77be153 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash.end.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash.liga.glif new file mode 100644 index 00000000..a9dfb6f8 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_equal.middle.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_equal.middle.glif new file mode 100644 index 00000000..52d981a7 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_equal.middle.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash.end.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash.end.glif new file mode 100644 index 00000000..15f2aa30 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash.end.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash.liga.glif new file mode 100644 index 00000000..a5037e75 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif new file mode 100644 index 00000000..00c941a2 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/equal_slash_slash_equal.middle.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_asciitilde.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_asciitilde.liga.glif new file mode 100644 index 00000000..1818b85d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_asciitilde.liga.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_equal.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_equal.liga.glif new file mode 100644 index 00000000..36be880b --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_equal.liga.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_equal_equal.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_equal_equal.liga.glif new file mode 100644 index 00000000..5a1400e1 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_equal_equal.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_exclam.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_exclam.liga.glif new file mode 100644 index 00000000..30253af4 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_exclam.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_exclam_period.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_exclam_period.liga.glif new file mode 100644 index 00000000..ba1379e0 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/exclam_exclam_period.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/fullblock.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/fullblock.glif new file mode 100644 index 00000000..2c547d1b --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/fullblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_colon.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_colon.liga.glif new file mode 100644 index 00000000..df151bd1 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.glif new file mode 100644 index 00000000..a060134c --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.liga.glif new file mode 100644 index 00000000..6b000f13 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.start.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.start.glif new file mode 100644 index 00000000..bd31a9ff --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal.start.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal_greater.liga.glif new file mode 100644 index 00000000..291e4666 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_equal_greater.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater.liga.glif new file mode 100644 index 00000000..498eb945 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_equal.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_equal.liga.glif new file mode 100644 index 00000000..87e149f7 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_equal.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_equal.start.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_equal.start.glif new file mode 100644 index 00000000..bebafa56 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_equal.start.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_greater.liga.glif new file mode 100644 index 00000000..eb4cdb6c --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_greater.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif new file mode 100644 index 00000000..c3a6e23a --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_hyphen.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_hyphen.start.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_hyphen.start.glif new file mode 100644 index 00000000..848c775f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_greater_hyphen.start.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen.liga.glif new file mode 100644 index 00000000..68c6401d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen.liga.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen.start.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen.start.glif new file mode 100644 index 00000000..53c9bf8f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen.start.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif new file mode 100644 index 00000000..b92933c5 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/greater_hyphen_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydbldashhorzbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydbldashhorzbxd.glif new file mode 100644 index 00000000..702827d8 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydbldashvertbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydbldashvertbxd.glif new file mode 100644 index 00000000..6aa8055f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnbxd.glif new file mode 100644 index 00000000..f44369da --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnhorzbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnhorzbxd.glif new file mode 100644 index 00000000..1a9c562c --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnleftbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnleftbxd.glif new file mode 100644 index 00000000..dddb8d03 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnrightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnrightbxd.glif new file mode 100644 index 00000000..22a584aa --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavydnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyhorzbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyhorzbxd.glif new file mode 100644 index 00000000..618372ad --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyhorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyleftbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyleftbxd.glif new file mode 100644 index 00000000..aa0ed90a --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyleftlightrightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyleftlightrightbxd.glif new file mode 100644 index 00000000..abd61ef5 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyleftlightrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif new file mode 100644 index 00000000..42e19747 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyquaddashvertbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyquaddashvertbxd.glif new file mode 100644 index 00000000..04e9430a --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyrightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyrightbxd.glif new file mode 100644 index 00000000..d6b930a4 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif new file mode 100644 index 00000000..8c33263a --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavytrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavytrpldashvertbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavytrpldashvertbxd.glif new file mode 100644 index 00000000..332aa0b7 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavytrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyupbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyupbxd.glif new file mode 100644 index 00000000..88706f34 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuphorzbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuphorzbxd.glif new file mode 100644 index 00000000..644bd3c1 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyupleftbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyupleftbxd.glif new file mode 100644 index 00000000..88a43f59 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuplightdnbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuplightdnbxd.glif new file mode 100644 index 00000000..98585f3c --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuplightdnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuprightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuprightbxd.glif new file mode 100644 index 00000000..12eebf8b --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertbxd.glif new file mode 100644 index 00000000..91405da0 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyverthorzbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyverthorzbxd.glif new file mode 100644 index 00000000..b8d84bd3 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertleftbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertleftbxd.glif new file mode 100644 index 00000000..dcb956bc --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertrightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertrightbxd.glif new file mode 100644 index 00000000..4d6049c0 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/heavyvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.end.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.end.glif new file mode 100644 index 00000000..7b69f707 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.middle.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.middle.glif new file mode 100644 index 00000000..2424f7e8 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.start.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.start.glif new file mode 100644 index 00000000..697cc49c --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif new file mode 100644 index 00000000..2acb7f39 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_asciitilde.liga.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar.end.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar.end.glif new file mode 100644 index 00000000..0891cfaf --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar.end.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar.liga.glif new file mode 100644 index 00000000..32029216 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar.end.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar.end.glif new file mode 100644 index 00000000..83bc8fca --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar.end.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif new file mode 100644 index 00000000..553b464f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif new file mode 100644 index 00000000..0cfa10db --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_bar_hyphen.middle.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif new file mode 100644 index 00000000..440d4c90 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_bar_hyphen.middle.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater.end.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater.end.glif new file mode 100644 index 00000000..d6f84438 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater.end.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater.liga.glif new file mode 100644 index 00000000..fbd75a23 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater.liga.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater.end.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater.end.glif new file mode 100644 index 00000000..cd800c21 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater.end.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif new file mode 100644 index 00000000..29ed45a3 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif new file mode 100644 index 00000000..c0cae758 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_greater_hyphen.m.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif new file mode 100644 index 00000000..917ed55e --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_greater_hyphen.middle.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_hyphen.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_hyphen.liga.glif new file mode 100644 index 00000000..6f8fac00 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_hyphen.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..7c9168ee --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less.end.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less.end.glif new file mode 100644 index 00000000..ee319efb --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less.end.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less.liga.glif new file mode 100644 index 00000000..db0d799f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less.liga.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif new file mode 100644 index 00000000..bee3916e --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_hyphen.middle.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less.end.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less.end.glif new file mode 100644 index 00000000..68cb4d1d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less.end.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less.liga.glif new file mode 100644 index 00000000..e402adbb --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif new file mode 100644 index 00000000..0b8b4d0b --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/hyphen_less_less_hyphen.middle.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif new file mode 100644 index 00000000..2a51a287 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftdnheavyrightuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lefteighthblock.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lefteighthblock.glif new file mode 100644 index 00000000..8d44dad4 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lefteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftfiveeighthsblock.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftfiveeighthsblock.glif new file mode 100644 index 00000000..0eb9ccfc --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftfiveeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lefthalfblock.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lefthalfblock.glif new file mode 100644 index 00000000..325c05f6 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lefthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif new file mode 100644 index 00000000..caada6c8 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif new file mode 100644 index 00000000..8b33bec2 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif new file mode 100644 index 00000000..3b56b96e --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftheavyrightvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif new file mode 100644 index 00000000..f32d07c0 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightupheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightupheavybxd.glif new file mode 100644 index 00000000..9fc34b5b --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif new file mode 100644 index 00000000..598f7689 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftlightrightvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftquarterblock.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftquarterblock.glif new file mode 100644 index 00000000..036dad83 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftquarterblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftseveneighthsblock.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftseveneighthsblock.glif new file mode 100644 index 00000000..74b69747 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftseveneighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftthreeeighthsblock.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftthreeeighthsblock.glif new file mode 100644 index 00000000..e5c4283a --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftthreeeighthsblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftthreequartersblock.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftthreequartersblock.glif new file mode 100644 index 00000000..5ae5b2e3 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftthreequartersblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif new file mode 100644 index 00000000..0ac6ddaf --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/leftupheavyrightdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde.liga.glif new file mode 100644 index 00000000..861fac49 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde.liga.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif new file mode 100644 index 00000000..f919879f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde_asciitilde.liga.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif new file mode 100644 index 00000000..6e6eb543 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asciitilde_greater.liga.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asterisk.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asterisk.liga.glif new file mode 100644 index 00000000..0d2b1acd --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asterisk.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asterisk_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asterisk_greater.liga.glif new file mode 100644 index 00000000..cfe623d5 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_asterisk_greater.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar.liga.glif new file mode 100644 index 00000000..18bb429f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar.liga.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_bar.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_bar.liga.glif new file mode 100644 index 00000000..4faca1b9 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_bar.liga.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif new file mode 100644 index 00000000..6d054746 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_bar_bar.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_greater.liga.glif new file mode 100644 index 00000000..af2ea9e3 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_bar_greater.liga.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_colon.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_colon.liga.glif new file mode 100644 index 00000000..5c8dac56 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_colon.liga.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar.liga.glif new file mode 100644 index 00000000..a0cae59d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar.liga.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar.ligabar.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar.ligabar.glif new file mode 100644 index 00000000..af1679ad --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar.ligabar.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar_greater.liga.glif new file mode 100644 index 00000000..21941a2c --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar_greater.liga.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif new file mode 100644 index 00000000..8c304d3d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_dollar_greater.ligabar.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.glif new file mode 100644 index 00000000..7adca3fa --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.liga.glif new file mode 100644 index 00000000..d95da9dc --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.start.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.start.glif new file mode 100644 index 00000000..533277c8 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal.start.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal_greater.liga.glif new file mode 100644 index 00000000..7dc37013 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal_greater.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal_less.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal_less.liga.glif new file mode 100644 index 00000000..ae503ba2 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_equal_less.liga.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif new file mode 100644 index 00000000..73861a58 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_greater.liga.glif new file mode 100644 index 00000000..d4834845 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_greater.liga.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen.liga.glif new file mode 100644 index 00000000..0480e0b5 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen.liga.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen.start.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen.start.glif new file mode 100644 index 00000000..1ac261c3 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen.start.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen_greater.liga.glif new file mode 100644 index 00000000..7f491715 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen_less.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen_less.liga.glif new file mode 100644 index 00000000..6f660f8c --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_hyphen_less.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less.liga.glif new file mode 100644 index 00000000..0e60f214 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_equal.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_equal.liga.glif new file mode 100644 index 00000000..aa9d53ad --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_equal.start.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_equal.start.glif new file mode 100644 index 00000000..8c36b4fb --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_equal.start.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_hyphen.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_hyphen.liga.glif new file mode 100644 index 00000000..43011532 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_hyphen.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_hyphen.start.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_hyphen.start.glif new file mode 100644 index 00000000..36ff4fa8 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_hyphen.start.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_less.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_less.liga.glif new file mode 100644 index 00000000..b55d864e --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_less_less.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_plus.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_plus.liga.glif new file mode 100644 index 00000000..232b6bfd --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_plus.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_plus_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_plus_greater.liga.glif new file mode 100644 index 00000000..45d62b8f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_plus_greater.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_slash.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_slash.liga.glif new file mode 100644 index 00000000..6a46ec9e --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_slash.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_slash_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_slash_greater.liga.glif new file mode 100644 index 00000000..9fcf9f16 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/less_slash_greater.liga.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcdnleftbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcdnleftbxd.glif new file mode 100644 index 00000000..d6c590bf --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcdnleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcdnrightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcdnrightbxd.glif new file mode 100644 index 00000000..2c2ef6c9 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcdnrightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcupleftbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcupleftbxd.glif new file mode 100644 index 00000000..c0cfb520 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcupleftbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcuprightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcuprightbxd.glif new file mode 100644 index 00000000..307503ea --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightarcuprightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdbldashhorzbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdbldashhorzbxd.glif new file mode 100644 index 00000000..eab523b6 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdbldashhorzbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdbldashvertbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdbldashvertbxd.glif new file mode 100644 index 00000000..7d1904ca --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdbldashvertbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiagcrossbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiagcrossbxd.glif new file mode 100644 index 00000000..d40df9f1 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiagcrossbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif new file mode 100644 index 00000000..fce292f4 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiagupleftdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif new file mode 100644 index 00000000..6a13ce12 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdiaguprightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnbxd.glif new file mode 100644 index 00000000..ad43789a --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnhorzbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnhorzbxd.glif new file mode 100644 index 00000000..0dea7b7d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnhorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnleftbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnleftbxd.glif new file mode 100644 index 00000000..d19b9caf --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnrightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnrightbxd.glif new file mode 100644 index 00000000..bdad23ca --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightdnrightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighthorzbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighthorzbxd.glif new file mode 100644 index 00000000..6f0b2756 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighthorzbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightleftbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightleftbxd.glif new file mode 100644 index 00000000..7d12fe60 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightleftbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightleftheavyrightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightleftheavyrightbxd.glif new file mode 100644 index 00000000..621504d4 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightleftheavyrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightquaddashhorzbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightquaddashhorzbxd.glif new file mode 100644 index 00000000..8ba84c9e --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightquaddashhorzbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightquaddashvertbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightquaddashvertbxd.glif new file mode 100644 index 00000000..739f14c0 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightquaddashvertbxd.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightrightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightrightbxd.glif new file mode 100644 index 00000000..86414804 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightrightbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightshade.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightshade.glif new file mode 100644 index 00000000..156f38e4 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightshade.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif new file mode 100644 index 00000000..44a74bf6 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighttrpldashhorzbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighttrpldashvertbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighttrpldashvertbxd.glif new file mode 100644 index 00000000..133c2d16 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lighttrpldashvertbxd.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupbxd.glif new file mode 100644 index 00000000..c5da75fa --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupheavydnbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupheavydnbxd.glif new file mode 100644 index 00000000..b9ee6c1d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupheavydnbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightuphorzbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightuphorzbxd.glif new file mode 100644 index 00000000..6812b83f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightuphorzbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupleftbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupleftbxd.glif new file mode 100644 index 00000000..1e47c266 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightupleftbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightuprightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightuprightbxd.glif new file mode 100644 index 00000000..f06b42c0 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightuprightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertbxd.glif new file mode 100644 index 00000000..16a9f0d1 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertbxd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightverthorzbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightverthorzbxd.glif new file mode 100644 index 00000000..62c52c58 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightverthorzbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertleftbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertleftbxd.glif new file mode 100644 index 00000000..ff055c1e --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertleftbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertrightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertrightbxd.glif new file mode 100644 index 00000000..f2f8ef17 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/lightvertrightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ligspacer.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ligspacer.glif new file mode 100644 index 00000000..aaf0214e --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/ligspacer.glif @@ -0,0 +1,6 @@ + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/mediumshade.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/mediumshade.glif new file mode 100644 index 00000000..4e438ef8 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/mediumshade.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.end.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.end.glif new file mode 100644 index 00000000..92eb204a --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.end.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.middle.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.middle.glif new file mode 100644 index 00000000..68321a7c --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.middle.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.start.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.start.glif new file mode 100644 index 00000000..cc99e0fa --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign.start.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_braceleft.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_braceleft.liga.glif new file mode 100644 index 00000000..6d2cbc12 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_braceleft.liga.glif @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif new file mode 100644 index 00000000..ca4eef76 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_bracketleft.liga.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_colon.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_colon.liga.glif new file mode 100644 index 00000000..9de750a6 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_colon.liga.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_equal.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_equal.liga.glif new file mode 100644 index 00000000..5e7481fe --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_equal.liga.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_exclam.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_exclam.liga.glif new file mode 100644 index 00000000..a2966057 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_exclam.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_parenleft.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_parenleft.liga.glif new file mode 100644 index 00000000..a9e91090 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_parenleft.liga.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_question.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_question.liga.glif new file mode 100644 index 00000000..80bea61c --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_question.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_underscore.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_underscore.liga.glif new file mode 100644 index 00000000..9058b6ca --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_underscore.liga.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif new file mode 100644 index 00000000..d51eb929 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/numbersign_underscore_parenleft.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/percent_percent.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/percent_percent.liga.glif new file mode 100644 index 00000000..b75582f1 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/percent_percent.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_equal.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_equal.liga.glif new file mode 100644 index 00000000..7db7d1ed --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_equal.liga.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_hyphen.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_hyphen.liga.glif new file mode 100644 index 00000000..ecd7706c --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_hyphen.liga.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period.liga.glif new file mode 100644 index 00000000..df885b62 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_equal.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_equal.liga.glif new file mode 100644 index 00000000..03393fbd --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_equal.liga.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_less.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_less.liga.glif new file mode 100644 index 00000000..8c075a9f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_less.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_period.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_period.liga.glif new file mode 100644 index 00000000..20b6b4b7 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_period_period.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_question.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_question.liga.glif new file mode 100644 index 00000000..944db6df --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/period_question.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_greater.liga.glif new file mode 100644 index 00000000..624d08be --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_greater.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_plus.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_plus.liga.glif new file mode 100644 index 00000000..990783e6 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_plus.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_plus_plus.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_plus_plus.liga.glif new file mode 100644 index 00000000..1b46d86f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/plus_plus_plus.liga.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_colon.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_colon.liga.glif new file mode 100644 index 00000000..a59ecc79 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_colon.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_equal.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_equal.liga.glif new file mode 100644 index 00000000..c0eb0729 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_equal.liga.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_period.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_period.liga.glif new file mode 100644 index 00000000..8be0ead9 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_period.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_question.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_question.liga.glif new file mode 100644 index 00000000..45b9118f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/question_question.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif new file mode 100644 index 00000000..e10e5fc2 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightdnheavyleftuplightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/righteighthblock.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/righteighthblock.glif new file mode 100644 index 00000000..9d954a40 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/righteighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/righthalfblock.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/righthalfblock.glif new file mode 100644 index 00000000..7d4f8cef --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/righthalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif new file mode 100644 index 00000000..644f5a5b --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif new file mode 100644 index 00000000..4814e346 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftuplightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif new file mode 100644 index 00000000..7127b25f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightheavyleftvertlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif new file mode 100644 index 00000000..7f69d482 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftupheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftupheavybxd.glif new file mode 100644 index 00000000..1ca14f37 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftupheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif new file mode 100644 index 00000000..6035ef73 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightlightleftvertheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif new file mode 100644 index 00000000..dba9270c --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/rightupheavyleftdnlightbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/semicolon_semicolon.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/semicolon_semicolon.liga.glif new file mode 100644 index 00000000..a27c014f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/semicolon_semicolon.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_asterisk.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_asterisk.liga.glif new file mode 100644 index 00000000..9c6c9f3a --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_asterisk.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_backslash.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_backslash.liga.glif new file mode 100644 index 00000000..28d62a5d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_backslash.liga.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_equal.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_equal.liga.glif new file mode 100644 index 00000000..e62d6692 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_equal.liga.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_equal.start.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_equal.start.glif new file mode 100644 index 00000000..938232d8 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_equal.start.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_greater.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_greater.liga.glif new file mode 100644 index 00000000..901240f8 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_greater.liga.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash.liga.glif new file mode 100644 index 00000000..f3f2b730 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash.liga.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_equal.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_equal.liga.glif new file mode 100644 index 00000000..abb9e3ca --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_equal.liga.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_equal.start.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_equal.start.glif new file mode 100644 index 00000000..2dbe9733 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_equal.start.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_slash.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_slash.liga.glif new file mode 100644 index 00000000..2da5cfa3 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/slash_slash_slash.liga.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + public.markColor + 0.7843,0.7843,0.7843,1 + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.end.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.end.glif new file mode 100644 index 00000000..bd026331 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.end.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.middle.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.middle.glif new file mode 100644 index 00000000..1b9ba399 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.middle.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.start.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.start.glif new file mode 100644 index 00000000..e02d7176 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore.start.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore_bar_underscore.m.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore_bar_underscore.m.glif new file mode 100644 index 00000000..b66de405 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/underscore_bar_underscore.m.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2610.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2610.glif new file mode 100644 index 00000000..e7c35b63 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2610.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2611.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2611.glif new file mode 100644 index 00000000..6845d8dd --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2611.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2612.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2612.glif new file mode 100644 index 00000000..595e2d84 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2612.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2713.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2713.glif new file mode 100644 index 00000000..a1552e88 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uni2713.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_0.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_0.glif new file mode 100644 index 00000000..fdf6a6ba --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_0.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_1.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_1.glif new file mode 100644 index 00000000..deb5c0ff --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_1.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_2.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_2.glif new file mode 100644 index 00000000..2123da19 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0A_2.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_0.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_0.glif new file mode 100644 index 00000000..c60be63b --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_0.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_1.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_1.glif new file mode 100644 index 00000000..6bdf28fc --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_1.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_2.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_2.glif new file mode 100644 index 00000000..07bb7941 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_2.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_3.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_3.glif new file mode 100644 index 00000000..3a9ec9b1 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uniE_0B_3.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblhorzsngbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblhorzsngbxd.glif new file mode 100644 index 00000000..d61821f8 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblhorzsngbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblleftsngbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblleftsngbxd.glif new file mode 100644 index 00000000..8cb39189 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblleftsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblrightsngbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblrightsngbxd.glif new file mode 100644 index 00000000..25c707f4 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/updblrightsngbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upeighthblock.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upeighthblock.glif new file mode 100644 index 00000000..87701940 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upeighthblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uphalfblock.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uphalfblock.glif new file mode 100644 index 00000000..018ed615 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uphalfblock.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif new file mode 100644 index 00000000..158b497a --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavydnhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyhorzlightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyhorzlightbxd.glif new file mode 100644 index 00000000..d77692f9 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyhorzlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif new file mode 100644 index 00000000..8b5d48ff --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyleftdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyleftlightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyleftlightbxd.glif new file mode 100644 index 00000000..3fb7a207 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyleftlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif new file mode 100644 index 00000000..0adfdfad --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyrightdnlightbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyrightlightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyrightlightbxd.glif new file mode 100644 index 00000000..2037d8de --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upheavyrightlightbxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif new file mode 100644 index 00000000..91309b79 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftdnrightquadrant.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftdnrightquadrant.glif new file mode 100644 index 00000000..9bb17821 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftdnrightquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftquadrant.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftquadrant.glif new file mode 100644 index 00000000..ef21c49d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif new file mode 100644 index 00000000..0d5294c6 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftuprightdnleftquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif new file mode 100644 index 00000000..56cf6e14 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upleftuprightdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif new file mode 100644 index 00000000..489d430a --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightdnhorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplighthorzheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplighthorzheavybxd.glif new file mode 100644 index 00000000..b54fecb4 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplighthorzheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightleftdnheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightleftdnheavybxd.glif new file mode 100644 index 00000000..8c12ca2f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightleftdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightleftheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightleftheavybxd.glif new file mode 100644 index 00000000..168ac26f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightleftheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightrightdnheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightrightdnheavybxd.glif new file mode 100644 index 00000000..f8f71088 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightrightdnheavybxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightrightheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightrightheavybxd.glif new file mode 100644 index 00000000..55aad623 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uplightrightheavybxd.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif new file mode 100644 index 00000000..df5a022e --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightdnleftdnrightquadrant.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightdnleftquadrant.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightdnleftquadrant.glif new file mode 100644 index 00000000..93cbe757 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightdnleftquadrant.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightquadrant.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightquadrant.glif new file mode 100644 index 00000000..de8b454f --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/uprightquadrant.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsnghorzdblbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsnghorzdblbxd.glif new file mode 100644 index 00000000..8aa48edf --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsnghorzdblbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsngleftdblbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsngleftdblbxd.glif new file mode 100644 index 00000000..f67179a7 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsngleftdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsngrightdblbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsngrightdblbxd.glif new file mode 100644 index 00000000..44defda2 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/upsngrightdblbxd.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblhorzsngbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblhorzsngbxd.glif new file mode 100644 index 00000000..4d815b5b --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblhorzsngbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblleftsngbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblleftsngbxd.glif new file mode 100644 index 00000000..ed0b8dcd --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblleftsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblrightsngbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblrightsngbxd.glif new file mode 100644 index 00000000..374166b2 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertdblrightsngbxd.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif new file mode 100644 index 00000000..6f98a0d2 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyhorzlightbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyleftlightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyleftlightbxd.glif new file mode 100644 index 00000000..a7ae7c83 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyleftlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyrightlightbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyrightlightbxd.glif new file mode 100644 index 00000000..3577b6f4 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertheavyrightlightbxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlighthorzheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlighthorzheavybxd.glif new file mode 100644 index 00000000..514e0d7b --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlighthorzheavybxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlightleftheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlightleftheavybxd.glif new file mode 100644 index 00000000..04acbcf3 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlightleftheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlightrightheavybxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlightrightheavybxd.glif new file mode 100644 index 00000000..3341b6e3 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertlightrightheavybxd.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsnghorzdblbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsnghorzdblbxd.glif new file mode 100644 index 00000000..f9f4757d --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsnghorzdblbxd.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsngleftdblbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsngleftdblbxd.glif new file mode 100644 index 00000000..9d9c65d6 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsngleftdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsngrightdblbxd.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsngrightdblbxd.glif new file mode 100644 index 00000000..85458814 --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/vertsngrightdblbxd.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/w_w_w.liga.glif b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/w_w_w.liga.glif new file mode 100644 index 00000000..790db16c --- /dev/null +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/glyphs/w_w_w.liga.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/lib.plist b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/lib.plist index 4de37c00..c90319da 100644 --- a/sources/masters/IntelOneMono-LightItalic-mstr.ufo/lib.plist +++ b/sources/masters/IntelOneMono-LightItalic-mstr.ufo/lib.plist @@ -2,710 +2,6 @@ - com.defcon.sortDescriptor - - - ascending - - .notdef - A - B - C - D - E - F - G - H - I - J - K - L - M - N - O - P - Q - Q.bar - R - S - T - U - V - W - X - Y - Z - a - b - c - d - e - f - g - h - i - j - k - l - m - n - o - p - q - r - s - t - u - v - w - x - y - z - period - comma - colon - semicolon - question - exclam - questiondown - exclamdown - ellipsis - twodotleader - quotedblleft - quotedblright - quotedblbase - quoteleft - quoteright - quotesinglbase - guillemetleft - guillemetright - guilsinglleft - guilsinglright - parenleft - parenright - bracketleft - bracketright - braceleft - braceright - slash - backslash - bar - hyphen - endash - emdash - hyphen.calt - periodcentered - bullet - underscore - ampersand - at - published - copyright - registered - servicemark - trademark - asterisk - dagger - daggerdbl - section - paragraph - zero - one - two - three - four - five - six - seven - eight - nine - colon.fig - plus - divide - minus - equal - notequal - asciitilde - approxequal - multiply - less - greater - lessequal - greaterequal - plusminus - asciicircum - mu - numbersign - percent - quotedbl - quotesingle - ordfeminine - ordmasculine - degree - dollar - dollar.bar - sterling - yen - Euro - naira - naira.bar - peso - peso.bar - uni20BA - uni20BD - uni20B9 - bahtthai - bahtthai.bar - won - won.bar - cent - cent.bar - dong - onehalf - onethird - twothirds - onequarter - threequarters - onefifth - twofifths - threefifths - fourfifths - onesixth - fivesixths - oneeighth - threeeighths - fiveeighths - seveneighths - zero.sup - one.sup - two.sup - three.sup - four.sup - five.sup - six.sup - seven.sup - eight.sup - nine.sup - zero.inf - one.inf - two.inf - three.inf - four.inf - five.inf - six.inf - seven.inf - eight.inf - nine.inf - primemod - dblprimemod - commaturnedmod - apostrophemod - ringhalfleft - ringhalfright - verticallinemod - verticallinelowmod - acute - hungarumlaut - grave - circumflex - caron - breve - tilde - macron - dieresis - dotaccent - ring - uniA788 - macronlowmod - cedilla - ogonek - Aacute - Agrave - Acircumflex - Acircumflexdotbelow - Acircumflexacute - Acircumflexgrave - Acircumflexhookabove - Acircumflextilde - Acaron - Abreve - Abrevedotbelow - Abreveacute - Abrevegrave - Abrevehookabove - Abrevetilde - Atilde - Amacron - Adieresis - Adotaccent - Aring - Ahookabove - Adotbelow - Aogonek - AE - Blinebelow - Cacute - Ccircumflex - Ccaron - Cdotaccent - Ccedilla - Dcaron - Dcircumflexbelow - Dlinebelow - Ddotbelow - Dcroat - Eacute - Egrave - Ecircumflex - Ecircumflexdotbelow - Ecircumflexacute - Ecircumflexgrave - Ecircumflexhookabove - Ecircumflextilde - Ecaron - Ebreve - Etilde - Emacron - Edieresis - Edotaccent - Ehookabove - Edotbelow - Eogonek - Gcircumflex - Gcaron - Gbreve - Gmacron - Gdotaccent - Gcommaaccent - Hcircumflex - Hbrevebelow - Hdotbelow - Hcedilla - Hbar - Iacute - Igrave - Icircumflex - Icaron - Ibreve - Itilde - Imacron - Idieresis - Idotaccent - Ihookabove - Idotbelow - Iogonek - Jcircumflex - Klinebelow - Kcommaaccent - Kdotbelow - Lacute - Lcaron - Lcommaaccent - Lcircumflexbelow - Llinebelow - Lmacrondotbelow - Ldotbelow - L.dot - Lslash - Macute - Mdotaccent - Mdotbelow - Nacute - Ngrave - Ncaron - Ntilde - Ndotaccent - Ncircumflexbelow - Ncommaaccent - Ndotbelow - Nlinebelow - Eng - Oacute - Ohungarumlaut - Ograve - Ocircumflex - Ocircumflexdotbelow - Ocircumflexacute - Ocircumflexgrave - Ocircumflexhookabove - Ocircumflextilde - Ocaron - Obreve - Otilde - Omacron - Odieresis - Odotaccent - Ohookabove - Odotbelow - Oogonek - Oslash - Oslash.bar - OE - Ohorn - Ohornacute - Ohorngrave - Ohorntilde - Ohornhookabove - Ohorndotbelow - Racute - Rcaron - Rdotaccent - Rmacrondotbelow - Rcommaaccent - Rdotbelow - Rlinebelow - Sacute - Scircumflex - Scaron - Scommaaccent - Sdotbelow - Scedilla - uni1E9E - Tcaron - Tcircumflexbelow - Tcommaaccent - Tdotbelow - Tlinebelow - Tcedilla - Tbar - Uacute - Uhungarumlaut - Ugrave - Ucircumflex - Ucaron - Ubreve - Utilde - Umacron - Udieresis - Udieresisacute - Udieresisgrave - Udieresiscaron - Udieresismacron - Uring - Uhookabove - Udotbelow - Uogonek - Uhorn - Uhornacute - Uhorngrave - Uhorntilde - Uhornhookabove - Uhorndotbelow - Vdotbelow - Wacute - Wgrave - Wcircumflex - Wdieresis - Xdieresis - Yacute - Ygrave - Ycircumflex - Ytilde - Ymacron - Ydieresis - Ydotaccent - Yhookabove - Ydotbelow - Zacute - Zcircumflex - Zcaron - Zdotaccent - Zdotbelow - Zlinebelow - Eth - Thorn - Schwa - aacute - agrave - acircumflex - acircumflexdotbelow - acircumflexacute - acircumflexgrave - acircumflexhookabove - acircumflextilde - acaron - abreve - abrevedotbelow - abreveacute - abrevegrave - abrevehookabove - abrevetilde - atilde - amacron - adieresis - adotaccent - aring - ahookabove - adotbelow - aogonek - ae - blinebelow - cacute - ccircumflex - ccaron - cdotaccent - ccedilla - dcaron - dcircumflexbelow - dlinebelow - ddotbelow - dcroat - eacute - egrave - ecircumflex - ecircumflexdotbelow - ecircumflexacute - ecircumflexgrave - ecircumflexhookabove - ecircumflextilde - ecaron - ebreve - etilde - emacron - edieresis - edotaccent - ehookabove - edotbelow - eogonek - gcircumflex - gcaron - gbreve - gmacron - gdotaccent - gcommaaccent - hcircumflex - hbrevebelow - hlinebelow - hdotbelow - hcedilla - hbar - dotlessi - iacute - igrave - icircumflex - icaron - ibreve - itilde - imacron - idieresis - idotaccent - ihookabove - idotbelow - iogonek - dotlessj - jcircumflex - jcaron - klinebelow - kcommaaccent - kdotbelow - lacute - lcaron - lcommaaccent - lcircumflexbelow - llinebelow - lmacrondotbelow - ldotbelow - l.dot - lslash - macute - mdotaccent - mdotbelow - nacute - ngrave - ncaron - ntilde - ndotaccent - ncircumflexbelow - ncommaaccent - ndotbelow - nlinebelow - eng - oacute - ohungarumlaut - ograve - ocircumflex - ocircumflexdotbelow - ocircumflexacute - ocircumflexgrave - ocircumflexhookabove - ocircumflextilde - ocaron - obreve - otilde - omacron - odieresis - odotaccent - ohookabove - odotbelow - oogonek - oslash - oslash.bar - oe - ohorn - ohornacute - ohorngrave - ohorntilde - ohornhookabove - ohorndotbelow - racute - rcaron - rdotaccent - rmacrondotbelow - rcommaaccent - rdotbelow - rlinebelow - sacute - scircumflex - scaron - scommaaccent - sdotbelow - scedilla - germandbls - tcaron - tcircumflexbelow - tcommaaccent - tdotbelow - tlinebelow - tcedilla - tbar - uacute - uhungarumlaut - ugrave - ucircumflex - ucaron - ubreve - utilde - umacron - udieresis - udieresisacute - udieresisgrave - udieresiscaron - udieresismacron - uring - uhookabove - udotbelow - uogonek - uhorn - uhornacute - uhorngrave - uhorntilde - uhornhookabove - uhorndotbelow - vdotbelow - wacute - wgrave - wcircumflex - wdieresis - xdieresis - yacute - ygrave - ycircumflex - ytilde - ymacron - ydieresis - ydotaccent - yhookabove - ydotbelow - zacute - zcircumflex - zcaron - zdotaccent - zdotbelow - zlinebelow - eth - thorn - schwa - space - uni00A0 - zero.num - one.num - two.num - three.num - four.num - five.num - six.num - seven.num - eight.num - nine.num - fraction - fracbar - zero.den - one.den - two.den - three.den - four.den - five.den - six.den - seven.den - eight.den - nine.den - uni2011 - horizontalbar - middotcat - middotcat.cap - acutecmb - hungarumlautcmb - gravecmb - commaaboverightcmb - circumflexcmb - caroncmb - brevecmb - tildecmb - macroncmb - dieresiscmb - dotaccentcmb - ringcmb - commaturnedabovecmb - hookcmb - circumflexbelowcmb - brevebelowcmb - macronbelowcmb - dieresisbelowcmb - dotbelowcmb - uni0326 - cedillacmb - ogonekcmb - dieresisacute - dieresisgrave - dieresiscaron - dieresismacron - breveacute - brevegrave - brevehook - brevetilde - circumflexacute - circumflexgrave - circumflexhook - circumflextilde - acutecmb.cap - hungarumlautcmb.cap - gravecmb.cap - circumflexcmb.cap - caroncmb.cap - brevecmb.cap - tildecmb.cap - macroncmb.cap - dieresiscmb.cap - dotaccentcmb.cap - ringcmb.cap - hookcmb.cap - dieresisacute.cap - dieresisgrave.cap - dieresiscaron.cap - dieresismacron.cap - breveacute.cap - brevegrave.cap - brevehook.cap - brevetilde.cap - circumflexacute.cap - circumflexgrave.cap - circumflexhook.cap - circumflextilde.cap - - type - glyphList - - com.typemytype.robofont.compileSettings.autohint com.typemytype.robofont.compileSettings.checkOutlines @@ -1419,6 +715,372 @@ circumflexgrave.cap circumflexhook.cap circumflextilde.cap + lighthorzbxd + heavyhorzbxd + lightvertbxd + heavyvertbxd + lighttrpldashhorzbxd + heavytrpldashhorzbxd + lighttrpldashvertbxd + heavytrpldashvertbxd + lightquaddashhorzbxd + heavyquaddashhorzbxd + lightquaddashvertbxd + heavyquaddashvertbxd + lightdnrightbxd + dnlightrightheavybxd + dnheavyrightlightbxd + heavydnrightbxd + lightdnleftbxd + dnlightleftheavybxd + dnheavyleftlightbxd + heavydnleftbxd + lightuprightbxd + uplightrightheavybxd + upheavyrightlightbxd + heavyuprightbxd + lightupleftbxd + uplightleftheavybxd + upheavyleftlightbxd + heavyupleftbxd + lightvertrightbxd + vertlightrightheavybxd + upheavyrightdnlightbxd + dnheavyrightuplightbxd + vertheavyrightlightbxd + dnlightrightupheavybxd + uplightrightdnheavybxd + heavyvertrightbxd + lightvertleftbxd + vertlightleftheavybxd + upheavyleftdnlightbxd + dnheavyleftuplightbxd + vertheavyleftlightbxd + dnlightleftupheavybxd + uplightleftdnheavybxd + heavyvertleftbxd + lightdnhorzbxd + leftheavyrightdnlightbxd + rightheavyleftdnlightbxd + dnlighthorzheavybxd + dnheavyhorzlightbxd + rightlightleftdnheavybxd + leftlightrightdnheavybxd + heavydnhorzbxd + lightuphorzbxd + leftheavyrightuplightbxd + rightheavyleftuplightbxd + uplighthorzheavybxd + upheavyhorzlightbxd + rightlightleftupheavybxd + leftlightrightupheavybxd + heavyuphorzbxd + lightverthorzbxd + leftheavyrightvertlightbxd + rightheavyleftvertlightbxd + vertlighthorzheavybxd + upheavydnhorzlightbxd + dnheavyuphorzlightbxd + vertheavyhorzlightbxd + leftupheavyrightdnlightbxd + rightupheavyleftdnlightbxd + leftdnheavyrightuplightbxd + rightdnheavyleftuplightbxd + dnlightuphorzheavybxd + uplightdnhorzheavybxd + rightlightleftvertheavybxd + leftlightrightvertheavybxd + heavyverthorzbxd + lightdbldashhorzbxd + heavydbldashhorzbxd + lightdbldashvertbxd + heavydbldashvertbxd + dblhorzbxd + dblvertbxd + dnsngrightdblbxd + dndblrightsngbxd + dbldnrightbxd + dnsngleftdblbxd + dndblleftsngbxd + dbldnleftbxd + upsngrightdblbxd + updblrightsngbxd + dbluprightbxd + upsngleftdblbxd + updblleftsngbxd + dblupleftbxd + vertsngrightdblbxd + vertdblrightsngbxd + dblvertrightbxd + vertsngleftdblbxd + vertdblleftsngbxd + dblvertleftbxd + dnsnghorzdblbxd + dndblhorzsngbxd + dbldnhorzbxd + upsnghorzdblbxd + updblhorzsngbxd + dbluphorzbxd + vertsnghorzdblbxd + vertdblhorzsngbxd + dblverthorzbxd + lightarcdnrightbxd + lightarcdnleftbxd + lightarcupleftbxd + lightarcuprightbxd + lightdiaguprightdnleftbxd + lightdiagupleftdnrightbxd + lightdiagcrossbxd + lightleftbxd + lightupbxd + lightrightbxd + lightdnbxd + heavyleftbxd + heavyupbxd + heavyrightbxd + heavydnbxd + lightleftheavyrightbxd + lightupheavydnbxd + heavyleftlightrightbxd + heavyuplightdnbxd + uphalfblock + dneighthblock + dnquarterblock + dnthreeeighthsblock + dnhalfblock + dnfiveeighthsblock + dnthreequartersblock + dnseveneighthsblock + fullblock + leftseveneighthsblock + leftthreequartersblock + leftfiveeighthsblock + lefthalfblock + leftthreeeighthsblock + leftquarterblock + lefteighthblock + righthalfblock + lightshade + mediumshade + darkshade + upeighthblock + righteighthblock + dnleftquadrant + dnrightquadrant + upleftquadrant + upleftdnleftdnrightquadrant + upleftdnrightquadrant + upleftuprightdnleftquadrant + upleftuprightdnrightquadrant + uprightquadrant + uprightdnleftquadrant + uprightdnleftdnrightquadrant + ligspacer + period_equal.liga + period_period_equal.liga + period_hyphen.liga + colon_equal.liga + equal_colon_equal.middle + equal_exclam_equal.middle + equal_equal.liga + exclam_equal.liga + equal_equal_equal.liga + exclam_equal_equal.liga + less_hyphen_less.liga + less_less_hyphen.liga + less_hyphen.liga + less_hyphen_greater.liga + hyphen_greater.liga + hyphen_greater_greater.liga + greater_hyphen_greater.liga + less_equal_less.liga + less_less_equal.liga + less_equal_greater.liga + equal_greater.liga + less_equal.liga + equal_greater_greater.liga + greater_equal_greater.liga + greater_equal.liga + greater_greater_equal.liga + greater_greater_hyphen.liga + greater_hyphen.liga + less_asciitilde_greater.liga + hyphen_less.liga + hyphen_less_less.liga + equal_less.liga + equal_less_less.liga + less_asciitilde_asciitilde.liga + less_asciitilde.liga + asciitilde_asciitilde.liga + asciitilde_greater.liga + asciitilde_asciitilde_greater + slash_equal.liga + hyphen_bar.liga + bar_hyphen.liga + bar_equal.liga + hyphen_bar_bar.liga + bar_bar_hyphen.liga + equal_bar_bar.liga + bar_bar_equal.liga + equal_bar.liga + equal.start + equal.middle + equal.end + hyphen.start + hyphen.middle + hyphen.end + underscore.start + underscore.middle + underscore.end + numbersign.start + numbersign.middle + numbersign.end + less_less_less.liga + less_less.liga + less_equal + less_greater.liga + greater_equal + greater_greater.liga + greater_greater_greater.liga + braceleft_bar.liga + bracketleft_bar.liga + less_colon.liga + colon_less.liga + uni2713 + greater_colon.liga + colon_greater.liga + bar_braceright.liga + bar_bracketright.liga + less_bar_bar_bar.liga + less_bar_bar.liga + less_bar.liga + less_bar_greater.liga + bar_greater.liga + bar_bar_greater.liga + bar_bar_bar_greater.liga + less_dollar.liga + less_dollar_greater.liga + dollar_greater.liga + less_plus.liga + less_plus_greater.liga + plus_greater.liga + less_asterisk.liga + less_asterisk_greater.liga + asterisk_greater.liga + slash_asterisk.liga + asterisk_slash.liga + slash_slash_slash.liga + slash_slash.liga + less_slash.liga + less_exclam_hyphen_hyphen.liga + less_slash_greater.liga + slash_greater.liga + semicolon_semicolon.liga + colon_colon.liga + colon_colon_colon.liga + period_period.liga + period_period_period.liga + period_period_less.liga + exclam_exclam.liga + question_question.liga + percent_percent.liga + ampersand_ampersand.liga + bar_bar.liga + question_period.liga + question_colon.liga + plus_plus.liga + plus_plus_plus.liga + hyphen_hyphen.liga + hyphen_hyphen_hyphen.liga + asterisk_asterisk.liga + asterisk_asterisk_asterisk.liga + equal_asciitilde.liga + exclam_asciitilde.liga + asciitilde_hyphen.liga + w_w_w.liga + hyphen_asciitilde.liga + asciitilde_at.liga + asciicircum_equal.liga + question_equal.liga + numbersign_exclam.liga + numbersign_equal.liga + numbersign_colon.liga + numbersign_braceleft.liga + numbersign_bracketleft.liga + bracketright_numbersign.liga + numbersign_parenleft.liga + numbersign_question.liga + numbersign_underscore.liga + numbersign_underscore_parenleft + backslash_slash.liga + bar_bar_bar.liga + colon_colon_equal.liga + exclam_exclam_period.liga + period_question.liga + slash_backslash.liga + uniE0A0 + uniE0A1 + uniE0A2 + uniE0B0 + uniE0B1 + uniE0B2 + uniE0B3 + uni2610 + uni2611 + uni2612 + less_dollar.ligabar + less_dollar_greater.ligabar + dollar_greater.ligabar + underscore_bar_underscore.m + hyphen_bar_hyphen.middle + equal_bar_equal.middle + hyphen_greater_hyphen.middle + hyphen_greater_greater_hyphen.m + equal_slash_slash_equal.middle + equal_slash_equal.middle + hyphen_bar_bar_hyphen.middle + equal_bar_bar_equal.middle + hyphen_less_hyphen.middle + hyphen_less_less_hyphen.middle + equal_greater_equal.middle + equal_less_equal.middle + equal_greater_greater_equal.m + equal_less_less_equal.middle + less_hyphen.start + greater_hyphen.start + bar_hyphen.start + less_equal.start + greater_equal.start + bar_equal.start + slash_equal.start + less_less_hyphen.start + greater_greater_hyphen.start + bar_bar_hyphen.start + less_less_equal.start + greater_greater_equal.start + bar_bar_equal.start + hyphen_less.end + hyphen_greater.end + hyphen_bar.end + equal_less.end + equal_greater.end + equal_bar.end + hyphen_less_less.end + hyphen_greater_greater.end + hyphen_bar_bar.end + equal_less_less.end + equal_greater_greater.end + equal_bar_bar.end + slash_slash_equal.liga + slash_slash_equal.start + equal_slash.liga + equal_slash.end + equal_slash_slash.liga + equal_slash_slash.end + arrowheadleft + arrowheadright + arrowheadleftopen + arrowheadrightopen public.postscriptNames diff --git a/sources/masters/IntelOneMono-Roman.designspace b/sources/masters/IntelOneMono-Roman.designspace index e23eeb16..40b53686 100644 --- a/sources/masters/IntelOneMono-Roman.designspace +++ b/sources/masters/IntelOneMono-Roman.designspace @@ -14,6 +14,9 @@ + + + diff --git a/sources/other files/truetype hinting source/IntelOneMono-Bold-vtt.ttf b/sources/other files/truetype hinting source/IntelOneMono-Bold-vtt.ttf deleted file mode 100644 index 66a49b69..00000000 Binary files a/sources/other files/truetype hinting source/IntelOneMono-Bold-vtt.ttf and /dev/null differ diff --git a/sources/other files/truetype hinting source/IntelOneMono-BoldItalic-vtt.ttf b/sources/other files/truetype hinting source/IntelOneMono-BoldItalic-vtt.ttf deleted file mode 100644 index 815a4f13..00000000 Binary files a/sources/other files/truetype hinting source/IntelOneMono-BoldItalic-vtt.ttf and /dev/null differ diff --git a/sources/other files/truetype hinting source/IntelOneMono-Italic-vtt.ttf b/sources/other files/truetype hinting source/IntelOneMono-Italic-vtt.ttf deleted file mode 100644 index 831f98e0..00000000 Binary files a/sources/other files/truetype hinting source/IntelOneMono-Italic-vtt.ttf and /dev/null differ diff --git a/sources/other files/truetype hinting source/IntelOneMono-Light-vtt.ttf b/sources/other files/truetype hinting source/IntelOneMono-Light-vtt.ttf deleted file mode 100644 index b9c06521..00000000 Binary files a/sources/other files/truetype hinting source/IntelOneMono-Light-vtt.ttf and /dev/null differ diff --git a/sources/other files/truetype hinting source/IntelOneMono-LightItalic-vtt.ttf b/sources/other files/truetype hinting source/IntelOneMono-LightItalic-vtt.ttf deleted file mode 100644 index 15159dff..00000000 Binary files a/sources/other files/truetype hinting source/IntelOneMono-LightItalic-vtt.ttf and /dev/null differ diff --git a/sources/other files/truetype hinting source/IntelOneMono-Medium-vtt.ttf b/sources/other files/truetype hinting source/IntelOneMono-Medium-vtt.ttf deleted file mode 100644 index 600e7147..00000000 Binary files a/sources/other files/truetype hinting source/IntelOneMono-Medium-vtt.ttf and /dev/null differ diff --git a/sources/other files/truetype hinting source/IntelOneMono-MediumItalic-vtt.ttf b/sources/other files/truetype hinting source/IntelOneMono-MediumItalic-vtt.ttf deleted file mode 100644 index 3f5bec9d..00000000 Binary files a/sources/other files/truetype hinting source/IntelOneMono-MediumItalic-vtt.ttf and /dev/null differ diff --git a/sources/other files/truetype hinting source/IntelOneMono-Regular-vtt.ttf b/sources/other files/truetype hinting source/IntelOneMono-Regular-vtt.ttf deleted file mode 100644 index bbcca3f2..00000000 Binary files a/sources/other files/truetype hinting source/IntelOneMono-Regular-vtt.ttf and /dev/null differ